From owner-freebsd-bugs@freebsd.org Sun Oct 23 03:48:33 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8E08DC13A8F for ; Sun, 23 Oct 2016 03:48:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 63A06145 for ; Sun, 23 Oct 2016 03:48:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9N3mXZZ032013 for ; Sun, 23 Oct 2016 03:48:33 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213714] getcwd(3) returns EACCES on ZFS when normalization is not none and any parent dir does not have read permission Date: Sun, 23 Oct 2016 03:48: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-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: cynix@me.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2016 03:48:33 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213714 Bug ID: 213714 Summary: getcwd(3) returns EACCES on ZFS when normalization is not none and any parent dir does not have read permission Product: Base System Version: 11.0-STABLE Hardware: amd64 OS: Any Status: New Severity: Affects Many People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: cynix@me.com CC: freebsd-amd64@FreeBSD.org CC: freebsd-amd64@FreeBSD.org On 11.0-RELEASE-p1, getcwd(3) returns EACCES under the following conditions: * Current directory is under a ZFS filesystem (seems to also affect other filesystems mounted under ZFS root). * The ZFS dataset's "normalization" property is not "none" (can be any of formC/formD/formKC/formKD). * Any parent directory in the path does not have read permission for the us= er. Whereas on 10.3 (I have tested 10.3-RELEASE-p5 and earlier) it would succeed and populate the correct full path. For example: # zfs create -o normalization=3DformD z/test1 # mkdir -m711 /test1/foo # mkdir /test1/foo/bar # chown nobody /test1/foo/bar # cd /test1/foo/bar # su -m nobody % /bin/pwd pwd: .: Permission denied The problem does not occur if normoalization is none: # zfs create -o normalization=3Dnone z/test2 # mkdir -m711 /test2/foo # mkdir /test2/foo/bar # chown nobody /test2/foo/bar # cd /test2/foo/bar # su -m nobody % /bin/pwd /test2/foo/bar It seems that zfs_acl_next_ace() for the parent dir returns an access_mask = of 0x1200af when normalization is none, and 0x1200a8 otherwise, all else being equal. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Oct 23 07:50:09 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 31607C1E135 for ; Sun, 23 Oct 2016 07:50:09 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 208DB7B1 for ; Sun, 23 Oct 2016 07:50:09 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9N7o8Md060125 for ; Sun, 23 Oct 2016 07:50:09 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213714] getcwd(3) returns EACCES on ZFS when normalization is not none and any parent dir does not have read permission Date: Sun, 23 Oct 2016 07:50: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-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: avg@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2016 07:50:09 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213714 --- Comment #1 from Andriy Gapon --- Please try a patch from here: https://svnweb.freebsd.org/changeset/base/306801 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Oct 23 09:27:15 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EE014C1E77B for ; Sun, 23 Oct 2016 09:27:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DD317C7C for ; Sun, 23 Oct 2016 09:27:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9N9RFNs048098 for ; Sun, 23 Oct 2016 09:27:15 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213719] [patch] make delete-old and WITHOUT_FINGER=true doesn't remove finger-related files Date: Sun, 23 Oct 2016 09:27: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-STABLE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: philippe.michel7@sfr.fr X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status keywords bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2016 09:27:16 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213719 Bug ID: 213719 Summary: [patch] make delete-old and WITHOUT_FINGER=3Dtrue doesn't remove finger-related files Product: Base System Version: 11.0-STABLE Hardware: Any OS: Any Status: New Keywords: patch Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: philippe.michel7@sfr.fr Keywords: patch Created attachment 176073 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D176073&action= =3Dedit Possible patch If WITHOUT_FINGER is set to true in /etc/src.conf, "make delete-old" doesn't remove the files that may remain from when this option was not used. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Oct 23 09:44:01 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 19F6DC1EA08 for ; Sun, 23 Oct 2016 09:44:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 090F462D for ; Sun, 23 Oct 2016 09:44:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9N9i0Hi087982 for ; Sun, 23 Oct 2016 09:44:00 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213720] [patch] make delete-old and WITHOUT_BOOTPD=true doesn't remove bootpd-related files Date: Sun, 23 Oct 2016 09:44: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: 11.0-STABLE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: philippe.michel7@sfr.fr X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status keywords bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2016 09:44:01 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213720 Bug ID: 213720 Summary: [patch] make delete-old and WITHOUT_BOOTPD=3Dtrue doesn't remove bootpd-related files Product: Base System Version: 11.0-STABLE Hardware: Any OS: Any Status: New Keywords: patch Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: philippe.michel7@sfr.fr Keywords: patch Created attachment 176074 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D176074&action= =3Dedit Possible patch If WITHOUT_BOOTPD is set to true in /etc/src.conf, "make delete-old" doesn't remove the files that may remain from when this option was not used. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Oct 23 09:54:45 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3AE64C1EBE8 for ; Sun, 23 Oct 2016 09:54:45 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 28C92A8E for ; Sun, 23 Oct 2016 09:54:45 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9N9sjCd010569 for ; Sun, 23 Oct 2016 09:54:45 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213721] [patch] make delete-old and WITHOUT_BOOTPARAMD=true doesn't remove bootparamd-related files Date: Sun, 23 Oct 2016 09:54:45 +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-STABLE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: philippe.michel7@sfr.fr X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status keywords bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2016 09:54:45 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213721 Bug ID: 213721 Summary: [patch] make delete-old and WITHOUT_BOOTPARAMD=3Dtrue doesn't remove bootparamd-related files Product: Base System Version: 11.0-STABLE Hardware: Any OS: Any Status: New Keywords: patch Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: philippe.michel7@sfr.fr Keywords: patch Created attachment 176075 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D176075&action= =3Dedit Possible patch If WITHOUT_BOOTPARAMD is set to true in /etc/src.conf, "make delete-old" doesn't remove the files that may remain from when this option was not used. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Oct 23 10:00:12 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DE16FC1ECBD for ; Sun, 23 Oct 2016 10:00:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CD50AB5D for ; Sun, 23 Oct 2016 10:00:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9NA0CJa021366 for ; Sun, 23 Oct 2016 10:00:12 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213722] [patch] make delete-old and WITHOUT_RBOOTD=true doesn't remove rbootd-related files Date: Sun, 23 Oct 2016 10:00:12 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-STABLE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: philippe.michel7@sfr.fr X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status keywords bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2016 10:00:13 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213722 Bug ID: 213722 Summary: [patch] make delete-old and WITHOUT_RBOOTD=3Dtrue doesn't remove rbootd-related files Product: Base System Version: 11.0-STABLE Hardware: Any OS: Any Status: New Keywords: patch Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: philippe.michel7@sfr.fr Keywords: patch Created attachment 176076 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D176076&action= =3Dedit Possible patch If WITHOUT_RBOOTD is set to true in /etc/src.conf, "make delete-old" doesn't remove the files that may remain from when this option was not used. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Oct 23 10:27:59 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4861BC1B32C for ; Sun, 23 Oct 2016 10:27:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 37A4E9DF for ; Sun, 23 Oct 2016 10:27:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9NARxo3019492 for ; Sun, 23 Oct 2016 10:27:59 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213723] [patch] OptionalObsoleteFiles.inc : missing files in the ".if ${MK_AUDIT} == no" section Date: Sun, 23 Oct 2016 10:27:59 +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-STABLE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: philippe.michel7@sfr.fr X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status keywords bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2016 10:27:59 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213723 Bug ID: 213723 Summary: [patch] OptionalObsoleteFiles.inc : missing files in the ".if ${MK_AUDIT} =3D=3D no" section Product: Base System Version: 11.0-STABLE Hardware: Any OS: Any Status: New Keywords: patch Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: philippe.michel7@sfr.fr Keywords: patch Created attachment 176077 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D176077&action= =3Dedit Possible patch auditdistd-related files are missing from OptionalObsoleteFiles.inc --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Oct 23 10:53:29 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 32ECEC1B974 for ; Sun, 23 Oct 2016 10:53:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 223913B5 for ; Sun, 23 Oct 2016 10:53:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9NArT3C077385 for ; Sun, 23 Oct 2016 10:53:29 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213724] [patch] make delete-old and WITHOUT_TIMED=true doesn't remove timed-related files Date: Sun, 23 Oct 2016 10:53:29 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-STABLE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: philippe.michel7@sfr.fr X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status keywords bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2016 10:53:29 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213724 Bug ID: 213724 Summary: [patch] make delete-old and WITHOUT_TIMED=3Dtrue doesn't remove timed-related files Product: Base System Version: 11.0-STABLE Hardware: Any OS: Any Status: New Keywords: patch Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: philippe.michel7@sfr.fr Keywords: patch Created attachment 176078 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D176078&action= =3Dedit Possible patch If WITHOUT_TIMED is set to true in /etc/src.conf, "make delete-old" doesn't remove the files that may remain from when this option was not used. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Oct 23 11:23:25 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C8BCCC1E42F for ; Sun, 23 Oct 2016 11:23:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 81B9F7E4 for ; Sun, 23 Oct 2016 11:23:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9NBNO6M078703 for ; Sun, 23 Oct 2016 11:23:25 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 212520] [PATCH] kern/subr_uio.c: fix integer truncation in fueword64() Date: Sun, 23 Oct 2016 11:23:24 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: mfc-stable10? mfc-stable11? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2016 11:23:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212520 --- Comment #1 from commit-hook@freebsd.org --- A commit references this bug: Author: kib Date: Sun Oct 23 11:23:18 UTC 2016 New revision: 307821 URL: https://svnweb.freebsd.org/changeset/base/307821 Log: In the fueword64(9) wrapper for architectures which do not implemented native fueword64(9) still, use proper type for local where fuword64() result is stored. Note that fueword64() is unused in the tree. Submitted by: Chunhui He PR: 212520 MFC after: 1 week Changes: head/sys/kern/subr_uio.c --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Oct 23 12:43:33 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 81637C1D21A for ; Sun, 23 Oct 2016 12:43:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 71061A75 for ; Sun, 23 Oct 2016 12:43:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9NChXZK028970 for ; Sun, 23 Oct 2016 12:43:33 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: =?UTF-8?B?W0J1ZyAyMTE3MTVdIFNvbWUgY29tcHV0ZXJzIGNhbiBub3QgYm9vdCDigJMg?= =?UTF-8?B?bm8gZmlsZSBzeXN0ZW0gZm91bmQgKGUuZy4gJ05vbi1TeXN0ZW0gZGlzayBv?= =?UTF-8?B?ciBkaXNrIGVycm9yIOKApicpIOKAkyB3aGVyZSB0aGUgR1BUIGFuZCBwYXJ0?= =?UTF-8?B?aXRpb25zIGFyZSBjcmVhdGVkIGJ5IGdwYXJ0KDgp?= Date: Sun, 23 Oct 2016 12:43:33 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: grahamperrin@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2016 12:43:33 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D211715 --- Comment #6 from Graham Perrin --- Reproducibility with FreeBSD (without TrueOS) =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D https://github.com/trueos/trueos-core/issues/114#issuecomment-255430869 >> @MAHDTech Can you try one of the FreeBSD images to see=20 >> if you have the same result? >>=20 >> ftp://ftp.freebsd.org/pub/FreeBSD/snapshots/amd64/amd64/ISO-IMAGES/12.0/ https://github.com/trueos/trueos-core/issues/114#issuecomment-255568935 > =E2=80=A6 FreeBSD 12 snapshot, get the same issue (installs fine but won'= t boot) =E2=80=A6 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Oct 23 13:32:14 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9F478C1E36E for ; Sun, 23 Oct 2016 13:32:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8E54D6A5 for ; Sun, 23 Oct 2016 13:32:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9NDWEYM029735 for ; Sun, 23 Oct 2016 13:32:14 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213714] getcwd(3) returns EACCES on ZFS when normalization is not none and any parent dir does not have read permission Date: Sun, 23 Oct 2016 13:32:14 +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-STABLE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-fs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2016 13:32:14 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213714 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-fs@FreeBSD.org Keywords| |patch --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Oct 23 14:08:57 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 901A4C1EAE9 for ; Sun, 23 Oct 2016 14:08:57 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7FD4F9BC for ; Sun, 23 Oct 2016 14:08:57 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9NE8ver037868 for ; Sun, 23 Oct 2016 14:08:57 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: =?UTF-8?B?W0J1ZyAyMTE3MTVdIFNvbWUgY29tcHV0ZXJzIGNhbiBub3QgYm9vdCDigJMg?= =?UTF-8?B?bm8gZmlsZSBzeXN0ZW0gZm91bmQgKGUuZy4gJ05vbi1TeXN0ZW0gZGlzayBv?= =?UTF-8?B?ciBkaXNrIGVycm9yIOKApicpIOKAkyB3aGVyZSB0aGUgR1BUIGFuZCBwYXJ0?= =?UTF-8?B?aXRpb25zIGFyZSBjcmVhdGVkIGJ5IGdwYXJ0KDgp?= Date: Sun, 23 Oct 2016 14:08:57 +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: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: grahamperrin@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2016 14:08:57 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D211715 --- Comment #7 from Graham Perrin --- > Limitations of the workaround > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D >=20 > If GELI encryption is preferred when installing the OS,=20 > then (as above) the computer can not find the file system=20 > that includes the boot loader. The fix to the GPT will=20 > allow the loader to be found, however:=20 >=20 > * with the attempt to load, there's an immediate panic.=20 =E2=80=93 I guess, that is=20 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213491 gpt{,zfs}boot after r305353 crash in GELIBoot --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Oct 23 14:12:08 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 77822C1EC55 for ; Sun, 23 Oct 2016 14:12:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 67AE2C36 for ; Sun, 23 Oct 2016 14:12:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9NEC8pX049328 for ; Sun, 23 Oct 2016 14:12:08 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213729] showmount and IPv6 Date: Sun, 23 Oct 2016 14:12:08 +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-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: jasonmader@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc 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.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2016 14:12:08 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213729 Bug ID: 213729 Summary: showmount and IPv6 Product: Base System Version: 11.0-STABLE Hardware: amd64 OS: Any Status: New Severity: Affects Some People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: jasonmader@gmail.com CC: freebsd-amd64@FreeBSD.org CC: freebsd-amd64@FreeBSD.org `showmount -e` doesn=E2=80=99t work when `rpcbind -6`. getsockname(4,{ AF_INET6 [::]:998 },0x7fffffffd554) =3D 0 (0x0) getsockopt(0x4,0xffff,0x1008,0x7fffffffd550,0x7fffffffd554) =3D 0 (0x0) getpid() =3D 22517 (0x57f5) ioctl(4,FIONBIO,0xffffd634) =3D 0 (0x0) kqueue() =3D 5 (0x5) sendto(4,"X\b\M-a\M-k\0\0\0\0\0\0\0\^B\0"...,76,0x0,{ AF_INET6 [::1]:111 },0x1c) =3D 76 (0x4c) kevent(5,{ 4,EVFILT_READ,EV_ADD,0x0,0x0,0x0 },1,{ },1,{ 15.000000000 }) =3D= 0 (0x0) sendto(4,"X\b\M-a\M-k\0\0\0\0\0\0\0\^B\0"...,76,0x0,{ AF_INET6 [::1]:111 },0x1c) =3D 76 (0x4c) kevent(5,{ },0,{ },1,{ 29.889481000 }) =3D 0 (0x0) sendto(4,"X\b\M-a\M-k\0\0\0\0\0\0\0\^B\0"...,76,0x0,{ AF_INET6 [::1]:111 },0x1c) =3D 76 (0x4c) kevent(5,{ },0,{ },1,{ 14.768469000 }) =3D 0 (0x0) close(5) =3D 0 (0x0) --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Oct 23 15:31:46 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5FF8BC173DD for ; Sun, 23 Oct 2016 15:31:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 45283890 for ; Sun, 23 Oct 2016 15:31:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9NFVjAT057339 for ; Sun, 23 Oct 2016 15:31:46 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 183618] [panic] Dell PowerEdge R620 -- PERC H710 Mini (mfi) freezes and panics (softdep_deallocate_dependencies) Date: Sun, 23 Oct 2016 15:31:46 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 9.2-STABLE X-Bugzilla-Keywords: crash, needs-qa X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ml@netfence.it X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: mfc-stable9? mfc-stable10? X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2016 15:31:46 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D183618 ml@netfence.it changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ml@netfence.it --- Comment #1 from ml@netfence.it --- Hello. I'm possibly hit by this bug too. My system will panic and reboot every night since I upgraded to 10.3; occasionally it will just hang without rebooting and require a hardware pow= er cycle. It never had this problem with 9.x. This box features nothing different from several others which are working perfectly; the only "peculiar" thing is the (Intel branded) RAID controller: #pciconf -lv ... mfi0@pci0:1:0:0: class=3D0x010400 card=3D0x92618086 chip=3D0x0079100= 0 rev=3D0x05 hdr=3D0x00 vendor =3D 'LSI Logic / Symbios Logic' device =3D 'MegaRAID SAS 2108 [Liberator]' class =3D mass storage subclass =3D RAID # mfiutil show adapter mfi0 Adapter: Product Name: Intel (R) RAID Controller RS2BL080 Serial Number: SV35012439 Firmware: 12.14.0-0185 RAID Levels: JBOD, RAID0, RAID1, RAID5, RAID6, RAID10, RAID50 Battery Backup: not present NVRAM: 32K Onboard Memory: 512M Minimum Stripe: 8K Maximum Stripe: 1M In constrast to the first bug report, I don't see any hardware error, no "g_vfs_done" line in the logs or whatever; the controller reports everythin= g is fine: # mfiutil show volumes mfi0 Volumes: Id Size Level Stripe State Cache Name mfid0 ( 835G) RAID-5 256K OPTIMAL Enabled=20 Still the backtrace on panic is the same: panic: softdep_deallocate_dependencies: dangling deps cpuid =3D 0 KDB: stack backtrace: #0 0xffffffff804ee170 at kdb_backtrace+0x60 #1 0xffffffff804b4576 at vpanic+0x126 #2 0xffffffff804b4443 at panic+0x43 #3 0xffffffff8068fd2a at softdep_deallocate_dependencies+0x6a #4 0xffffffff805394b5 at brelse+0x145 #5 0xffffffff8053793c at bufwrite+0x3c #6 0xffffffff806ae20f at ffs_write+0x3df #7 0xffffffff8076d519 at VOP_WRITE_APV+0x149 #8 0xffffffff806ec7c9 at vnode_pager_generic_putpages+0x2a9 #9 0xffffffff8076f3b7 at VOP_PUTPAGES_APV+0xa7 #10 0xffffffff806ea6f5 at vnode_pager_putpages+0xc5 #11 0xffffffff806e17f8 at vm_pageout_flush+0xc8 #12 0xffffffff806db432 at vm_object_page_collect_flush+0x182 #13 0xffffffff806db1cd at vm_object_page_clean+0x13d #14 0xffffffff806dadbe at vm_object_terminate+0x8e #15 0xffffffff806eac60 at vnode_destroy_vobject+0x90 #16 0xffffffff806b4232 at ufs_reclaim+0x22 #17 0xffffffff8076e5c7 at VOP_RECLAIM_APV+0xa7 I need to solve this ASAP and I'm willing to provide every info which might= be useful to developers. TIA. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Oct 23 17:51:04 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B8C76C1E1EF for ; Sun, 23 Oct 2016 17:51:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A8999F9B for ; Sun, 23 Oct 2016 17:51:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9NHp414022385 for ; Sun, 23 Oct 2016 17:51:04 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213729] showmount doesn't work with IPv6 Date: Sun, 23 Oct 2016 17:51:04 +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-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: short_desc cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2016 17:51:04 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213729 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|showmount and IPv6 |showmount doesn't work with | |IPv6 CC|freebsd-amd64@FreeBSD.org | Assignee|freebsd-bugs@FreeBSD.org |freebsd-net@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Oct 23 17:54:02 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DB6A9C1E4BF for ; Sun, 23 Oct 2016 17:54:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CB236321 for ; Sun, 23 Oct 2016 17:54:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9NHs2Kf033363 for ; Sun, 23 Oct 2016 17:54:02 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: =?UTF-8?B?W0J1ZyAyMTE3MTVdIFNvbWUgY29tcHV0ZXJzIGNhbiBub3QgYm9vdCDigJMg?= =?UTF-8?B?bm8gZmlsZSBzeXN0ZW0gZm91bmQgKGUuZy4gJ05vbi1TeXN0ZW0gZGlzayBv?= =?UTF-8?B?ciBkaXNrIGVycm9yIOKApicpIOKAkyB3aGVyZSB0aGUgR1BUIGFuZCBwYXJ0?= =?UTF-8?B?aXRpb25zIGFyZSBjcmVhdGVkIGJ5IGdwYXJ0KDgp?= Date: Sun, 23 Oct 2016 17:54: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: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: grahamperrin@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2016 17:54:02 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D211715 --- Comment #8 from Graham Perrin --- Comparing a recent installer for TrueOS Desktop with the most recent instal= ler for FreeBSD-CURRENT,=20 FreeBSD-12.0-CURRENT-amd64-20161021-r307747-memstick.img a) installing to a USB flash drive; and then=20 b) attempting to boot a MacBook Pro from that drive.=20 I can not reproduce the problem with installations of FreeBSD. I performed = two installations:=20 * one GPT (UEFI) * one GPT (BIOS + UEFI) * both without forcing 4K. I'll seek reopening of https://github.com/trueos/trueos-core/issues/15 and = then we can probably close this issue in the FreeBSD area. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sun Oct 23 21:00:17 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CD978C1E41A for ; Sun, 23 Oct 2016 21:00:17 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A9F00800 for ; Sun, 23 Oct 2016 21:00:17 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9NL01CA036946 for ; Sun, 23 Oct 2016 21:00:17 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Message-Id: <201610232100.u9NL01CA036946@kenobi.freebsd.org> From: bugzilla-noreply@FreeBSD.org To: freebsd-bugs@FreeBSD.org Subject: Problem reports for freebsd-bugs@FreeBSD.org that need special attention Date: Sun, 23 Oct 2016 21:00:17 +0000 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2016 21:00:17 -0000 To view an individual PR, use: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=(Bug Id). The following is a listing of current problems submitted by FreeBSD users, which need special attention. These represent problem reports covering all versions including experimental development code and obsolete releases. Status | Bug Id | Description ------------+-----------+--------------------------------------------------- In Progress | 196973 | sh(1) broken UTF-8 input In Progress | 207109 | makefs includes a timestamp that prevents reprodu In Progress | 212562 | stucking kyua test (/usr/tests/lib/libutil) on 10 New | 197876 | [devfs] an error in devfs leads to data loss and New | 198797 | [PATCH] Added an option to install BSDstats to bs New | 202290 | /usr/bin/vi conversion error on valid character New | 202362 | ntp: restore refclocks selection (10.2-RELEASE re New | 202740 | vi/ex string substitution problem when there is m New | 204097 | witness_initialize() does not perform bound check New | 204115 | freebsd-update: Add support for better user messa New | 204545 | Adding quirk entry for some (Acer C720P Chromeboo New | 205598 | [patch] sbin/md5.c param -c, convert to lowercase New | 206386 | vendor/libarchive: directory traversal vulnerabil New | 207940 | [patch] sys/boot/efi/boot1 select boot partition New | 208484 | [PATCH] typo in nanobsd script save_cfg New | 209213 | UEFI Loader shows only black screen with Nvidia G New | 210245 | [PATCH] Update etc/ntp.conf to eliminate failure New | 210804 | installerconfig - using ZFS create in custom scri New | 212561 | stucking kyua test (/usr/tests/sys/acl/01) with e Open | 183817 | [patch] [mac] [panic] kernel compiled with option Open | 194925 | [pf] [ifconfig] interface group keywords do not w Open | 204081 | Uninterruptible sleep under 10.2-RELEASE Open | 204121 | numa(4) is broken: "vm_page_alloc: missing page" Open | 206528 | Emulex LPe 16002 FC HBA Not Recognized by oce(4) Open | 206585 | hpt_set_info possible buffer overflow Open | 207248 | [patch] daemon(8): Add option to redirect stdout Open | 211361 | suggested boot partition size is too small, bsdin Open | 211564 | distributeworld (and other distribuction function In Progress | 191348 | [mps] LSI2308 with WD3000FYYZ drives disappears a New | 202316 | Add IANA vxlan port to /etc/services New | 206386 | vendor/libarchive: directory traversal vulnerabil 31 problems total for which you should take action. From owner-freebsd-bugs@freebsd.org Sun Oct 23 21:59:02 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DAD4BC1E464 for ; Sun, 23 Oct 2016 21:59:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BF16C315 for ; Sun, 23 Oct 2016 21:59:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9NLx23i003109 for ; Sun, 23 Oct 2016 21:59:02 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213734] bhyve revision 307779 - atkbd data buffer full - windows guest doesnt receive key strokes Date: Sun, 23 Oct 2016 21:59: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: 11.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: teksimian@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc 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.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2016 21:59:03 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213734 Bug ID: 213734 Summary: bhyve revision 307779 - atkbd data buffer full - windows guest doesnt receive key strokes Product: Base System Version: 11.0-STABLE Hardware: amd64 OS: Any Status: New Severity: Affects Some People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: teksimian@gmail.com CC: freebsd-amd64@FreeBSD.org CC: freebsd-amd64@FreeBSD.org After booting Windows 10 guest, bhyve logs "atkbd data buffer full" to cons= ole and no key strokes are received by the guest. 11.0-Release. Behaviour present in bhyve in base of 11.0-Release, as well as the most rec= ent SVN revision checked out bhyve 307779. only reference found: http://freebsd.1045724.x6.nabble.com/bhyve-graphics-support-td6101646.html behaviour also persistent between Host reboots. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Oct 24 05:08:15 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 50924C1F3F5 for ; Mon, 24 Oct 2016 05:08:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 409CD921 for ; Mon, 24 Oct 2016 05:08:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9O58FOU061055 for ; Mon, 24 Oct 2016 05:08:15 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213736] pf: hardcoded if_output skips ip[6]_output and pfil order Date: Mon, 24 Oct 2016 05:08:15 +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: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: franco@opnsense.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2016 05:08:15 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213736 Bug ID: 213736 Summary: pf: hardcoded if_output skips ip[6]_output and pfil order Product: Base System Version: CURRENT Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: franco@opnsense.org Hi, Up until now pf_route[6] uses code copied from ip_output[6] to push packets= to their destination for the tags route-to, reply-to and dup-to. The packet is consumed on the spot. >From an architectural standpoint of pfil, this undermines its consistency: Packets must either be consumed when they are dropped or when they are dela= yed (dummynet). In case of ipfw, PACKET_TAG_FORWARD is used to store the hext hop for the forward tag and evaluated properly outside the pfil hooks. The same could = be done for pf, but it's not a crucial requirement. Skipping the full ip_output[6] code in favour of a stub has other side effe= cts and fixing it would help align the packet processing consistency. Of prime interest are productive combinations of ipfw+pf that in case of route-to et al simply stop working as pf consumes all its traffic up front. Cheers, Franco --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Oct 24 07:11:56 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5425CC1F15F for ; Mon, 24 Oct 2016 07:11:56 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3BC25C00 for ; Mon, 24 Oct 2016 07:11:56 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9O7Buh5024357 for ; Mon, 24 Oct 2016 07:11:56 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213738] Installation media hangs when booting on HP ProBook 5320m Date: Mon, 24 Oct 2016 07:11:56 +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: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: mattias@webben.nu X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2016 07:11:56 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213738 Bug ID: 213738 Summary: Installation media hangs when booting on HP ProBook 5320m Product: Base System Version: CURRENT Hardware: amd64 OS: Any Status: New Severity: Affects Only Me Priority: --- Component: misc Assignee: freebsd-bugs@FreeBSD.org Reporter: mattias@webben.nu CC: freebsd-amd64@FreeBSD.org CC: freebsd-amd64@FreeBSD.org I tried installing TrueOS on my (spare) laptop. It failed and I registered = the following ticket: https://github.com/trueos/trueos-core/issues/91 It got closed as the problem was not TrueOS specific. We where able to replicate it using FreeBSD-12.0-CURRENT-amd64-20160829-r305028-memstick.img. It was suggested to me I register a bug here. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Oct 24 10:28:49 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C3999C1F036 for ; Mon, 24 Oct 2016 10:28:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A5462821 for ; Mon, 24 Oct 2016 10:28:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9OASmM6059313 for ; Mon, 24 Oct 2016 10:28:49 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213709] Upgrade 10.3->11.0 (something blocks connections for openvpn) Date: Mon, 24 Oct 2016 10:28:48 +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-STABLE X-Bugzilla-Keywords: regression X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: guyyur@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2016 10:28:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213709 guyyur@gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |guyyur@gmail.com --- Comment #1 from guyyur@gmail.com --- Sounds like the same problem as in bug 207831 Check if the vpn network route on the server leads to lo0 instead of tun0. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Oct 24 12:29:30 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 557ABC1E3DF for ; Mon, 24 Oct 2016 12:29:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4530E90A for ; Mon, 24 Oct 2016 12:29:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9OCTU3T003832 for ; Mon, 24 Oct 2016 12:29:30 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 211360] ESC characters are not interpreted by /bin/sh Date: Mon, 24 Oct 2016 12:29:30 +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-BETA1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: david.guyot@europecamions-interactive.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2016 12:29:30 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D211360 --- Comment #4 from David Guyot = --- It seems that this problem affects fish deeper than just with keystrokes: w= hen on a buggy fish CLI, shell variable setting is buggy and partly broken, but, when on a fully functional fish, the problem disappears and shell variable setting works as expected. I don't understand how the keystrokes and the variable problems are related, but they manifestly are. I don't give more details on these variable setting problems as they seem irrelevant, but, if they are relevant, feel free to ask me. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Oct 24 13:31:08 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B9801C1F1F3 for ; Mon, 24 Oct 2016 13:31:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A6E4E6ED for ; Mon, 24 Oct 2016 13:31:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9ODV8nH067631 for ; Mon, 24 Oct 2016 13:31:08 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213742] /etc/crontab $PATH modification Date: Mon, 24 Oct 2016 13:31:08 +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: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: ben.rubson@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2016 13:31:08 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213742 Bug ID: 213742 Summary: /etc/crontab $PATH modification Product: Base System Version: CURRENT Hardware: Any OS: Any Status: New Severity: Affects Many People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: ben.rubson@gmail.com Hello, crontab(5) : Several environment variables are set up automatically by the cron(8) daemo= n.=20 SHELL is set to /bin/sh, PATH is set to /sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin, and LOGNAME and HOME are set from the /etc/passwd line of the crontab's own= er. /etc/crontab : PATH=3D/etc:/bin:/sbin:/usr/bin:/usr/sbin I then think that /etc/crontab should set : PATH=3D/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin (I also think that /etc is no more needed in $PATH since this commit : https://github.com/freebsd/freebsd/commit/77f8fc2dc8a4b898c69e145ecb5c0e72a= ab05968) It would be more coherent, and also more convenient, without being more ris= ky. Thank you very much ! Ben --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Oct 24 13:33:04 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 29E69C1F274 for ; Mon, 24 Oct 2016 13:33:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 19D56A59 for ; Mon, 24 Oct 2016 13:33:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9ODX3Cq075545 for ; Mon, 24 Oct 2016 13:33:03 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213742] /etc/crontab $PATH modification Date: Mon, 24 Oct 2016 13:33:04 +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: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: ben.rubson@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: component Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2016 13:33:04 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213742 Ben RUBSON changed: What |Removed |Added ---------------------------------------------------------------------------- Component|bin |conf --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Oct 24 15:16:36 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 636C8C1F189 for ; Mon, 24 Oct 2016 15:16:36 +0000 (UTC) (envelope-from marsha@b2bdatalistonline.com) Received: from IND01-MA1-obe.outbound.protection.outlook.com (mail-ma1ind01on0045.outbound.protection.outlook.com [104.47.100.45]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (Client CN "mail.protection.outlook.com", Issuer "Microsoft IT SSL SHA2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C995E302 for ; Mon, 24 Oct 2016 15:16:35 +0000 (UTC) (envelope-from marsha@b2bdatalistonline.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=NETORGFT2154151.onmicrosoft.com; s=selector1-b2bdatalistonline-com; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version; bh=J3O+ZhxEdwboGoH9JTFxOyTzGmYe7JtnIGAg+9xoKrg=; b=3sMOQucHqB9KExOefOaLJ1gGv+f1ttd5jh9nhpdb7RauXIFJMmP9zEtyi4Jle6XhfcRdoJBlJWTGMiPOyZogLVhPGNJFQMngHv+lAyi4LhWXMMOGof3xAFtd6Tj+I0SjIXvRv3CgdBzMrLn/tSz1rwNZ5m6wwc5Th+LMk9A8zPA= Received: from MAXPR01MB0476.INDPRD01.PROD.OUTLOOK.COM (10.164.151.139) by MAXPR01MB0474.INDPRD01.PROD.OUTLOOK.COM (10.164.151.137) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P384) id 15.1.669.16; Mon, 24 Oct 2016 15:16:25 +0000 Received: from MAXPR01MB0476.INDPRD01.PROD.OUTLOOK.COM ([10.164.151.139]) by MAXPR01MB0476.INDPRD01.PROD.OUTLOOK.COM ([10.164.151.139]) with mapi id 15.01.0679.015; Mon, 24 Oct 2016 15:16:26 +0000 From: Marsha Jones To: "freebsd-bugs@freebsd.org" Subject: Shoretel customer list Thread-Topic: Shoretel customer list Thread-Index: AdIuCYqx5a+IYF0HT6KPL5coIBrYNQ== Date: Mon, 24 Oct 2016 15:15:53 +0000 Message-ID: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: authentication-results: spf=none (sender IP is ) smtp.mailfrom=marsha@b2bdatalistonline.com; x-originating-ip: [49.207.61.113] x-ms-office365-filtering-correlation-id: e707ca4c-71e8-4a4c-c157-08d3fc20b8f3 x-microsoft-exchange-diagnostics: 1; MAXPR01MB0474; 7:VAaBuiejQ8oVUA2KLiqONXxOtdwMzkTWygK+Ei9JMPxKlaDBSeR242qOsKK77WDj5zt35Wnmwo9WqJdZZWE2R7tnZE+WyJuQDGsGt7LbJExtmyFlhFoCHjWaJaDKiEGk3+sU0MrBU6JZZMQHOwdiGDdQlZjRNeiinffc9Gww+kyFT+TDdD9USgI18alXFIaLZEN0ZHGypYX1+ZaQzV9WQdH3pArukK8QI9xI12+6XVDg6ZMpK9Z2mUQRBIfkc/ntsdUO3iRV4BO0i51f4Ri4hYhZIT9P03Jxge7vDYOigg6POfeK9Ph49QMZWIajfq9BHCu+GQdm3wWVCkOoUYeIH55eVRAeCUhvrALiu/k2JBY= x-microsoft-antispam: UriScan:;BCL:0;PCL:0;RULEID:;SRVR:MAXPR01MB0474; x-microsoft-antispam-prvs: x-exchange-antispam-report-test: UriScan:(21748063052155); x-exchange-antispam-report-cfa-test: BCL:0; PCL:0; RULEID:(6040176)(2401047)(8121501046)(5005006)(3002001)(10201501046)(6042046)(6043046); SRVR:MAXPR01MB0474; BCL:0; PCL:0; RULEID:; SRVR:MAXPR01MB0474; x-forefront-prvs: 0105DAA385 x-forefront-antispam-report: SFV:NSPM; SFS:(10009020)(6009001)(7916002)(189002)(199003)(50986999)(110136003)(54356999)(97736004)(5002640100001)(107886002)(2906002)(229853001)(7696004)(19580395003)(7116003)(5660300001)(2351001)(9476002)(7846002)(5630700001)(9326002)(5640700001)(189998001)(101416001)(790700001)(6116002)(3846002)(8936002)(102836003)(92566002)(81166006)(3480700004)(68736007)(66066001)(10400500002)(87936001)(3660700001)(2501003)(122556002)(7736002)(105586002)(6666003)(81156014)(2900100001)(77096005)(15975445007)(33656002)(450100001)(586003)(19625215002)(16236675004)(8676002)(106356001)(74316002)(19300405004)(9686002)(86362001)(3280700002)(6916009); DIR:OUT; SFP:1101; SCL:1; SRVR:MAXPR01MB0474; H:MAXPR01MB0476.INDPRD01.PROD.OUTLOOK.COM; FPR:; SPF:None; PTR:InfoNoRecords; MX:1; A:1; LANG:en; received-spf: None (protection.outlook.com: b2bdatalistonline.com does not designate permitted sender hosts) spamdiagnosticoutput: 1:99 spamdiagnosticmetadata: NSPM MIME-Version: 1.0 X-OriginatorOrg: b2bdatalistonline.com X-MS-Exchange-CrossTenant-originalarrivaltime: 24 Oct 2016 15:15:53.1668 (UTC) X-MS-Exchange-CrossTenant-fromentityheader: Hosted X-MS-Exchange-CrossTenant-id: ff029dc8-62dc-4825-9130-dd5bd265baf2 X-MS-Exchange-Transport-CrossTenantHeadersStamped: MAXPR01MB0474 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2016 15:16:36 -0000 Hello, I realize that we haven't had any past contact, yet I'm connecting with enl= ighten you concerning our new Nortel Clients' records. We do have different advancements like: VMware Users List, Citrix Users Lis= t, Shoretel Users List, Cisco Users List, Polycom User List VoIP User List.= .. The data fields we give include: First/Last Name, Job Title, Company, Locat= ion, and Primary Industry, SIC Code, Number of Employees, Email Address, In= come, and Web Address. Fill me in as to whether you are searching for contact data on whatever oth= er innovation client bases or IT chiefs (C-, V-, D-, and M-level). Warm respects, Marsha Request Generation To quit, please react with "Forget" in the title. From owner-freebsd-bugs@freebsd.org Mon Oct 24 19:53:17 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E59B0C202E0 for ; Mon, 24 Oct 2016 19:53:17 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C7D06D73 for ; Mon, 24 Oct 2016 19:53:17 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9OJrHAj033266 for ; Mon, 24 Oct 2016 19:53:17 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213751] bfe(4) link state goes down und up when big transfers start over socket to geom volume Date: Mon, 24 Oct 2016 19:53:17 +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-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: 1983-01-06@gmx.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2016 19:53:18 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213751 Bug ID: 213751 Summary: bfe(4) link state goes down und up when big transfers start over socket to geom volume Product: Base System Version: 11.0-STABLE Hardware: i386 OS: Any Status: New Severity: Affects Many People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: 1983-01-06@gmx.net CC: freebsd-i386@FreeBSD.org CC: freebsd-i386@FreeBSD.org My system: =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Copyright (c) 1992-2016 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 11.0-STABLE #1 r307823: Mon Oct 24 09:09:51 CEST 2016 mosipov@bsd1home:/usr/obj/usr/src/sys/BSD1HOME i386 FreeBSD clang version 3.8.0 (tags/RELEASE_380/final 262564) (based on LLVM 3.8.0) VT(vga): resolution 640x480 CPU: Intel(R) Pentium(R) 4 CPU 2.40GHz (2405.51-MHz 686-class CPU) Origin=3D"GenuineIntel" Id=3D0xf27 Family=3D0xf Model=3D0x2 Stepping= =3D7 =20 Features=3D0xbfebfbff Features2=3D0x4400 real memory =3D 2147483648 (2048 MB) avail memory =3D 2076766208 (1980 MB) Event timer "LAPIC" quality 400 ACPI APIC Table: random: unblocking device. ioapic0 irqs 0-23 on motherboard random: entropy device external interface kbd1 at kbdmux0 module_register_init: MOD_LOAD (vesa, 0x8129c9c0, 0) error 19 nexus0 vtvga0: on motherboard cryptosoft0: on motherboard acpi0: on motherboard acpi0: Overriding SCI from IRQ 9 to IRQ 22 acpi0: Power Button (fixed) cpu0: on acpi0 attimer0: port 0x40-0x43 irq 0 on acpi0 Timecounter "i8254" frequency 1193182 Hz quality 0 Event timer "i8254" frequency 1193182 Hz quality 100 atrtc0: port 0x70-0x73 irq 8 on acpi0 Event timer "RTC" frequency 32768 Hz quality 0 Timecounter "ACPI-fast" frequency 3579545 Hz quality 900 acpi_timer0: <24-bit timer at 3.579545MHz> port 0xe408-0xe40b on acpi0 acpi_button0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 agp0: on hostb0 pcib1: at device 1.0 on pci0 pci1: on pcib1 vgapci0: mem 0xde000000-0xdeffffff,0xe0000000-0xefffffff,0xdd000000-0xddffffff irq 16 at device 0.0 on pci1 vgapci0: Boot video device uhci0: port 0xd800-0xd81f irq 1= 6 at device 29.0 on pci0 uhci0: LegSup =3D 0x2f00 usbus0 on uhci0 uhci1: port 0xd400-0xd41f irq 1= 9 at device 29.1 on pci0 uhci1: LegSup =3D 0x2f00 usbus1 on uhci1 uhci2: port 0xd000-0xd01f irq 1= 8 at device 29.2 on pci0 uhci2: LegSup =3D 0x2f00 usbus2 on uhci2 ehci0: mem 0xdc800000-0xdc800= 3ff at device 29.7 on pci0 usbus3: EHCI version 1.0 usbus3 on ehci0 pcib2: at device 30.0 on pci0 pci2: on pcib2 bfe0: mem 0xdc000000-0xdc001fff at device = 5.0 on pci2 miibus0: on bfe0 bmtphy0: PHY 1 on miibus0 bmtphy0: none, 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto bfe0: Ethernet address: 00:0c:6e:17:d3:5c rl0: port 0xb800-0xb8ff mem 0xdb800000-0xdb8000= ff at device 11.0 on pci2 miibus1: on rl0 rlphy0: PHY 0 on miibus1 rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto rl0: Ethernet address: 00:1e:2a:c1:b7:90 atapci0: port 0xb400-0xb407,0xb000-0xb003,0xa800-0xa807,0xa400-0xa403,0xa000-0xa0ff irq 2= 1 at device 13.0 on pci2 ata2: at channel 0 on atapci0 ata3: at channel 1 on atapci0 isab0: at device 31.0 on pci0 isa0: on isab0 atapci1: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xf000-0xf00f irq 18 at device 31.1 on = pci0 ata0: at channel 0 on atapci1 ata1: at channel 1 on atapci1 pmtimer0 on isa0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] fdc0: No FDOUT register! ppc0: parallel port not found. fuse-freebsd: version 0.4.4, FUSE ABI 7.8 Timecounters tick every 1.000 msec nvme cam probe device init usbus0: 12Mbps Full Speed USB v1.0 usbus1: 12Mbps Full Speed USB v1.0 usbus2: 12Mbps Full Speed USB v1.0 usbus3: 480Mbps High Speed USB v2.0 ugen0.1: at usbus0 uhub0: on usbus0 ugen1.1: at usbus1 uhub1: on usbus1 ugen2.1: at usbus2 uhub2: on usbus2 ugen3.1: at usbus3 uhub3: on usbus3 cd0 at ata1 bus 0 scbus3 target 0 lun 0 cd0: <_NEC DVD_RW ND-3500AG 2.1B> Removable CD-ROM SCSI device cd0: 33.300MB/s transfers (UDMA2, ATAPI 12bytes, PIO 65534bytes) cd0: Attempt to query device size failed: NOT READY, Medium not present ada0 at ata2 bus 0 scbus0 target 0 lun 0 ada0: ATA-6 device ada0: Serial Number WD-WCAL82220375 ada0: 100.000MB/s transfers (UDMA5, PIO 8192bytes) ada0: 190782MB (390721968 512 byte sectors) ada1 at ata2 bus 0 scbus0 target 1 lun 0 ada1: ATA-6 device ada1: Serial Number WD-WMAEP3043891 ada1: 100.000MB/s transfers (UDMA5, PIO 8192bytes) ada1: 190782MB (390721968 512 byte sectors) ada2 at ata3 bus 0 scbus1 target 0 lun 0 ada2: ATA-6 device ada2: Serial Number WD-WMAEH2583910 ada2: 100.000MB/s transfers (UDMA5, PIO 8192bytes) ada2: 190782MB (390721968 512 byte sectors) ada3 at ata0 bus 0 scbus2 target 0 lun 0 ada3: ATA-6 device ada3: Serial Number 5GCMFD8T ada3: 100.000MB/s transfers (UDMA5, PIO 8192bytes) ada3: 76319MB (156301488 512 byte sectors) taskqgroup_adjust failed cnt: 1 stride: 1 mp_ncpus: 1 smp_started: 0 Timecounter "TSC-low" frequency 1202752882 Hz quality 800 taskqgroup_adjust failed cnt: 1 stride: 1 mp_ncpus: 1 smp_started: 0 uhub0: 2 ports with 2 removable, self powered uhub1: 2 ports with 2 removable, self powered uhub2: 2 ports with 2 removable, self powered Trying to mount root from ufs:/dev/gpt/system [rw,acls]... uhub3: 6 ports with 6 removable, self powered =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ada0, ada1, ada2 are linked to: # graid3 status Name Status Components raid3/data COMPLETE diskid/DISK-WD-WMAEH2583910 (ACTIVE) diskid/DISK-WD-WMAEP3043891 (ACTIVE) diskid/DISK-WD-WCAL82220375 (ACTIVE) which is mounted: # mount /dev/gpt/system on / (ufs, local, journaled soft-updates, acls) devfs on /dev (devfs, local, multilabel) fdescfs on /dev/fd (fdescfs) procfs on /proc (procfs, local) /dev/raid3/data on /mnt (ufs, local) ifconfig: bfe0: flags=3D8843 metric 0 mtu 1500 options=3D80008 ether 00:0c:6e:17:d3:5c inet 192.168.1.7 netmask 0xffffff00 broadcast 192.168.1.255 nd6 options=3D29 media: Ethernet autoselect (100baseTX ) status: active rl0: flags=3D8843 metric 0 mtu 1500 options=3D2008 ether 00:1e:2a:c1:b7:90 inet 192.168.1.2 netmask 0xffffff00 broadcast 192.168.1.255 nd6 options=3D29 media: Ethernet autoselect (100baseTX ) status: active lo0: flags=3D8049 metric 0 mtu 16384 options=3D600003 inet6 ::1 prefixlen 128 inet6 fe80::1%lo0 prefixlen 64 scopeid 0x3 inet 127.0.0.1 netmask 0xff000000 nd6 options=3D21 groups: lo Writing large files over a socket with SSH, SMB, nc to that mountpoint resu= lts in tremendous breakdowns of transfer speed down to kilobytes per second. SSH becomes unresponsive. dmesg says over and over again: Oct 24 21:24:37 bsd1home kernel: bfe0: link state changed to UP Oct 24 21:24:38 bsd1home kernel: bfe0: link state changed to DOWN Oct 24 21:24:40 bsd1home kernel: bfe0: link state changed to UP Oct 24 21:24:41 bsd1home kernel: bfe0: link state changed to DOWN Oct 24 21:24:43 bsd1home kernel: bfe0: link state changed to UP Oct 24 21:24:44 bsd1home kernel: bfe0: link state changed to DOWN Oct 24 21:24:46 bsd1home kernel: bfe0: link state changed to UP Oct 24 21:24:48 bsd1home kernel: bfe0: link state changed to DOWN Oct 24 21:24:50 bsd1home kernel: bfe0: link state changed to UP Oct 24 21:24:50 bsd1home kernel: bfe0: link state changed to DOWN Oct 24 21:24:52 bsd1home kernel: bfe0: link state changed to UP Oct 24 21:24:52 bsd1home kernel: bfe0: link state changed to DOWN Oct 24 21:24:54 bsd1home kernel: bfe0: link state changed to UP Oct 24 21:24:54 bsd1home kernel: bfe0: link state changed to DOWN Oct 24 21:24:56 bsd1home kernel: bfe0: link state changed to UP Oct 24 21:24:56 bsd1home kernel: bfe0: link state changed to DOWN Oct 24 21:24:58 bsd1home kernel: bfe0: link state changed to UP Oct 24 21:24:58 bsd1home kernel: bfe0: link state changed to DOWN Oct 24 21:25:00 bsd1home kernel: bfe0: link state changed to UP Oct 24 21:25:02 bsd1home dhclient: New IP Address (bfe0): 192.168.1.7 Oct 24 21:25:02 bsd1home dhclient: New Subnet Mask (bfe0): 255.255.255.0 Oct 24 21:25:02 bsd1home dhclient: New Broadcast Address (bfe0): 192.168.1.= 255 Oct 24 21:25:02 bsd1home dhclient: New Routers (bfe0): 192.168.1. The same test was performed with another NIC in that system: rl0 (Realtek 8139). No performance degregation was found. Additionally, 10baseT and half-duplex where tested with some positive resul= ts. Though, dropouts came a bit later, but still unacceptable to use. Similar issues were already reported some years ago: http://www.mail-archive.com/freebsd-net@freebsd.org/msg11038.html http://forums.nas4free.org/viewtopic.php?t=3D3606 It seems to be driver-related. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Oct 24 20:31:39 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 91EA1C20D63 for ; Mon, 24 Oct 2016 20:31:39 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 814B5361 for ; Mon, 24 Oct 2016 20:31:39 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9OKVdA6058631 for ; Mon, 24 Oct 2016 20:31:39 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213734] bhyve revision 307779 - atkbd data buffer full - windows guest doesnt receive key strokes Date: Mon, 24 Oct 2016 20:31:39 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org 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: 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.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2016 20:31:39 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213734 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- CC|freebsd-amd64@FreeBSD.org | Assignee|freebsd-bugs@FreeBSD.org |freebsd-virtualization@Free | |BSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Oct 24 20:38:11 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2414CC1F2CE for ; Mon, 24 Oct 2016 20:38:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 13587EB7 for ; Mon, 24 Oct 2016 20:38:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9OKcA7j068581 for ; Mon, 24 Oct 2016 20:38:10 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213751] bfe(4) link state goes down und up when big transfers start over socket to geom volume Date: Mon, 24 Oct 2016 20:38:11 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2016 20:38:11 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213751 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-net@FreeBSD.org CC|freebsd-i386@FreeBSD.org | --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Oct 24 20:38:43 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 40DA2C1F380 for ; Mon, 24 Oct 2016 20:38:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 30A4AFD8 for ; Mon, 24 Oct 2016 20:38:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9OKchfc069392 for ; Mon, 24 Oct 2016 20:38:43 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213736] pf: hardcoded if_output skips ip[6]_output and pfil order Date: Mon, 24 Oct 2016 20:38: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: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-pf@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2016 20:38:43 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213736 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-pf@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Oct 24 20:43:36 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 596F0C1F84F for ; Mon, 24 Oct 2016 20:43:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 48FE4840 for ; Mon, 24 Oct 2016 20:43:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9OKhaS8083798 for ; Mon, 24 Oct 2016 20:43:36 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213757] [psm] generic psm0 device does not support tapping on synaptics touchpad without enabling full extended support Date: Mon, 24 Oct 2016 20:43:36 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 11.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jakub_lach@mailplus.pl X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2016 20:43:36 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213757 Bug ID: 213757 Summary: [psm] generic psm0 device does not support tapping on synaptics touchpad without enabling full extended support Product: Base System Version: 11.0-STABLE Hardware: amd64 OS: Any Status: New Severity: Affects Only Me Priority: --- Component: misc Assignee: freebsd-bugs@FreeBSD.org Reporter: jakub_lach@mailplus.pl CC: freebsd-amd64@FreeBSD.org CC: freebsd-amd64@FreeBSD.org After the r307576 the generic psm0 touchpad device no longer supports tappi= ng (left click) on synaptics touchpad, tapping only works after the extended synaptics support is fully enabled. (hw.psm.synaptics_support: 1) --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Oct 24 20:53:28 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7C3FFC1FB38 for ; Mon, 24 Oct 2016 20:53:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6C1FBDCA for ; Mon, 24 Oct 2016 20:53:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9OKrSCm005997 for ; Mon, 24 Oct 2016 20:53:28 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 180894] [panic] rm -rf causes kernel panic Date: Mon, 24 Oct 2016 20:53:28 +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: swills@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: freebsd-fs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2016 20:53:28 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D180894 Steve Wills changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-fs@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Oct 24 21:07:50 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5A634C200D8 for ; Mon, 24 Oct 2016 21:07:50 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 49E07CAF for ; Mon, 24 Oct 2016 21:07:50 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9OL7oh2098963 for ; Mon, 24 Oct 2016 21:07:50 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213759] [acpi] Rarely FreeBSD 11-STABLE system halts when shutting down due to ACPI error (20160527/utmutex-345) Date: Mon, 24 Oct 2016 21:07:50 +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-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jakub_lach@mailplus.pl X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2016 21:07:50 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213759 Bug ID: 213759 Summary: [acpi] Rarely FreeBSD 11-STABLE system halts when shutting down due to ACPI error (20160527/utmutex-345) Product: Base System Version: 11.0-STABLE Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: misc Assignee: freebsd-bugs@FreeBSD.org Reporter: jakub_lach@mailplus.pl Very rarely system instead of shutting down, system gets halted due to ACPI errors. It hung there for 2 days. <...> Oct 22 07:41:20 Thinkpad kernel: fbd0 on drmn0 Oct 22 07:41:20 Thinkpad kernel: VT: Replacing driver "vga" with new "fb". Oct 22 07:41:20 Thinkpad kernel: info: [drm] Initialized i915 1.6.0 20080730 for drmn0 on minor 0 Oct 22 09:19:01 Thinkpad devd: notify_clients: send() failed; dropping unresponsive client Oct 22 09:19:02 Thinkpad kernel: , 807. Oct 22 09:19:02 Thinkpad ntpd[591]: dispatch_imsg in main: pipe closed Oct 22 09:19:02 Thinkpad kernel: Oct 22 09:19:02 Thinkpad ntpd[591]: dispatch_imsg in main: pipe closed Oct 22 09:19:02 Thinkpad syslogd: exiting on signal 15 Oct 24 19:18:09 Thinkpad syslogd: kernel boot file is /boot/kernel/kernel Oct 24 19:18:09 Thinkpad kernel: Waiting (max 60 seconds) for system process `vnlru' to stop... done Oct 24 19:18:09 Thinkpad kernel: Waiting (max 60 seconds) for system process `bufdaemon' to stop... done Oct 24 19:18:09 Thinkpad kernel: Waiting (max 60 seconds) for system process `syncer' to stop... Oct 24 19:18:09 Thinkpad kernel: Syncing disks, vnodes remaining... 4 4 1 0= 0 0 done Oct 24 19:18:09 Thinkpad kernel: All buffers synced. Oct 24 19:18:09 Thinkpad kernel: Uptime: 1h38m15s Oct 24 19:18:09 Thinkpad kernel: em0: link state changed to DOWN Oct 24 19:18:09 Thinkpad kernel: ACPI Exception: AE_ERROR, Thread 100001 co= uld not acquire Mutex [0x0] (20160527/utmutex-345) Oct 24 19:18:09 Thinkpad kernel: ACPI Error: Could not acquire AML Interpre= ter mutex (20160527/exutils-104) Oct 24 19:18:09 Thinkpad kernel: ACPI Exception: AE_ERROR, Thread 100001 co= uld not acquire Mutex [0x4] (20160527/utmutex-345) Oct 24 19:18:09 Thinkpad kernel: ACPI Error: Method parse/execution failed [\_SB.PCI0.LPC.EC.BPTS] (Node 0xfffff800042a1740), AE_NO_MEMORY (20160527/psparse-559) Oct 24 19:18:09 Thinkpad kernel: ACPI Error: Method parse/execution failed [\_PTS] (Node 0xfffff800042a7540), AE_NO_MEMORY (20160527/psparse-559) Oct 24 19:18:09 Thinkpad kernel: ACPI Error: Mutex [0x0] is not acquired, cannot release (20160527/utmutex-386) Oct 24 19:18:09 Thinkpad kernel: ACPI Error: Could not release AML Interpre= ter mutex (20160527/exutils-147) Oct 24 19:18:09 Thinkpad kernel: acpi0: AcpiEnterSleepStatePrep failed - AE_NO_MEMORY Oct 24 19:18:09 Thinkpad kernel: Oct 24 19:18:09 Thinkpad kernel: The operating system has halted. Oct 24 19:18:09 Thinkpad kernel: Please press any key to reboot. Oct 24 19:18:09 Thinkpad kernel: Oct 24 19:18:09 Thinkpad kernel: em0: link state changed to UP Oct 24 19:18:09 Thinkpad kernel: Rebooting... Oct 24 19:18:09 Thinkpad kernel: cpu_reset: Stopping other CPUs --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Oct 24 21:08:47 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E63A5C2022F for ; Mon, 24 Oct 2016 21:08:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CF89DEC5 for ; Mon, 24 Oct 2016 21:08:47 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9OL8ldm027757 for ; Mon, 24 Oct 2016 21:08:47 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213759] [acpi] Rarely FreeBSD 11-STABLE system halts when shutting down due to ACPI error (20160527/utmutex-345) (Thinkpad T400) Date: Mon, 24 Oct 2016 21:08:48 +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-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jakub_lach@mailplus.pl X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2016 21:08:48 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213759 jakub_lach@mailplus.pl changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|[acpi] Rarely FreeBSD |[acpi] Rarely FreeBSD |11-STABLE system halts when |11-STABLE system halts when |shutting down due to ACPI |shutting down due to ACPI |error |error |(20160527/utmutex-345) |(20160527/utmutex-345) | |(Thinkpad T400) --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Oct 24 23:30:22 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 77EFFC20612 for ; Mon, 24 Oct 2016 23:30:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4AD6CE81 for ; Mon, 24 Oct 2016 23:30:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9ONUMWs051595 for ; Mon, 24 Oct 2016 23:30:22 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213762] makewhatis (mdocml) does not produce reproducible files for /usr/share/man or /usr/share/openssl/man Date: Mon, 24 Oct 2016 23:30:22 +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-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dereks@lifeofadishwasher.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2016 23:30:22 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213762 Bug ID: 213762 Summary: makewhatis (mdocml) does not produce reproducible files for /usr/share/man or /usr/share/openssl/man Product: Base System Version: 11.0-STABLE Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: dereks@lifeofadishwasher.com Under 11.0-RELEASE when periodic weekly runs makewhatis is ran to rebuild m= an whatis dbs and in turn mandoc.db files are also created. After a fresh ins= tall or updated to 11.0-RELEASE letting 'periodic weekly' or running on makewhat= is on the problematic directories (/usr/share/man and /usr/share/openssl/man) = and running 'freebsd-update fetch' freebsd-update attempt to update the mandoc.= db files. This repeats if you update via 'freebsd-update install' the next ti= me 320.whatis is ran (weekly). root@mandoc:~ # freebsd-update fetch=20 src component not installed, skipped Looking up update.FreeBSD.org mirrors... 4 mirrors found. Fetching metadata signature for 11.0-RELEASE from update5.freebsd.org... do= ne. Fetching metadata index... done. Inspecting system... done. Preparing to download files... done. No updates needed to update system to 11.0-RELEASE-p1. root@mandoc:~ # makewhatis /usr/share/man/ root@mandoc:~ # makewhatis /usr/share/openssl/man/ root@mandoc:~ # freebsd-update fetch src component not installed, skipped Looking up update.FreeBSD.org mirrors... 4 mirrors found. Fetching metadata signature for 11.0-RELEASE from update5.freebsd.org... do= ne. Fetching metadata index... done. Inspecting system... done. Preparing to download files... done. Fetching 1 files... done. The following files will be updated as part of updating to 11.0-RELEASE-p1: /usr/share/man/mandoc.db /usr/share/openssl/man/mandoc.db It appears mdocml is producing different files because of the AUTOINCREMENT fields in the macdoc.db files. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Oct 24 23:44:24 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 66A5BC20868 for ; Mon, 24 Oct 2016 23:44:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 55CF268F for ; Mon, 24 Oct 2016 23:44:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9ONiMiu085154 for ; Mon, 24 Oct 2016 23:44:24 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213759] [acpi] Rarely FreeBSD 11-STABLE system halts when shutting down due to ACPI error (20160527/utmutex-345) (Thinkpad T400) Date: Mon, 24 Oct 2016 23:44:23 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 11.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-acpi@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2016 23:44:24 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213759 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-acpi@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Oct 24 23:45:30 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 25AB9C208DF for ; Mon, 24 Oct 2016 23:45:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 14B2E77F for ; Mon, 24 Oct 2016 23:45:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9ONjTJf087165 for ; Mon, 24 Oct 2016 23:45:29 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213757] [psm] generic psm0 device does not support tapping on synaptics touchpad without enabling full extended support Date: Mon, 24 Oct 2016 23:45:30 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 11.0-STABLE X-Bugzilla-Keywords: regression X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2016 23:45:30 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213757 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |regression CC|freebsd-amd64@FreeBSD.org |gonzo@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Mon Oct 24 23:50:07 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DBD37C209AE for ; Mon, 24 Oct 2016 23:50:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CB1A58A0 for ; Mon, 24 Oct 2016 23:50:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9ONo7L2094866 for ; Mon, 24 Oct 2016 23:50:07 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213757] [psm] generic psm0 device does not support tapping on synaptics touchpad without enabling full extended support Date: Mon, 24 Oct 2016 23:50: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-STABLE X-Bugzilla-Keywords: regression X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: gonzo@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gonzo@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Oct 2016 23:50:07 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213757 Oleksandr Tymoshenko changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |gonzo@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Oct 25 06:33:55 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 45642C2025F for ; Tue, 25 Oct 2016 06:33:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 348282BD for ; Tue, 25 Oct 2016 06:33:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9P6XsUL093663 for ; Tue, 25 Oct 2016 06:33:55 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 202419] Opening files hangs calling openat() while CWD is on a smbfs mount Date: Tue, 25 Oct 2016 06:33:54 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: alexander.klein@physiologie.med.uni-giessen.de X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2016 06:33:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D202419 Alexander Klein changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |alexander.klein@physiologie | |.med.uni-giessen.de --- Comment #1 from Alexander Klein --- This has been a problem for me since early 2015, and it appears quite relia= bly with vi from /usr/bin, too. My SMBFS-Options are: rw,noexec,nosuid,-f=3D0666,-d=3D0777,-u=3Dnobody,-g=3Dnobody and the share is provided by Samba version 3.6.12-1.fc17 with no problems whatsoever when connecting from Linux or Windows. Truss gives me an infinite stream of identical messages like: openat(AT_FDCWD,"=EF=BF=BD.db",O_CLOEXEC,00) =3D 499 (0x1f3) Attaching gdb to the locked process produces the following backtrace: #0 0x2822b0a1 in _openat () from /lib/libc.so.7 #1 0x281d8ac8 in open () from /lib/libc.so.7 #2 0x281d6f34 in _citrus_map_file () from /lib/libc.so.7 #3 0x281d31d0 in _citrus_mapper_set_persistent () from /lib/libc.so.7 #4 0x281d33c5 in _citrus_mapper_set_persistent () from /lib/libc.so.7 #5 0x281a8951 in _citrus_lookup_factory_convert () from /lib/libc.so.7 #6 0x281a65d5 in __bsd_iconv_open () from /lib/libc.so.7 #7 0x281a6543 in __bsd_iconv_open () from /lib/libc.so.7 #8 0x08052826 in conv_enc (sp=3D0x28834a00, option=3D23, enc=3D0x288331c8 = "UTF-8") at /usr/src/usr.bin/vi/../../contrib/nvi/common/conv.c:405 #9 0x080520be in conv_init (orig=3D0x28834400, sp=3D0x28834a00) at /usr/src/usr.bin/vi/../../contrib/nvi/common/conv.c:360 #10 0x0806df71 in screen_init (gp=3D0x28803000, orig=3D0x28834400, spp=3D0x= 28803018) at /usr/src/usr.bin/vi/../../contrib/nvi/common/screen.c:118 #11 0x080a20c9 in v_ecl_init (sp=3D0x28834400) at /usr/src/usr.bin/vi/../../contrib/nvi/vi/v_ex.c:638 #12 0x080a1a32 in v_ecl_log (sp=3D0x28834400, tp=3D0x28862100) at /usr/src/usr.bin/vi/../../contrib/nvi/vi/v_ex.c:587 #13 0x080a17ec in v_ex (sp=3D0x28834400, vp=3D0xbfbfe538) at /usr/src/usr.bin/vi/../../contrib/nvi/vi/v_ex.c:376 #14 0x080b9174 in vi (spp=3D0xbfbfe838) at /usr/src/usr.bin/vi/../../contrib/nvi/vi/vi.c:230 #15 0x08060e23 in editor (gp=3D0x28803000, argc=3D0, argv=3D0xbfbfe954) at /usr/src/usr.bin/vi/../../contrib/nvi/common/main.c:4= 22 #16 0x0804d5e0 in main (argc=3D1, argv=3D0xbfbfe950) at /usr/src/usr.bin/vi/../../contrib/nvi/cl/cl_main.c:119 Digging deeper into the issue, I also linked vi against a temporary libc bu= ilt with debug-information, but gdb threw an error related to the format of the symbol table, so the following information may have to be taken with a grai= n of salt: (gdb) bt #0 0x2822b0a1 in ?? () #1 0x281d8ac8 in ?? () #2 0xffffff9c in ?? () #3 0xbfbfc958 in ?? () #4 0x00100000 in __jemalloc_extent_tree_szad_remove (rbtree=3D0x8, node=3D0x282d2dc0) at /usr/src/lib/libc/jemalloc_extent.c:25 #5 0x281d6f34 in ?? () #6 0xbfbfc958 in ?? () #7 0x00100000 in __jemalloc_extent_tree_szad_remove (rbtree=3D0x282d2b88, node=3D0x284000c8) at /usr/src/lib/libc/jemalloc_extent.c:25 #8 0x281d31d0 in ?? () #9 0xbfbfc950 in ?? () #10 0xbfbfc958 in ?? () #11 0x2829aac0 in ?? () #12 0xbfbfcddc in ?? () #13 0x288a700c in ?? () #14 0x080e3b30 in optarg@@FBSD_1.0 () #15 0x00000000 in ?? () --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Oct 25 06:42:55 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 65D14C20539 for ; Tue, 25 Oct 2016 06:42:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5535C8D4 for ; Tue, 25 Oct 2016 06:42:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9P6gsrh016528 for ; Tue, 25 Oct 2016 06:42:55 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 202419] Opening files hangs calling openat() while CWD is on a smbfs mount Date: Tue, 25 Oct 2016 06:42:54 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: alexander.klein@physiologie.med.uni-giessen.de X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2016 06:42:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D202419 --- Comment #2 from Alexander Klein --- P.s.: This bug persists on 10.3-RELEASE-p7 FreeBSD 10.3-RELEASE-p7 i386, and does it really belong to the "kern" category? --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Oct 25 06:45:05 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6E19DC205D2 for ; Tue, 25 Oct 2016 06:45:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5D97C97A for ; Tue, 25 Oct 2016 06:45:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9P6j434019715 for ; Tue, 25 Oct 2016 06:45:05 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 209368] [PATCH] bsnmpd: snmp_hostres: Only refresh devtree if devd event is a new or removed device Date: Tue, 25 Oct 2016 06:45:04 +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: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: emz@norma.perm.ru X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2016 06:45:05 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D209368 emz@norma.perm.ru changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |emz@norma.perm.ru --- Comment #4 from emz@norma.perm.ru --- Please commit it, bsnmpd isn't fully functional without it (and what is the point of running SNMP daemon without host resourses module ?). I was having problems with bsnmpd (answering to the snmpwalk like once per = 10 requests), but after installing it bsnmpd seems to be working fine. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Oct 25 07:08:35 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D4003C20E3A for ; Tue, 25 Oct 2016 07:08:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A9A33130 for ; Tue, 25 Oct 2016 07:08:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9P78ZFN018690 for ; Tue, 25 Oct 2016 07:08:35 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213764] System gdb produces an error when attaching to files built with -g Date: Tue, 25 Oct 2016 07:08:35 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: gnu X-Bugzilla-Version: 10.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: alexander.klein@physiologie.med.uni-giessen.de X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2016 07:08:35 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213764 Bug ID: 213764 Summary: System gdb produces an error when attaching to files built with -g Product: Base System Version: 10.3-RELEASE Hardware: i386 OS: Any Status: New Severity: Affects Only Me Priority: --- Component: gnu Assignee: freebsd-bugs@FreeBSD.org Reporter: alexander.klein@physiologie.med.uni-giessen.de CC: freebsd-i386@FreeBSD.org CC: freebsd-i386@FreeBSD.org I built vi from /usr/src/usr.bin/vi with CFLAGS=3D-g for debugging purposes. When attaching the gdb included with the system to a vi-process, however, I= get the following error: % gdb GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain condition= s. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-marcel-freebsd". (gdb) attach 6239 Attaching to process 6239 /usr/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/gdb/gdb/solib-svr4.c:14= 44: internal-error: legacy_fetch_link_map_offsets called without legacy link_map support enabled. A problem internal to GDB has been detected, further debugging may prove unreliable. Quit this debugging session? (y or n) n --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Oct 25 14:20:53 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 12BE9C2146D for ; Tue, 25 Oct 2016 14:20:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 029A98A1 for ; Tue, 25 Oct 2016 14:20:53 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9PEKqdv028381 for ; Tue, 25 Oct 2016 14:20:52 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 211360] ESC characters are not interpreted by /bin/sh Date: Tue, 25 Oct 2016 14:20:53 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-BETA1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: david.guyot@europecamions-interactive.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2016 14:20:53 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D211360 --- Comment #5 from David Guyot = --- Forget my last messages, the correct bug ID was #213013; sorry for the nois= e. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Oct 25 14:33:12 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B58A7C21759 for ; Tue, 25 Oct 2016 14:33:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A450BD49 for ; Tue, 25 Oct 2016 14:33:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9PEXCRq058067 for ; Tue, 25 Oct 2016 14:33:12 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213665] [PATCH] make bin/freebsd-version not depend on binutils Date: Tue, 25 Oct 2016 14:33: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: CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: des@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: des@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.isobsolete bug_status cc assigned_to attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2016 14:33:12 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213665 Dag-Erling Sm=C3=83=C2=B8rgrav changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #176011|0 |1 is obsolete| | Status|New |In Progress CC| |des@FreeBSD.org Assignee|freebsd-bugs@FreeBSD.org |des@FreeBSD.org --- Comment #2 from Dag-Erling Sm=C3=83=C2=B8rgrav --- Created attachment 176144 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D176144&action= =3Dedit Proposed patch This patch incorporates Pawel's and adds an option to print the running ker= nel version, unaffected by UNAME_r. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Oct 25 14:53:55 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2F14DC210F4 for ; Tue, 25 Oct 2016 14:53:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1E701EC8 for ; Tue, 25 Oct 2016 14:53:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9PErs2K001162 for ; Tue, 25 Oct 2016 14:53:54 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213709] Upgrade 10.3->11.0 (something blocks connections for openvpn) Date: Tue, 25 Oct 2016 14:53:55 +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-STABLE X-Bugzilla-Keywords: regression X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: arkadiusz.majewski@iptrace.pl X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2016 14:53:55 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213709 --- Comment #2 from IPTRACE --- Yes, that's the same problem. BEFORE upgrade: Internet: Destination Gateway Flags Netif Expire default 10.0.0.2 UGS vtnet0 10.0.0.0/23 link#1 U vtnet0 10.0.0.10 link#1 UHS lo0 ---> 10.10.10.0/24 10.10.10.1 UGS tun0 10.10.10.1 link#4 UHS lo0 10.10.10.2 link#4 UH tun0 10.10.11.0/24 10.0.1.10 UGS vtnet0 127.0.0.1 link#2 UH lo0 AFTER upgrade: Internet: Destination Gateway Flags Netif Expire default 10.0.0.2 UGS vtnet0 10.0.0.0/23 link#1 U vtnet0 10.0.0.10 link#1 UHS lo0 ---> 10.10.10.0/24 10.10.10.1 UGS lo0 10.10.10.1 link#4 UHS lo0 10.10.10.2 link#4 UH tun0 10.10.11.0/24 10.0.1.10 UGS vtnet0 127.0.0.1 link#2 UH lo0 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Oct 25 18:38:24 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 88AAAC21770 for ; Tue, 25 Oct 2016 18:38:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6F2BAD8A for ; Tue, 25 Oct 2016 18:38:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9PIcODe048765 for ; Tue, 25 Oct 2016 18:38:24 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213778] stable/11 -r307797 on BPi-M3 (cortex-a7): truss gets segmentation fault for handling SIGSYS Date: Tue, 25 Oct 2016 18:38:24 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: markmi@dsl-only.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: 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.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2016 18:38:24 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213778 Bug ID: 213778 Summary: stable/11 -r307797 on BPi-M3 (cortex-a7): truss gets segmentation fault for handling SIGSYS Product: Base System Version: 11.0-STABLE Hardware: arm OS: Any Status: New Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: markmi@dsl-only.net In trying to build lang/gcc6 xgcc's cc1 got some SIGSYS examples. In trying= to track things down I ran into truss getting a SIGSEGV when it tries to handle the situation. . . In truss's enter_syscall there is (from a live gdb on truss, after the segmentation fault): 380 t->cs.name =3D sysdecode_syscallname(t->proc->abi->abi, t->cs.number); 381 if (t->cs.name =3D=3D NULL) (gdb)=20 382 fprintf(info->outfile, "-- UNKNOWN %s SYSCALL %d --= \n", 383 t->proc->abi->type, t->cs.number); 384=20=20=20=20=20 385 sc =3D get_syscall(t->cs.name, narg); 386 t->cs.nargs =3D sc->nargs; 387 assert(sc->nargs <=3D nitems(t->cs.s_args)); 388=20=20=20=20=20 389 t->cs.sc =3D sc; (gdb) print *t $2 =3D {entries =3D {le_next =3D 0x0, le_prev =3D 0x20617070}, proc =3D 0x2= 0617060, tid =3D 100150, in_syscall =3D 1, cs =3D {sc =3D 0x0, name =3D 0x0, number =3D 5808= 28064, args =3D 0x2061b0c0, nargs =3D 0,=20 s_args =3D 0x2061b0ec}, before =3D {tv_sec =3D 1477418265, tv_nsec =3D = 492342263}, after =3D {tv_sec =3D 1477418265, tv_nsec =3D 492496630}} (gdb) print sc $3 =3D (struct syscall *) 0x0 So line 386 listed above gets a segmentation fault for sc->nargs when t->cs.name is a NULL pointer: sc ends up NULL. Looking at the two things that the fprintf on lines 382 and 383 would repor= t: (gdb) print t->proc->abi->type $4 =3D 0x10166 "FreeBSD ELF32" (gdb) print t->cs.number $5 =3D 580828064 (gdb) print narg $6 =3D 0 (that last is for context for the get_syscall arguments). FYI: 580828064 =3D 0x229EBBA0 Context: root@bananapi-m3:/usr/ports # uname -apKU FreeBSD bananapi-m3 11.0-STABLE FreeBSD 11.0-STABLE #0 r307797M: Mon Oct 24 00:41:16 PDT 2016=20=20=20=20 markmi@FreeBSDx64:/usr/local/src/crochet/work/obj/arm.armv6/usr/src/sys/ALL= WINNER arm armv6 1100505 1100505 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Tue Oct 25 22:57:21 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E70F4C2240E for ; Tue, 25 Oct 2016 22:57:21 +0000 (UTC) (envelope-from caitlin.wong@infprodata.com) Received: from IND01-MA1-obe.outbound.protection.outlook.com (mail-ma1ind01on0122.outbound.protection.outlook.com [104.47.100.122]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (Client CN "mail.protection.outlook.com", Issuer "Microsoft IT SSL SHA2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 578AF332 for ; Tue, 25 Oct 2016 22:57:20 +0000 (UTC) (envelope-from caitlin.wong@infprodata.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=NETORGFT2403871.onmicrosoft.com; s=selector1-infprodata-com; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version; bh=1vrAaKsK4cvMVm4pc62qRk1FKWQjb6GIXM76eMmBpPE=; b=kExFUJRyYjmzkXCDKBhxAaPn8pUQ3JGOEwm/mElr2ORetpa2Vj/OjYPVQv4MaXIn0CDTez5rRG8Li7xunk5tz1Cm98EMfKRWBg4uJ93s2dx6OwOutBkEtfspw1mceFOB1GK8vHiS3ooF7qD7tS8br6eC7UC0Z/Ccx65vP9O6Uw0= Received: from MA1PR01MB0456.INDPRD01.PROD.OUTLOOK.COM (10.164.121.134) by MA1PR01MB0454.INDPRD01.PROD.OUTLOOK.COM (10.164.121.23) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P384) id 15.1.679.12; Tue, 25 Oct 2016 21:10:52 +0000 Received: from MA1PR01MB0456.INDPRD01.PROD.OUTLOOK.COM ([10.164.121.134]) by MA1PR01MB0456.INDPRD01.PROD.OUTLOOK.COM ([10.164.121.134]) with mapi id 15.01.0679.015; Tue, 25 Oct 2016 21:10:52 +0000 From: Caitlin Wong To: "freebsd-bugs@freebsd.org" Subject: MS Dynamics Leads Thread-Topic: MS Dynamics Leads Thread-Index: AdIvBDUXG45THa26Sa+EjemCBsAytQ== Date: Tue, 25 Oct 2016 21:10:28 +0000 Message-ID: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: authentication-results: spf=none (sender IP is ) smtp.mailfrom=caitlin.wong@infprodata.com; x-originating-ip: [49.207.53.223] x-ms-office365-filtering-correlation-id: 74be5055-3f85-4a4c-8c98-08d3fd1b673b x-microsoft-exchange-diagnostics: 1; MA1PR01MB0454; 7:5gE86ygn+XxBfG6PCaIdBSHC+YrZclVnQf30OKFjrXT2TOsWXl6oQ9Y0aNR1fSr21IdaO+QdDKn/6+HIhUzGfBTt1lhOdDN92yIcnVGo1rTdRKiSz9dwyvjNSs6Bl7MuV37BQEpGDlFK4nZbG41JTktVlPz1/51QZQ8iF2sPkaLvCh5cBnQMsjPe9xdIHBdrSZwfzCwVymR0Jdc0HfPMZlutZUWwQuqz7Ibo+841MENL2YoKpu9VElGTzpZlGvpaj0BIvLuBH3bfY+RKDKmZ4ACviwte5oqq1joEHHWHTwaCSk9HqNEnAplDCL3c+XLYEunZ0+6xoj6zvuUIxw/TuB/pIynyyneyQ1gZTjUahQQ= x-microsoft-antispam: UriScan:;BCL:0;PCL:0;RULEID:;SRVR:MA1PR01MB0454; x-microsoft-antispam-prvs: x-exchange-antispam-report-test: UriScan:(21748063052155); x-exchange-antispam-report-cfa-test: BCL:0; PCL:0; RULEID:(6040176)(2401047)(5005006)(8121501046)(3002001)(10201501046)(6042046)(6043046); SRVR:MA1PR01MB0454; BCL:0; PCL:0; RULEID:; SRVR:MA1PR01MB0454; x-forefront-prvs: 01068D0A20 x-forefront-antispam-report: SFV:NSPM; SFS:(10019020)(6009001)(7916002)(199003)(189002)(9686002)(81166006)(7696004)(586003)(5660300001)(81156014)(50986999)(10400500002)(122556002)(790700001)(110136003)(6916009)(9326002)(6116002)(7116003)(2906002)(5640700001)(106356001)(2900100001)(105586002)(77096005)(54356999)(15975445007)(92566002)(3846002)(102836003)(11100500001)(5630700001)(2351001)(87936001)(101416001)(450100001)(66066001)(2501003)(5002640100001)(19580395003)(189998001)(19625215002)(7846002)(6666003)(107886002)(68736007)(3660700001)(3280700002)(97736004)(229853001)(33656002)(86362001)(8936002)(16236675004)(7736002)(74316002)(3480700004)(8676002)(19300405004)(20850200002)(18550200001)(554374003); DIR:OUT; SFP:1102; SCL:1; SRVR:MA1PR01MB0454; H:MA1PR01MB0456.INDPRD01.PROD.OUTLOOK.COM; FPR:; SPF:None; PTR:InfoNoRecords; A:1; MX:1; LANG:en; received-spf: None (protection.outlook.com: infprodata.com does not designate permitted sender hosts) spamdiagnosticoutput: 1:99 spamdiagnosticmetadata: NSPM MIME-Version: 1.0 X-OriginatorOrg: infprodata.com X-MS-Exchange-CrossTenant-originalarrivaltime: 25 Oct 2016 21:10:28.4116 (UTC) X-MS-Exchange-CrossTenant-fromentityheader: Hosted X-MS-Exchange-CrossTenant-id: 1b464ead-86ee-47e1-a9fc-287c3a2d1f73 X-MS-Exchange-Transport-CrossTenantHeadersStamped: MA1PR01MB0454 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Oct 2016 22:57:22 -0000 Hi, I hope you are doing well. I was reviewing your website, and I noticed that= your company is leading within the software industry. Wanted to know whether you would be interested in contact lists for MS Dyna= mics, MS Dynamics NAV, MS Dynamics AX, MS Dynamics GP, MS Dynamics CRM, Sag= e, Peoplesoft, Oracle and many more. We maintain lists which could help you market your products/services and ga= in new clients. We have excellent offers, and I'm sure we can cut an amazing deal for you. Database last Verification Date: 9/15/2016. Please let me know if you would like to proceed, so that I can provide coun= ts and pricing in my next email. Best Regards, Caitlin Wong ERP Research Specialist If you do not wish to receive any further emails from us, please reply Unsu= bscribe" in the subject line. From owner-freebsd-bugs@freebsd.org Wed Oct 26 11:48:37 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0EC37C218DB for ; Wed, 26 Oct 2016 11:48:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F1ECBB50 for ; Wed, 26 Oct 2016 11:48:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9QBmaHv005512 for ; Wed, 26 Oct 2016 11:48:36 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213803] ixl ethernet driver does not report transceiver details ? Date: Wed, 26 Oct 2016 11:48:36 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: feature, needs-patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: koobs@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to component keywords version bug_status cc product Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2016 11:48:37 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213803 Kubilay Kocak changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-ports-bugs@FreeBSD. |freebsd-bugs@FreeBSD.org |org | Component|Individual Port(s) |kern Keywords| |feature, needs-patch Version|Latest |CURRENT Status|New |Open CC| |freebsd-net@FreeBSD.org Product|Ports & Packages |Base System --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Oct 26 11:58:52 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EAF8DC21B84 for ; Wed, 26 Oct 2016 11:58:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C1CD1FC0 for ; Wed, 26 Oct 2016 11:58:52 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9QBwqNm028435 for ; Wed, 26 Oct 2016 11:58:52 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213804] [carp]: packets got processes on the BACKUP node under certain conditions Date: Wed, 26 Oct 2016 11:58:52 +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.3-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: emz@norma.perm.ru X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2016 11:58:53 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213804 Bug ID: 213804 Summary: [carp]: packets got processes on the BACKUP node under certain conditions Product: Base System Version: 10.3-STABLE Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: emz@norma.perm.ru Consider the following scheme: +-----------------+ iface1 | | iface2 +-------| host A (MASTER) |-------- | | | | +-----------------+ carp1 | +-----------------+ | | | iface2 +-------| host B (BACKUP) |-------- << packet to carp 1 IP iface1 | | +-----------------+ Lets assume both hosts are advertising themselves using rtadvd as ipv6 rout= ers for network attached to the iface2. In this case, they both can receive ipv6 packets undercertain conditions, destined to the CARP address carp1. When a BACKUP node receives such packets, it processes them locally, regardless of= the state of the CARP, as if it was MASTER. I observe this only on the ipv6, because the process of router advertising = in ipv6 is different from ipv4. However, I suppose the same rule applies to the ipv4, but it's not that important, since I cannot imagine the configuration that would reproduce this for ipv4. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Oct 26 12:54:43 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8C10CC2295E for ; Wed, 26 Oct 2016 12:54:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6D323FB8 for ; Wed, 26 Oct 2016 12:54:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9QCshTt087349 for ; Wed, 26 Oct 2016 12:54:43 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213803] ixl ethernet driver does not report transceiver details ? Date: Wed, 26 Oct 2016 12:54: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: CURRENT X-Bugzilla-Keywords: feature, needs-patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: jeffrey.e.pieper@intel.com X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2016 12:54:43 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213803 Jeff Pieper changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jeffrey.e.pieper@intel.com --- Comment #1 from Jeff Pieper --- The next driver release will have this functionality: # ifconfig -v ixl2 ixl2: flags=3D8843 metric 0 mtu 1500 =20=20=20=20=20=20=20 options=3D6407bb ether 00:00:00:00:03:14 inet 190.4.9.30 netmask 0xffff0000 broadcast 190.4.255.255 inet6 fec0::4:930 prefixlen 112 inet6 fe80::200:ff:fe00:314%ixl2 prefixlen 64 scopeid 0x5 nd6 options=3D21 media: Ethernet autoselect (10Gbase-Twinax ) status: active plugged: SFP/SFP+/SFP28 1X Copper Passive (Copper pigtail) # ifconfig -vvv ixl2 ixl2: flags=3D8843 metric 0 mtu 1500 =20=20=20=20=20=20=20 options=3D6407bb ether 00:00:00:00:03:14 inet 190.4.9.30 netmask 0xffff0000 broadcast 190.4.255.255 inet6 fec0::4:930 prefixlen 112 inet6 fe80::200:ff:fe00:314%ixl2 prefixlen 64 scopeid 0x5 nd6 options=3D21 media: Ethernet autoselect (10Gbase-Twinax ) status: active plugged: SFP/SFP+/SFP28 1X Copper Passive (Copper pigtail) vendor: Amphenol PN: 624380003 SN: APF14460034PK7 DATE: 2014-11-14 SFF8472 DUMP (0xA0 0..127 range): 03 04 21 01 00 00 04 41 84 80 D5 00 67 00 00 00 00 00 03 00 41 6D 70 68 65 6E 6F 6C 20 20 20 20 20 20 20 20 00 78 A7 14 36 32 34 33 38 30 30 30 33 20 20 20 20 20 20 20 41 20 20 20 03 00 00 66 00 00 00 00 41 50 46 31 34 34 36 30 30 33 34 50 4B 37 20 20 31 34 31 31 31 34 20 20 00 00 00 EB FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Oct 26 12:57:12 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EFF1AC22A8E for ; Wed, 26 Oct 2016 12:57:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DF98424A for ; Wed, 26 Oct 2016 12:57:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9QCvCrh090640 for ; Wed, 26 Oct 2016 12:57:12 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213803] ixl ethernet driver does not report transceiver details ? Date: Wed, 26 Oct 2016 12:57:13 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: feature, needs-patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: pi@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2016 12:57:13 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213803 --- Comment #2 from Kurt Jaeger --- Very cool! Thanks a lot! --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Oct 26 13:15:32 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 43DDEC2216C for ; Wed, 26 Oct 2016 13:15:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 32C971081 for ; Wed, 26 Oct 2016 13:15:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9QDFVmT072157 for ; Wed, 26 Oct 2016 13:15:32 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213803] net/intel-ixl-kmod: Does not report transceiver details ? Date: Wed, 26 Oct 2016 13:15:31 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: feature, needs-patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: koobs@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-ports-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: product component version assigned_to short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2016 13:15:32 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213803 Kubilay Kocak changed: What |Removed |Added ---------------------------------------------------------------------------- Product|Base System |Ports & Packages Component|kern |Individual Port(s) Version|CURRENT |Latest Assignee|freebsd-bugs@FreeBSD.org |freebsd-ports-bugs@FreeBSD. | |org Summary|ixl ethernet driver does |net/intel-ixl-kmod: Does |not report transceiver |not report transceiver |details ? |details ? --- Comment #3 from Kubilay Kocak --- Revert incorrect classification and clarify Summary according to category/portname hidden^W mentioned in comment 0 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Oct 26 15:39:18 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D34F1C2010F for ; Wed, 26 Oct 2016 15:39:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C1D3E7C for ; Wed, 26 Oct 2016 15:39:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9QFdICs072486 for ; Wed, 26 Oct 2016 15:39:18 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213762] makewhatis (mdocml) does not produce reproducible files for /usr/share/man or /usr/share/openssl/man Date: Wed, 26 Oct 2016 15:39:18 +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-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: emaste@freebsd.org X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: emaste@freebsd.org X-Bugzilla-Flags: mfc-stable9- mfc-stable10- mfc-stable11? X-Bugzilla-Changed-Fields: cc flagtypes.name assigned_to bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2016 15:39:18 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213762 Ed Maste changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |emaste@freebsd.org Flags| |mfc-stable9-, | |mfc-stable10-, | |mfc-stable11? Assignee|freebsd-bugs@FreeBSD.org |emaste@freebsd.org Status|New |In Progress --- Comment #1 from Ed Maste --- This was fixed in r307003 and will be merged to stable/11 in due course. An errata notice for 11.0 is TBD. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Oct 26 17:39:49 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BB6EBC23974 for ; Wed, 26 Oct 2016 17:39:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AB6C73BA for ; Wed, 26 Oct 2016 17:39:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9QHdn0p007171 for ; Wed, 26 Oct 2016 17:39:49 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213814] "systat -ifstat" does not update egress throughput Date: Wed, 26 Oct 2016 17:39:49 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: pete@nomadlogic.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2016 17:39:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213814 Bug ID: 213814 Summary: "systat -ifstat" does not update egress throughput Product: Base System Version: 11.0-STABLE Hardware: amd64 OS: Any Status: New Severity: Affects Some People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: pete@nomadlogic.org CC: freebsd-amd64@FreeBSD.org CC: freebsd-amd64@FreeBSD.org I have only observed this on 11.0-RELEASE on AWS as that is the only platfo= rm that I have access to, but I believe this effects all versions. uname: $ uname -ar FreeBSD redis-prod0.skippy.com 11.0-RELEASE-p1 FreeBSD 11.0-RELEASE-p1 #0 r306420: Thu Sep 29 01:43:23 UTC 2016=20=20=20=20 root@releng2.nyi.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 Problem description: If you invoke systat with the "ifstat" flag egress traffic is not updated f= or non-loopback interfaces in the UI. Ingress updates correctly, and back directions update as expected on lo0. I have verified that I am not seeing this problem on 10.3-RELEASE ec2 instances. Interestingly enough I'm not seeing this issue on 12-CURRENT either. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Oct 26 20:47:02 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EDC39C2219A for ; Wed, 26 Oct 2016 20:47:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D1217CF9 for ; Wed, 26 Oct 2016 20:47:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9QKl2RE031736 for ; Wed, 26 Oct 2016 20:47:02 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213818] bxe driver error QLogic NetXtreme II BCM57840 4x10GbE Date: Wed, 26 Oct 2016 20:47: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.3-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: michal_brat@lbnet.cz X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2016 20:47:03 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213818 Bug ID: 213818 Summary: bxe driver error QLogic NetXtreme II BCM57840 4x10GbE Product: Base System Version: 10.3-STABLE Hardware: amd64 OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: michal_brat@lbnet.cz CC: freebsd-amd64@FreeBSD.org CC: freebsd-amd64@FreeBSD.org Created attachment 176199 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D176199&action= =3Dedit dmesg error with hw.bxe.debug=3D1 Hello, I would like to ask you for advice if you could help me with a mistake in= BXE driver freebsd. Logs enclose. System runs some time and after transferring approximately 1GB of data this error occurs. System configuration: OS: pfsense 2.3.2-p1 (based on FreeBSD 10.3) Server - Supermicro SYS-501S-M Network card - Supermicro AOC-STG-B4S (system detected as QLogic NetXtreme = II 10 GigE) Thank you for your response Michal Brat sysctl -a | grep bxe device bxe hw.bxe.udp_rss: 0 hw.bxe.autogreeen: 0 hw.bxe.mrrs: -1 hw.bxe.max_aggregation_size: 32768 hw.bxe.rx_budget: -1 hw.bxe.hc_tx_ticks: 50 hw.bxe.hc_rx_ticks: 25 hw.bxe.max_rx_bufs: 4080 hw.bxe.queue_count: 4 hw.bxe.interrupt_mode: 2 hw.bxe.debug: 1 dev.bxe.3.queue.3.mbuf_alloc_tpa: 64 dev.bxe.3.queue.3.mbuf_alloc_sge: 1020 dev.bxe.3.queue.3.mbuf_alloc_rx: 4080 dev.bxe.3.queue.3.mbuf_alloc_tx: 0 dev.bxe.3.queue.3.mbuf_rx_sge_mapping_failed: 0 dev.bxe.3.queue.3.mbuf_rx_sge_alloc_failed: 0 dev.bxe.3.queue.3.mbuf_rx_tpa_mapping_failed: 0 dev.bxe.3.queue.3.mbuf_rx_tpa_alloc_failed: 0 dev.bxe.3.queue.3.mbuf_rx_bd_mapping_failed: 0 dev.bxe.3.queue.3.mbuf_rx_bd_alloc_failed: 0 dev.bxe.3.queue.3.mbuf_defrag_failures: 0 dev.bxe.3.queue.3.mbuf_defrag_attempts: 0 dev.bxe.3.queue.3.tx_queue_xoff: 0 dev.bxe.3.queue.3.tx_frames_deferred: 0 dev.bxe.3.queue.3.tx_chain_lost_mbuf: 0 dev.bxe.3.queue.3.tx_window_violation_tso: 0 dev.bxe.3.queue.3.tx_window_violation_std: 0 dev.bxe.3.queue.3.tx_max_drbr_queue_depth: 0 dev.bxe.3.queue.3.tx_dma_mapping_failure: 0 dev.bxe.3.queue.3.tx_hw_max_queue_depth: 0 dev.bxe.3.queue.3.tx_hw_queue_full: 0 dev.bxe.3.queue.3.tx_encap_failures: 0 dev.bxe.3.queue.3.tx_ofld_frames_lso_hdr_splits: 0 dev.bxe.3.queue.3.tx_ofld_frames_lso: 0 dev.bxe.3.queue.3.tx_ofld_frames_csum_udp: 0 dev.bxe.3.queue.3.tx_ofld_frames_csum_tcp: 0 dev.bxe.3.queue.3.tx_ofld_frames_csum_ip: 0 dev.bxe.3.queue.3.tx_soft_errors: 0 dev.bxe.3.queue.3.tx_pkts: 0 dev.bxe.3.queue.3.rx_budget_reached: 0 dev.bxe.3.queue.3.rx_ofld_frames_csum_tcp_udp: 11 dev.bxe.3.queue.3.rx_ofld_frames_csum_ip: 11 dev.bxe.3.queue.3.rx_hw_csum_errors: 0 dev.bxe.3.queue.3.rx_soft_errors: 0 dev.bxe.3.queue.3.rx_jumbo_sge_pkts: 0 dev.bxe.3.queue.3.rx_bxe_service_rxsgl: 0 dev.bxe.3.queue.3.rx_erroneous_jumbo_sge_pkts: 0 dev.bxe.3.queue.3.rx_tpa_pkts: 0 dev.bxe.3.queue.3.rx_pkts: 11 dev.bxe.3.queue.3.rx_calls: 11 dev.bxe.3.queue.3.tpa_bytes: 0 dev.bxe.3.queue.3.tpa_aggregated_frames: 0 dev.bxe.3.queue.3.tpa_aggregations: 0 dev.bxe.3.queue.3.tx_bcast_packets: 0 dev.bxe.3.queue.3.tx_mcast_packets: 0 dev.bxe.3.queue.3.tx_ucast_packets: 0 dev.bxe.3.queue.3.tx_bytes: 0 dev.bxe.3.queue.3.rx_discards: 0 dev.bxe.3.queue.3.rx_bcast_packets: 0 dev.bxe.3.queue.3.rx_mcast_packets: 0 dev.bxe.3.queue.3.rx_ucast_packets: 11 dev.bxe.3.queue.3.rx_bytes: 1234 dev.bxe.3.queue.2.mbuf_alloc_tpa: 64 dev.bxe.3.queue.2.mbuf_alloc_sge: 1020 dev.bxe.3.queue.2.mbuf_alloc_rx: 4080 dev.bxe.3.queue.2.mbuf_alloc_tx: 0 dev.bxe.3.queue.2.mbuf_rx_sge_mapping_failed: 0 dev.bxe.3.queue.2.mbuf_rx_sge_alloc_failed: 0 dev.bxe.3.queue.2.mbuf_rx_tpa_mapping_failed: 0 dev.bxe.3.queue.2.mbuf_rx_tpa_alloc_failed: 0 dev.bxe.3.queue.2.mbuf_rx_bd_mapping_failed: 0 dev.bxe.3.queue.2.mbuf_rx_bd_alloc_failed: 0 dev.bxe.3.queue.2.mbuf_defrag_failures: 0 dev.bxe.3.queue.2.mbuf_defrag_attempts: 0 dev.bxe.3.queue.2.tx_queue_xoff: 0 dev.bxe.3.queue.2.tx_frames_deferred: 0 dev.bxe.3.queue.2.tx_chain_lost_mbuf: 0 dev.bxe.3.queue.2.tx_window_violation_tso: 0 dev.bxe.3.queue.2.tx_window_violation_std: 0 dev.bxe.3.queue.2.tx_max_drbr_queue_depth: 0 dev.bxe.3.queue.2.tx_dma_mapping_failure: 0 dev.bxe.3.queue.2.tx_hw_max_queue_depth: 14 dev.bxe.3.queue.2.tx_hw_queue_full: 0 dev.bxe.3.queue.2.tx_encap_failures: 0 dev.bxe.3.queue.2.tx_ofld_frames_lso_hdr_splits: 0 dev.bxe.3.queue.2.tx_ofld_frames_lso: 0 dev.bxe.3.queue.2.tx_ofld_frames_csum_udp: 0 dev.bxe.3.queue.2.tx_ofld_frames_csum_tcp: 143 dev.bxe.3.queue.2.tx_ofld_frames_csum_ip: 143 dev.bxe.3.queue.2.tx_soft_errors: 0 dev.bxe.3.queue.2.tx_pkts: 143 dev.bxe.3.queue.2.rx_budget_reached: 0 dev.bxe.3.queue.2.rx_ofld_frames_csum_tcp_udp: 5 dev.bxe.3.queue.2.rx_ofld_frames_csum_ip: 5 dev.bxe.3.queue.2.rx_hw_csum_errors: 0 dev.bxe.3.queue.2.rx_soft_errors: 0 dev.bxe.3.queue.2.rx_jumbo_sge_pkts: 0 dev.bxe.3.queue.2.rx_bxe_service_rxsgl: 0 dev.bxe.3.queue.2.rx_erroneous_jumbo_sge_pkts: 0 dev.bxe.3.queue.2.rx_tpa_pkts: 0 dev.bxe.3.queue.2.rx_pkts: 5 dev.bxe.3.queue.2.rx_calls: 6 dev.bxe.3.queue.2.tpa_bytes: 0 dev.bxe.3.queue.2.tpa_aggregated_frames: 0 dev.bxe.3.queue.2.tpa_aggregations: 0 dev.bxe.3.queue.2.tx_bcast_packets: 0 dev.bxe.3.queue.2.tx_mcast_packets: 0 dev.bxe.3.queue.2.tx_ucast_packets: 141 dev.bxe.3.queue.2.tx_bytes: 17559 dev.bxe.3.queue.2.rx_discards: 0 dev.bxe.3.queue.2.rx_bcast_packets: 0 dev.bxe.3.queue.2.rx_mcast_packets: 0 dev.bxe.3.queue.2.rx_ucast_packets: 5 dev.bxe.3.queue.2.rx_bytes: 1036 dev.bxe.3.queue.1.mbuf_alloc_tpa: 64 dev.bxe.3.queue.1.mbuf_alloc_sge: 1020 dev.bxe.3.queue.1.mbuf_alloc_rx: 4080 dev.bxe.3.queue.1.mbuf_alloc_tx: 0 dev.bxe.3.queue.1.mbuf_rx_sge_mapping_failed: 0 dev.bxe.3.queue.1.mbuf_rx_sge_alloc_failed: 0 dev.bxe.3.queue.1.mbuf_rx_tpa_mapping_failed: 0 dev.bxe.3.queue.1.mbuf_rx_tpa_alloc_failed: 0 dev.bxe.3.queue.1.mbuf_rx_bd_mapping_failed: 0 dev.bxe.3.queue.1.mbuf_rx_bd_alloc_failed: 0 dev.bxe.3.queue.1.mbuf_defrag_failures: 0 dev.bxe.3.queue.1.mbuf_defrag_attempts: 0 dev.bxe.3.queue.1.tx_queue_xoff: 0 dev.bxe.3.queue.1.tx_frames_deferred: 0 dev.bxe.3.queue.1.tx_chain_lost_mbuf: 0 dev.bxe.3.queue.1.tx_window_violation_tso: 0 dev.bxe.3.queue.1.tx_window_violation_std: 0 dev.bxe.3.queue.1.tx_max_drbr_queue_depth: 0 dev.bxe.3.queue.1.tx_dma_mapping_failure: 0 dev.bxe.3.queue.1.tx_hw_max_queue_depth: 0 dev.bxe.3.queue.1.tx_hw_queue_full: 0 dev.bxe.3.queue.1.tx_encap_failures: 0 dev.bxe.3.queue.1.tx_ofld_frames_lso_hdr_splits: 0 dev.bxe.3.queue.1.tx_ofld_frames_lso: 0 dev.bxe.3.queue.1.tx_ofld_frames_csum_udp: 0 dev.bxe.3.queue.1.tx_ofld_frames_csum_tcp: 0 dev.bxe.3.queue.1.tx_ofld_frames_csum_ip: 0 dev.bxe.3.queue.1.tx_soft_errors: 0 dev.bxe.3.queue.1.tx_pkts: 0 dev.bxe.3.queue.1.rx_budget_reached: 0 dev.bxe.3.queue.1.rx_ofld_frames_csum_tcp_udp: 12 dev.bxe.3.queue.1.rx_ofld_frames_csum_ip: 617 dev.bxe.3.queue.1.rx_hw_csum_errors: 0 dev.bxe.3.queue.1.rx_soft_errors: 0 dev.bxe.3.queue.1.rx_jumbo_sge_pkts: 0 dev.bxe.3.queue.1.rx_bxe_service_rxsgl: 0 dev.bxe.3.queue.1.rx_erroneous_jumbo_sge_pkts: 0 dev.bxe.3.queue.1.rx_tpa_pkts: 0 dev.bxe.3.queue.1.rx_pkts: 617 dev.bxe.3.queue.1.rx_calls: 618 dev.bxe.3.queue.1.tpa_bytes: 0 dev.bxe.3.queue.1.tpa_aggregated_frames: 0 dev.bxe.3.queue.1.tpa_aggregations: 0 dev.bxe.3.queue.1.tx_bcast_packets: 0 dev.bxe.3.queue.1.tx_mcast_packets: 0 dev.bxe.3.queue.1.tx_ucast_packets: 0 dev.bxe.3.queue.1.tx_bytes: 0 dev.bxe.3.queue.1.rx_discards: 0 dev.bxe.3.queue.1.rx_bcast_packets: 1 dev.bxe.3.queue.1.rx_mcast_packets: 0 dev.bxe.3.queue.1.rx_ucast_packets: 614 dev.bxe.3.queue.1.rx_bytes: 39888 dev.bxe.3.queue.0.mbuf_alloc_tpa: 64 dev.bxe.3.queue.0.mbuf_alloc_sge: 1020 dev.bxe.3.queue.0.mbuf_alloc_rx: 4080 dev.bxe.3.queue.0.mbuf_alloc_tx: 0 dev.bxe.3.queue.0.mbuf_rx_sge_mapping_failed: 0 dev.bxe.3.queue.0.mbuf_rx_sge_alloc_failed: 0 dev.bxe.3.queue.0.mbuf_rx_tpa_mapping_failed: 0 dev.bxe.3.queue.0.mbuf_rx_tpa_alloc_failed: 0 dev.bxe.3.queue.0.mbuf_rx_bd_mapping_failed: 0 dev.bxe.3.queue.0.mbuf_rx_bd_alloc_failed: 0 dev.bxe.3.queue.0.mbuf_defrag_failures: 0 dev.bxe.3.queue.0.mbuf_defrag_attempts: 0 dev.bxe.3.queue.0.tx_queue_xoff: 0 dev.bxe.3.queue.0.tx_frames_deferred: 0 dev.bxe.3.queue.0.tx_chain_lost_mbuf: 0 dev.bxe.3.queue.0.tx_window_violation_tso: 0 dev.bxe.3.queue.0.tx_window_violation_std: 0 dev.bxe.3.queue.0.tx_max_drbr_queue_depth: 0 dev.bxe.3.queue.0.tx_dma_mapping_failure: 0 dev.bxe.3.queue.0.tx_hw_max_queue_depth: 2 dev.bxe.3.queue.0.tx_hw_queue_full: 0 dev.bxe.3.queue.0.tx_encap_failures: 0 dev.bxe.3.queue.0.tx_ofld_frames_lso_hdr_splits: 0 dev.bxe.3.queue.0.tx_ofld_frames_lso: 0 dev.bxe.3.queue.0.tx_ofld_frames_csum_udp: 13 dev.bxe.3.queue.0.tx_ofld_frames_csum_tcp: 1 dev.bxe.3.queue.0.tx_ofld_frames_csum_ip: 619 dev.bxe.3.queue.0.tx_soft_errors: 0 dev.bxe.3.queue.0.tx_pkts: 636 dev.bxe.3.queue.0.rx_budget_reached: 0 dev.bxe.3.queue.0.rx_ofld_frames_csum_tcp_udp: 5 dev.bxe.3.queue.0.rx_ofld_frames_csum_ip: 5 dev.bxe.3.queue.0.rx_hw_csum_errors: 0 dev.bxe.3.queue.0.rx_soft_errors: 0 dev.bxe.3.queue.0.rx_jumbo_sge_pkts: 0 dev.bxe.3.queue.0.rx_bxe_service_rxsgl: 0 dev.bxe.3.queue.0.rx_erroneous_jumbo_sge_pkts: 0 dev.bxe.3.queue.0.rx_tpa_pkts: 0 dev.bxe.3.queue.0.rx_pkts: 31 dev.bxe.3.queue.0.rx_calls: 32 dev.bxe.3.queue.0.tpa_bytes: 0 dev.bxe.3.queue.0.tpa_aggregated_frames: 0 dev.bxe.3.queue.0.tpa_aggregations: 0 dev.bxe.3.queue.0.tx_bcast_packets: 4 dev.bxe.3.queue.0.tx_mcast_packets: 3 dev.bxe.3.queue.0.tx_ucast_packets: 626 dev.bxe.3.queue.0.tx_bytes: 29970 dev.bxe.3.queue.0.rx_discards: 0 dev.bxe.3.queue.0.rx_bcast_packets: 19 dev.bxe.3.queue.0.rx_mcast_packets: 0 dev.bxe.3.queue.0.rx_ucast_packets: 11 dev.bxe.3.queue.0.rx_bytes: 2360 dev.bxe.3.mbuf_alloc_tpa: 256 dev.bxe.3.mbuf_alloc_sge: 4080 dev.bxe.3.mbuf_alloc_rx: 16320 dev.bxe.3.mbuf_alloc_tx: 0 dev.bxe.3.mbuf_rx_sge_mapping_failed: 0 dev.bxe.3.mbuf_rx_sge_alloc_failed: 0 dev.bxe.3.mbuf_rx_tpa_mapping_failed: 0 dev.bxe.3.mbuf_rx_tpa_alloc_failed: 0 dev.bxe.3.mbuf_rx_bd_mapping_failed: 0 dev.bxe.3.mbuf_rx_bd_alloc_failed: 0 dev.bxe.3.mbuf_defrag_failures: 0 dev.bxe.3.mbuf_defrag_attempts: 0 dev.bxe.3.tx_queue_xoff: 0 dev.bxe.3.tx_frames_deferred: 0 dev.bxe.3.tx_chain_lost_mbuf: 0 dev.bxe.3.tx_window_violation_tso: 0 dev.bxe.3.tx_window_violation_std: 0 dev.bxe.3.tx_max_drbr_queue_depth: 0 dev.bxe.3.tx_dma_mapping_failure: 0 dev.bxe.3.tx_hw_max_queue_depth: 16 dev.bxe.3.tx_hw_queue_full: 0 dev.bxe.3.tx_encap_failures: 0 dev.bxe.3.tx_ofld_frames_lso_hdr_splits: 0 dev.bxe.3.tx_ofld_frames_lso: 0 dev.bxe.3.tx_ofld_frames_csum_udp: 13 dev.bxe.3.tx_ofld_frames_csum_tcp: 142 dev.bxe.3.tx_ofld_frames_csum_ip: 760 dev.bxe.3.tx_soft_errors: 0 dev.bxe.3.tx_pkts: 777 dev.bxe.3.rx_budget_reached: 0 dev.bxe.3.rx_ofld_frames_csum_tcp_udp: 33 dev.bxe.3.rx_ofld_frames_csum_ip: 638 dev.bxe.3.rx_hw_csum_errors: 0 dev.bxe.3.rx_soft_errors: 0 dev.bxe.3.rx_jumbo_sge_pkts: 0 dev.bxe.3.rx_bxe_service_rxsgl: 0 dev.bxe.3.rx_erroneous_jumbo_sge_pkts: 0 dev.bxe.3.rx_tpa_pkts: 0 dev.bxe.3.rx_pkts: 664 dev.bxe.3.rx_calls: 667 dev.bxe.3.eee_tx_lpi: 0 dev.bxe.3.tpa_bytes: 0 dev.bxe.3.tpa_aggregated_frames: 0 dev.bxe.3.tpa_aggregations: 0 dev.bxe.3.tx_pause_frames: 0 dev.bxe.3.tx_1523_to_9022_byte_packets: 0 dev.bxe.3.tx_1024_to_1522_byte_packets: 1 dev.bxe.3.tx_512_to_1023_byte_packets: 3 dev.bxe.3.tx_256_to_511_byte_packets: 3 dev.bxe.3.tx_128_to_255_byte_packets: 15 dev.bxe.3.tx_65_to_127_byte_packets: 73 dev.bxe.3.tx_64_byte_packets: 679 dev.bxe.3.tx_total_collisions: 0 dev.bxe.3.tx_late_collisions: 0 dev.bxe.3.tx_excess_collisions: 0 dev.bxe.3.tx_deferred: 0 dev.bxe.3.tx_multi_collisions: 0 dev.bxe.3.tx_single_collisions: 0 dev.bxe.3.tx_carrier_errors: 0 dev.bxe.3.tx_mac_errors: 0 dev.bxe.3.tx_bcast_packets: 4 dev.bxe.3.tx_mcast_packets: 3 dev.bxe.3.tx_ucast_packets: 767 dev.bxe.3.tx_error_bytes: 0 dev.bxe.3.tx_bytes: 47529 dev.bxe.3.rx_constant_pause_events: 0 dev.bxe.3.rx_mac_ctrl_frames: 0 dev.bxe.3.rx_pause_frames: 0 dev.bxe.3.rx_brb_truncate: 0 dev.bxe.3.rx_brb_discard: 0 dev.bxe.3.pfc_frames_sent: 0 dev.bxe.3.pfc_frames_received: 0 dev.bxe.3.rx_mf_tag_discard: 0 dev.bxe.3.rx_filtered_packets: 233 dev.bxe.3.rx_discards: 0 dev.bxe.3.rx_jabbers: 0 dev.bxe.3.rx_fragments: 0 dev.bxe.3.rx_oversize_packets: 0 dev.bxe.3.rx_undersize_packets: 0 dev.bxe.3.rx_align_errors: 0 dev.bxe.3.rx_crc_errors: 0 dev.bxe.3.rx_bcast_packets: 20 dev.bxe.3.rx_mcast_packets: 0 dev.bxe.3.rx_ucast_packets: 641 dev.bxe.3.rx_error_bytes: 0 dev.bxe.3.rx_bytes: 44518 dev.bxe.3.state: 0 dev.bxe.3.rx_budget: 4294967295 dev.bxe.3.grcdump_done: 0 dev.bxe.3.trigger_grcdump: 0 dev.bxe.3.debug: 1 dev.bxe.3.pci_link: ???GT/s x8 dev.bxe.3.mac_addr: 0c:c4:7a:bd:c8:ae dev.bxe.3.mf_vnics: 1 dev.bxe.3.mf_mode: Single dev.bxe.3.fw_version: 7.8.51.0 dev.bxe.3.bc_version: 7.6.55 dev.bxe.3.version: 1.78.79 dev.bxe.3.%parent: pci1 dev.bxe.3.%pnpinfo: vendor=3D0x14e4 device=3D0x16a1 subvendor=3D0x14e4 subdevice=3D0x4000 class=3D0x020000 dev.bxe.3.%location: pci0:1:0:3 dev.bxe.3.%driver: bxe dev.bxe.3.%desc: QLogic NetXtreme II BCM57840 4x10GbE (B1) BXE v:1.78.79 dev.bxe.2.queue.3.mbuf_alloc_tpa: 64 dev.bxe.2.queue.3.mbuf_alloc_sge: 1020 dev.bxe.2.queue.3.mbuf_alloc_rx: 4080 dev.bxe.2.queue.3.mbuf_alloc_tx: 0 dev.bxe.2.queue.3.mbuf_rx_sge_mapping_failed: 0 dev.bxe.2.queue.3.mbuf_rx_sge_alloc_failed: 0 dev.bxe.2.queue.3.mbuf_rx_tpa_mapping_failed: 0 dev.bxe.2.queue.3.mbuf_rx_tpa_alloc_failed: 0 dev.bxe.2.queue.3.mbuf_rx_bd_mapping_failed: 0 dev.bxe.2.queue.3.mbuf_rx_bd_alloc_failed: 0 dev.bxe.2.queue.3.mbuf_defrag_failures: 0 dev.bxe.2.queue.3.mbuf_defrag_attempts: 0 dev.bxe.2.queue.3.tx_queue_xoff: 0 dev.bxe.2.queue.3.tx_frames_deferred: 0 dev.bxe.2.queue.3.tx_chain_lost_mbuf: 0 dev.bxe.2.queue.3.tx_window_violation_tso: 0 dev.bxe.2.queue.3.tx_window_violation_std: 0 dev.bxe.2.queue.3.tx_max_drbr_queue_depth: 0 dev.bxe.2.queue.3.tx_dma_mapping_failure: 0 dev.bxe.2.queue.3.tx_hw_max_queue_depth: 0 dev.bxe.2.queue.3.tx_hw_queue_full: 0 dev.bxe.2.queue.3.tx_encap_failures: 0 dev.bxe.2.queue.3.tx_ofld_frames_lso_hdr_splits: 0 dev.bxe.2.queue.3.tx_ofld_frames_lso: 0 dev.bxe.2.queue.3.tx_ofld_frames_csum_udp: 0 dev.bxe.2.queue.3.tx_ofld_frames_csum_tcp: 0 dev.bxe.2.queue.3.tx_ofld_frames_csum_ip: 0 dev.bxe.2.queue.3.tx_soft_errors: 0 dev.bxe.2.queue.3.tx_pkts: 0 dev.bxe.2.queue.3.rx_budget_reached: 0 dev.bxe.2.queue.3.rx_ofld_frames_csum_tcp_udp: 1 dev.bxe.2.queue.3.rx_ofld_frames_csum_ip: 1 dev.bxe.2.queue.3.rx_hw_csum_errors: 0 dev.bxe.2.queue.3.rx_soft_errors: 0 dev.bxe.2.queue.3.rx_jumbo_sge_pkts: 0 dev.bxe.2.queue.3.rx_bxe_service_rxsgl: 0 dev.bxe.2.queue.3.rx_erroneous_jumbo_sge_pkts: 0 dev.bxe.2.queue.3.rx_tpa_pkts: 0 dev.bxe.2.queue.3.rx_pkts: 1 dev.bxe.2.queue.3.rx_calls: 2 dev.bxe.2.queue.3.tpa_bytes: 0 dev.bxe.2.queue.3.tpa_aggregated_frames: 0 dev.bxe.2.queue.3.tpa_aggregations: 0 dev.bxe.2.queue.3.tx_bcast_packets: 0 dev.bxe.2.queue.3.tx_mcast_packets: 0 dev.bxe.2.queue.3.tx_ucast_packets: 0 dev.bxe.2.queue.3.tx_bytes: 0 dev.bxe.2.queue.3.rx_discards: 0 dev.bxe.2.queue.3.rx_bcast_packets: 1 dev.bxe.2.queue.3.rx_mcast_packets: 0 dev.bxe.2.queue.3.rx_ucast_packets: 0 dev.bxe.2.queue.3.rx_bytes: 262 dev.bxe.2.queue.2.mbuf_alloc_tpa: 64 dev.bxe.2.queue.2.mbuf_alloc_sge: 1020 dev.bxe.2.queue.2.mbuf_alloc_rx: 4080 dev.bxe.2.queue.2.mbuf_alloc_tx: 0 dev.bxe.2.queue.2.mbuf_rx_sge_mapping_failed: 0 dev.bxe.2.queue.2.mbuf_rx_sge_alloc_failed: 0 dev.bxe.2.queue.2.mbuf_rx_tpa_mapping_failed: 0 dev.bxe.2.queue.2.mbuf_rx_tpa_alloc_failed: 0 dev.bxe.2.queue.2.mbuf_rx_bd_mapping_failed: 0 dev.bxe.2.queue.2.mbuf_rx_bd_alloc_failed: 0 dev.bxe.2.queue.2.mbuf_defrag_failures: 0 dev.bxe.2.queue.2.mbuf_defrag_attempts: 0 dev.bxe.2.queue.2.tx_queue_xoff: 0 dev.bxe.2.queue.2.tx_frames_deferred: 0 dev.bxe.2.queue.2.tx_chain_lost_mbuf: 0 dev.bxe.2.queue.2.tx_window_violation_tso: 0 dev.bxe.2.queue.2.tx_window_violation_std: 0 dev.bxe.2.queue.2.tx_max_drbr_queue_depth: 0 dev.bxe.2.queue.2.tx_dma_mapping_failure: 0 dev.bxe.2.queue.2.tx_hw_max_queue_depth: 0 dev.bxe.2.queue.2.tx_hw_queue_full: 0 dev.bxe.2.queue.2.tx_encap_failures: 0 dev.bxe.2.queue.2.tx_ofld_frames_lso_hdr_splits: 0 dev.bxe.2.queue.2.tx_ofld_frames_lso: 0 dev.bxe.2.queue.2.tx_ofld_frames_csum_udp: 0 dev.bxe.2.queue.2.tx_ofld_frames_csum_tcp: 0 dev.bxe.2.queue.2.tx_ofld_frames_csum_ip: 0 dev.bxe.2.queue.2.tx_soft_errors: 0 dev.bxe.2.queue.2.tx_pkts: 0 dev.bxe.2.queue.2.rx_budget_reached: 0 dev.bxe.2.queue.2.rx_ofld_frames_csum_tcp_udp: 137 dev.bxe.2.queue.2.rx_ofld_frames_csum_ip: 137 dev.bxe.2.queue.2.rx_hw_csum_errors: 0 dev.bxe.2.queue.2.rx_soft_errors: 0 dev.bxe.2.queue.2.rx_jumbo_sge_pkts: 0 dev.bxe.2.queue.2.rx_bxe_service_rxsgl: 0 dev.bxe.2.queue.2.rx_erroneous_jumbo_sge_pkts: 0 dev.bxe.2.queue.2.rx_tpa_pkts: 0 dev.bxe.2.queue.2.rx_pkts: 137 dev.bxe.2.queue.2.rx_calls: 135 dev.bxe.2.queue.2.tpa_bytes: 0 dev.bxe.2.queue.2.tpa_aggregated_frames: 0 dev.bxe.2.queue.2.tpa_aggregations: 0 dev.bxe.2.queue.2.tx_bcast_packets: 0 dev.bxe.2.queue.2.tx_mcast_packets: 0 dev.bxe.2.queue.2.tx_ucast_packets: 0 dev.bxe.2.queue.2.tx_bytes: 0 dev.bxe.2.queue.2.rx_discards: 0 dev.bxe.2.queue.2.rx_bcast_packets: 5 dev.bxe.2.queue.2.rx_mcast_packets: 0 dev.bxe.2.queue.2.rx_ucast_packets: 129 dev.bxe.2.queue.2.rx_bytes: 14050 dev.bxe.2.queue.1.mbuf_alloc_tpa: 64 dev.bxe.2.queue.1.mbuf_alloc_sge: 1020 dev.bxe.2.queue.1.mbuf_alloc_rx: 4080 dev.bxe.2.queue.1.mbuf_alloc_tx: 0 dev.bxe.2.queue.1.mbuf_rx_sge_mapping_failed: 0 dev.bxe.2.queue.1.mbuf_rx_sge_alloc_failed: 0 dev.bxe.2.queue.1.mbuf_rx_tpa_mapping_failed: 0 dev.bxe.2.queue.1.mbuf_rx_tpa_alloc_failed: 0 dev.bxe.2.queue.1.mbuf_rx_bd_mapping_failed: 0 dev.bxe.2.queue.1.mbuf_rx_bd_alloc_failed: 0 dev.bxe.2.queue.1.mbuf_defrag_failures: 0 dev.bxe.2.queue.1.mbuf_defrag_attempts: 0 dev.bxe.2.queue.1.tx_queue_xoff: 0 dev.bxe.2.queue.1.tx_frames_deferred: 0 dev.bxe.2.queue.1.tx_chain_lost_mbuf: 0 dev.bxe.2.queue.1.tx_window_violation_tso: 0 dev.bxe.2.queue.1.tx_window_violation_std: 0 dev.bxe.2.queue.1.tx_max_drbr_queue_depth: 0 dev.bxe.2.queue.1.tx_dma_mapping_failure: 0 dev.bxe.2.queue.1.tx_hw_max_queue_depth: 0 dev.bxe.2.queue.1.tx_hw_queue_full: 0 dev.bxe.2.queue.1.tx_encap_failures: 0 dev.bxe.2.queue.1.tx_ofld_frames_lso_hdr_splits: 0 dev.bxe.2.queue.1.tx_ofld_frames_lso: 0 dev.bxe.2.queue.1.tx_ofld_frames_csum_udp: 0 dev.bxe.2.queue.1.tx_ofld_frames_csum_tcp: 0 dev.bxe.2.queue.1.tx_ofld_frames_csum_ip: 0 dev.bxe.2.queue.1.tx_soft_errors: 0 dev.bxe.2.queue.1.tx_pkts: 0 dev.bxe.2.queue.1.rx_budget_reached: 0 dev.bxe.2.queue.1.rx_ofld_frames_csum_tcp_udp: 0 dev.bxe.2.queue.1.rx_ofld_frames_csum_ip: 0 dev.bxe.2.queue.1.rx_hw_csum_errors: 0 dev.bxe.2.queue.1.rx_soft_errors: 0 dev.bxe.2.queue.1.rx_jumbo_sge_pkts: 0 dev.bxe.2.queue.1.rx_bxe_service_rxsgl: 0 dev.bxe.2.queue.1.rx_erroneous_jumbo_sge_pkts: 0 dev.bxe.2.queue.1.rx_tpa_pkts: 0 dev.bxe.2.queue.1.rx_pkts: 0 dev.bxe.2.queue.1.rx_calls: 1 dev.bxe.2.queue.1.tpa_bytes: 0 dev.bxe.2.queue.1.tpa_aggregated_frames: 0 dev.bxe.2.queue.1.tpa_aggregations: 0 dev.bxe.2.queue.1.tx_bcast_packets: 0 dev.bxe.2.queue.1.tx_mcast_packets: 0 dev.bxe.2.queue.1.tx_ucast_packets: 0 dev.bxe.2.queue.1.tx_bytes: 0 dev.bxe.2.queue.1.rx_discards: 0 dev.bxe.2.queue.1.rx_bcast_packets: 0 dev.bxe.2.queue.1.rx_mcast_packets: 0 dev.bxe.2.queue.1.rx_ucast_packets: 0 dev.bxe.2.queue.1.rx_bytes: 0 dev.bxe.2.queue.0.mbuf_alloc_tpa: 64 dev.bxe.2.queue.0.mbuf_alloc_sge: 1020 dev.bxe.2.queue.0.mbuf_alloc_rx: 4080 dev.bxe.2.queue.0.mbuf_alloc_tx: 0 dev.bxe.2.queue.0.mbuf_rx_sge_mapping_failed: 0 dev.bxe.2.queue.0.mbuf_rx_sge_alloc_failed: 0 dev.bxe.2.queue.0.mbuf_rx_tpa_mapping_failed: 0 dev.bxe.2.queue.0.mbuf_rx_tpa_alloc_failed: 0 dev.bxe.2.queue.0.mbuf_rx_bd_mapping_failed: 0 dev.bxe.2.queue.0.mbuf_rx_bd_alloc_failed: 0 dev.bxe.2.queue.0.mbuf_defrag_failures: 0 dev.bxe.2.queue.0.mbuf_defrag_attempts: 0 dev.bxe.2.queue.0.tx_queue_xoff: 0 dev.bxe.2.queue.0.tx_frames_deferred: 0 dev.bxe.2.queue.0.tx_chain_lost_mbuf: 0 dev.bxe.2.queue.0.tx_window_violation_tso: 0 dev.bxe.2.queue.0.tx_window_violation_std: 0 dev.bxe.2.queue.0.tx_max_drbr_queue_depth: 0 dev.bxe.2.queue.0.tx_dma_mapping_failure: 0 dev.bxe.2.queue.0.tx_hw_max_queue_depth: 1 dev.bxe.2.queue.0.tx_hw_queue_full: 0 dev.bxe.2.queue.0.tx_encap_failures: 0 dev.bxe.2.queue.0.tx_ofld_frames_lso_hdr_splits: 0 dev.bxe.2.queue.0.tx_ofld_frames_lso: 0 dev.bxe.2.queue.0.tx_ofld_frames_csum_udp: 0 dev.bxe.2.queue.0.tx_ofld_frames_csum_tcp: 0 dev.bxe.2.queue.0.tx_ofld_frames_csum_ip: 0 dev.bxe.2.queue.0.tx_soft_errors: 0 dev.bxe.2.queue.0.tx_pkts: 4 dev.bxe.2.queue.0.rx_budget_reached: 0 dev.bxe.2.queue.0.rx_ofld_frames_csum_tcp_udp: 0 dev.bxe.2.queue.0.rx_ofld_frames_csum_ip: 0 dev.bxe.2.queue.0.rx_hw_csum_errors: 0 dev.bxe.2.queue.0.rx_soft_errors: 0 dev.bxe.2.queue.0.rx_jumbo_sge_pkts: 0 dev.bxe.2.queue.0.rx_bxe_service_rxsgl: 0 dev.bxe.2.queue.0.rx_erroneous_jumbo_sge_pkts: 0 dev.bxe.2.queue.0.rx_tpa_pkts: 0 dev.bxe.2.queue.0.rx_pkts: 16 dev.bxe.2.queue.0.rx_calls: 17 dev.bxe.2.queue.0.tpa_bytes: 0 dev.bxe.2.queue.0.tpa_aggregated_frames: 0 dev.bxe.2.queue.0.tpa_aggregations: 0 dev.bxe.2.queue.0.tx_bcast_packets: 1 dev.bxe.2.queue.0.tx_mcast_packets: 1 dev.bxe.2.queue.0.tx_ucast_packets: 2 dev.bxe.2.queue.0.tx_bytes: 252 dev.bxe.2.queue.0.rx_discards: 0 dev.bxe.2.queue.0.rx_bcast_packets: 15 dev.bxe.2.queue.0.rx_mcast_packets: 0 dev.bxe.2.queue.0.rx_ucast_packets: 1 dev.bxe.2.queue.0.rx_bytes: 1024 dev.bxe.2.mbuf_alloc_tpa: 256 dev.bxe.2.mbuf_alloc_sge: 4080 dev.bxe.2.mbuf_alloc_rx: 16320 dev.bxe.2.mbuf_alloc_tx: 0 dev.bxe.2.mbuf_rx_sge_mapping_failed: 0 dev.bxe.2.mbuf_rx_sge_alloc_failed: 0 dev.bxe.2.mbuf_rx_tpa_mapping_failed: 0 dev.bxe.2.mbuf_rx_tpa_alloc_failed: 0 dev.bxe.2.mbuf_rx_bd_mapping_failed: 0 dev.bxe.2.mbuf_rx_bd_alloc_failed: 0 dev.bxe.2.mbuf_defrag_failures: 0 dev.bxe.2.mbuf_defrag_attempts: 0 dev.bxe.2.tx_queue_xoff: 0 dev.bxe.2.tx_frames_deferred: 0 dev.bxe.2.tx_chain_lost_mbuf: 0 dev.bxe.2.tx_window_violation_tso: 0 dev.bxe.2.tx_window_violation_std: 0 dev.bxe.2.tx_max_drbr_queue_depth: 0 dev.bxe.2.tx_dma_mapping_failure: 0 dev.bxe.2.tx_hw_max_queue_depth: 1 dev.bxe.2.tx_hw_queue_full: 0 dev.bxe.2.tx_encap_failures: 0 dev.bxe.2.tx_ofld_frames_lso_hdr_splits: 0 dev.bxe.2.tx_ofld_frames_lso: 0 dev.bxe.2.tx_ofld_frames_csum_udp: 0 dev.bxe.2.tx_ofld_frames_csum_tcp: 0 dev.bxe.2.tx_ofld_frames_csum_ip: 0 dev.bxe.2.tx_soft_errors: 0 dev.bxe.2.tx_pkts: 4 dev.bxe.2.rx_budget_reached: 0 dev.bxe.2.rx_ofld_frames_csum_tcp_udp: 137 dev.bxe.2.rx_ofld_frames_csum_ip: 137 dev.bxe.2.rx_hw_csum_errors: 0 dev.bxe.2.rx_soft_errors: 0 dev.bxe.2.rx_jumbo_sge_pkts: 0 dev.bxe.2.rx_bxe_service_rxsgl: 0 dev.bxe.2.rx_erroneous_jumbo_sge_pkts: 0 dev.bxe.2.rx_tpa_pkts: 0 dev.bxe.2.rx_pkts: 153 dev.bxe.2.rx_calls: 154 dev.bxe.2.eee_tx_lpi: 0 dev.bxe.2.tpa_bytes: 0 dev.bxe.2.tpa_aggregated_frames: 0 dev.bxe.2.tpa_aggregations: 0 dev.bxe.2.tx_pause_frames: 0 dev.bxe.2.tx_1523_to_9022_byte_packets: 0 dev.bxe.2.tx_1024_to_1522_byte_packets: 0 dev.bxe.2.tx_512_to_1023_byte_packets: 0 dev.bxe.2.tx_256_to_511_byte_packets: 0 dev.bxe.2.tx_128_to_255_byte_packets: 0 dev.bxe.2.tx_65_to_127_byte_packets: 1 dev.bxe.2.tx_64_byte_packets: 3 dev.bxe.2.tx_total_collisions: 0 dev.bxe.2.tx_late_collisions: 0 dev.bxe.2.tx_excess_collisions: 0 dev.bxe.2.tx_deferred: 0 dev.bxe.2.tx_multi_collisions: 0 dev.bxe.2.tx_single_collisions: 0 dev.bxe.2.tx_carrier_errors: 0 dev.bxe.2.tx_mac_errors: 0 dev.bxe.2.tx_bcast_packets: 1 dev.bxe.2.tx_mcast_packets: 1 dev.bxe.2.tx_ucast_packets: 2 dev.bxe.2.tx_error_bytes: 0 dev.bxe.2.tx_bytes: 252 dev.bxe.2.rx_constant_pause_events: 0 dev.bxe.2.rx_mac_ctrl_frames: 0 dev.bxe.2.rx_pause_frames: 0 dev.bxe.2.rx_brb_truncate: 0 dev.bxe.2.rx_brb_discard: 0 dev.bxe.2.pfc_frames_sent: 0 dev.bxe.2.pfc_frames_received: 0 dev.bxe.2.rx_mf_tag_discard: 0 dev.bxe.2.rx_filtered_packets: 228 dev.bxe.2.rx_discards: 0 dev.bxe.2.rx_jabbers: 0 dev.bxe.2.rx_fragments: 0 dev.bxe.2.rx_oversize_packets: 0 dev.bxe.2.rx_undersize_packets: 0 dev.bxe.2.rx_align_errors: 0 dev.bxe.2.rx_crc_errors: 0 dev.bxe.2.rx_bcast_packets: 21 dev.bxe.2.rx_mcast_packets: 0 dev.bxe.2.rx_ucast_packets: 130 dev.bxe.2.rx_error_bytes: 0 dev.bxe.2.rx_bytes: 15336 dev.bxe.2.state: 0 dev.bxe.2.rx_budget: 4294967295 dev.bxe.2.grcdump_done: 0 dev.bxe.2.trigger_grcdump: 0 dev.bxe.2.debug: 1 dev.bxe.2.pci_link: ???GT/s x8 dev.bxe.2.mac_addr: 0c:c4:7a:bd:c8:ac dev.bxe.2.mf_vnics: 1 dev.bxe.2.mf_mode: Single dev.bxe.2.fw_version: 7.8.51.0 dev.bxe.2.bc_version: 7.6.55 dev.bxe.2.version: 1.78.79 dev.bxe.2.%parent: pci1 dev.bxe.2.%pnpinfo: vendor=3D0x14e4 device=3D0x16a1 subvendor=3D0x14e4 subdevice=3D0x4000 class=3D0x020000 dev.bxe.2.%location: pci0:1:0:2 dev.bxe.2.%driver: bxe dev.bxe.2.%desc: QLogic NetXtreme II BCM57840 4x10GbE (B1) BXE v:1.78.79 dev.bxe.1.queue.3.mbuf_alloc_tpa: 0 dev.bxe.1.queue.3.mbuf_alloc_sge: 0 dev.bxe.1.queue.3.mbuf_alloc_rx: 0 dev.bxe.1.queue.3.mbuf_alloc_tx: 0 dev.bxe.1.queue.3.mbuf_rx_sge_mapping_failed: 0 dev.bxe.1.queue.3.mbuf_rx_sge_alloc_failed: 0 dev.bxe.1.queue.3.mbuf_rx_tpa_mapping_failed: 0 dev.bxe.1.queue.3.mbuf_rx_tpa_alloc_failed: 0 dev.bxe.1.queue.3.mbuf_rx_bd_mapping_failed: 0 dev.bxe.1.queue.3.mbuf_rx_bd_alloc_failed: 0 dev.bxe.1.queue.3.mbuf_defrag_failures: 0 dev.bxe.1.queue.3.mbuf_defrag_attempts: 0 dev.bxe.1.queue.3.tx_queue_xoff: 0 dev.bxe.1.queue.3.tx_frames_deferred: 0 dev.bxe.1.queue.3.tx_chain_lost_mbuf: 0 dev.bxe.1.queue.3.tx_window_violation_tso: 0 dev.bxe.1.queue.3.tx_window_violation_std: 0 dev.bxe.1.queue.3.tx_max_drbr_queue_depth: 0 dev.bxe.1.queue.3.tx_dma_mapping_failure: 0 dev.bxe.1.queue.3.tx_hw_max_queue_depth: 0 dev.bxe.1.queue.3.tx_hw_queue_full: 0 dev.bxe.1.queue.3.tx_encap_failures: 0 dev.bxe.1.queue.3.tx_ofld_frames_lso_hdr_splits: 0 dev.bxe.1.queue.3.tx_ofld_frames_lso: 0 dev.bxe.1.queue.3.tx_ofld_frames_csum_udp: 0 dev.bxe.1.queue.3.tx_ofld_frames_csum_tcp: 0 dev.bxe.1.queue.3.tx_ofld_frames_csum_ip: 0 dev.bxe.1.queue.3.tx_soft_errors: 0 dev.bxe.1.queue.3.tx_pkts: 0 dev.bxe.1.queue.3.rx_budget_reached: 0 dev.bxe.1.queue.3.rx_ofld_frames_csum_tcp_udp: 0 dev.bxe.1.queue.3.rx_ofld_frames_csum_ip: 0 dev.bxe.1.queue.3.rx_hw_csum_errors: 0 dev.bxe.1.queue.3.rx_soft_errors: 0 dev.bxe.1.queue.3.rx_jumbo_sge_pkts: 0 dev.bxe.1.queue.3.rx_bxe_service_rxsgl: 0 dev.bxe.1.queue.3.rx_erroneous_jumbo_sge_pkts: 0 dev.bxe.1.queue.3.rx_tpa_pkts: 0 dev.bxe.1.queue.3.rx_pkts: 0 dev.bxe.1.queue.3.rx_calls: 0 dev.bxe.1.queue.3.tpa_bytes: 0 dev.bxe.1.queue.3.tpa_aggregated_frames: 0 dev.bxe.1.queue.3.tpa_aggregations: 0 dev.bxe.1.queue.3.tx_bcast_packets: 0 dev.bxe.1.queue.3.tx_mcast_packets: 0 dev.bxe.1.queue.3.tx_ucast_packets: 0 dev.bxe.1.queue.3.tx_bytes: 0 dev.bxe.1.queue.3.rx_discards: 0 dev.bxe.1.queue.3.rx_bcast_packets: 0 dev.bxe.1.queue.3.rx_mcast_packets: 0 dev.bxe.1.queue.3.rx_ucast_packets: 0 dev.bxe.1.queue.3.rx_bytes: 0 dev.bxe.1.queue.2.mbuf_alloc_tpa: 0 dev.bxe.1.queue.2.mbuf_alloc_sge: 0 dev.bxe.1.queue.2.mbuf_alloc_rx: 0 dev.bxe.1.queue.2.mbuf_alloc_tx: 0 dev.bxe.1.queue.2.mbuf_rx_sge_mapping_failed: 0 dev.bxe.1.queue.2.mbuf_rx_sge_alloc_failed: 0 dev.bxe.1.queue.2.mbuf_rx_tpa_mapping_failed: 0 dev.bxe.1.queue.2.mbuf_rx_tpa_alloc_failed: 0 dev.bxe.1.queue.2.mbuf_rx_bd_mapping_failed: 0 dev.bxe.1.queue.2.mbuf_rx_bd_alloc_failed: 0 dev.bxe.1.queue.2.mbuf_defrag_failures: 0 dev.bxe.1.queue.2.mbuf_defrag_attempts: 0 dev.bxe.1.queue.2.tx_queue_xoff: 0 dev.bxe.1.queue.2.tx_frames_deferred: 0 dev.bxe.1.queue.2.tx_chain_lost_mbuf: 0 dev.bxe.1.queue.2.tx_window_violation_tso: 0 dev.bxe.1.queue.2.tx_window_violation_std: 0 dev.bxe.1.queue.2.tx_max_drbr_queue_depth: 0 dev.bxe.1.queue.2.tx_dma_mapping_failure: 0 dev.bxe.1.queue.2.tx_hw_max_queue_depth: 0 dev.bxe.1.queue.2.tx_hw_queue_full: 0 dev.bxe.1.queue.2.tx_encap_failures: 0 dev.bxe.1.queue.2.tx_ofld_frames_lso_hdr_splits: 0 dev.bxe.1.queue.2.tx_ofld_frames_lso: 0 dev.bxe.1.queue.2.tx_ofld_frames_csum_udp: 0 dev.bxe.1.queue.2.tx_ofld_frames_csum_tcp: 0 dev.bxe.1.queue.2.tx_ofld_frames_csum_ip: 0 dev.bxe.1.queue.2.tx_soft_errors: 0 dev.bxe.1.queue.2.tx_pkts: 0 dev.bxe.1.queue.2.rx_budget_reached: 0 dev.bxe.1.queue.2.rx_ofld_frames_csum_tcp_udp: 0 dev.bxe.1.queue.2.rx_ofld_frames_csum_ip: 0 dev.bxe.1.queue.2.rx_hw_csum_errors: 0 dev.bxe.1.queue.2.rx_soft_errors: 0 dev.bxe.1.queue.2.rx_jumbo_sge_pkts: 0 dev.bxe.1.queue.2.rx_bxe_service_rxsgl: 0 dev.bxe.1.queue.2.rx_erroneous_jumbo_sge_pkts: 0 dev.bxe.1.queue.2.rx_tpa_pkts: 0 dev.bxe.1.queue.2.rx_pkts: 0 dev.bxe.1.queue.2.rx_calls: 0 dev.bxe.1.queue.2.tpa_bytes: 0 dev.bxe.1.queue.2.tpa_aggregated_frames: 0 dev.bxe.1.queue.2.tpa_aggregations: 0 dev.bxe.1.queue.2.tx_bcast_packets: 0 dev.bxe.1.queue.2.tx_mcast_packets: 0 dev.bxe.1.queue.2.tx_ucast_packets: 0 dev.bxe.1.queue.2.tx_bytes: 0 dev.bxe.1.queue.2.rx_discards: 0 dev.bxe.1.queue.2.rx_bcast_packets: 0 dev.bxe.1.queue.2.rx_mcast_packets: 0 dev.bxe.1.queue.2.rx_ucast_packets: 0 dev.bxe.1.queue.2.rx_bytes: 0 dev.bxe.1.queue.1.mbuf_alloc_tpa: 0 dev.bxe.1.queue.1.mbuf_alloc_sge: 0 dev.bxe.1.queue.1.mbuf_alloc_rx: 0 dev.bxe.1.queue.1.mbuf_alloc_tx: 0 dev.bxe.1.queue.1.mbuf_rx_sge_mapping_failed: 0 dev.bxe.1.queue.1.mbuf_rx_sge_alloc_failed: 0 dev.bxe.1.queue.1.mbuf_rx_tpa_mapping_failed: 0 dev.bxe.1.queue.1.mbuf_rx_tpa_alloc_failed: 0 dev.bxe.1.queue.1.mbuf_rx_bd_mapping_failed: 0 dev.bxe.1.queue.1.mbuf_rx_bd_alloc_failed: 0 dev.bxe.1.queue.1.mbuf_defrag_failures: 0 dev.bxe.1.queue.1.mbuf_defrag_attempts: 0 dev.bxe.1.queue.1.tx_queue_xoff: 0 dev.bxe.1.queue.1.tx_frames_deferred: 0 dev.bxe.1.queue.1.tx_chain_lost_mbuf: 0 dev.bxe.1.queue.1.tx_window_violation_tso: 0 dev.bxe.1.queue.1.tx_window_violation_std: 0 dev.bxe.1.queue.1.tx_max_drbr_queue_depth: 0 dev.bxe.1.queue.1.tx_dma_mapping_failure: 0 dev.bxe.1.queue.1.tx_hw_max_queue_depth: 0 dev.bxe.1.queue.1.tx_hw_queue_full: 0 dev.bxe.1.queue.1.tx_encap_failures: 0 dev.bxe.1.queue.1.tx_ofld_frames_lso_hdr_splits: 0 dev.bxe.1.queue.1.tx_ofld_frames_lso: 0 dev.bxe.1.queue.1.tx_ofld_frames_csum_udp: 0 dev.bxe.1.queue.1.tx_ofld_frames_csum_tcp: 0 dev.bxe.1.queue.1.tx_ofld_frames_csum_ip: 0 dev.bxe.1.queue.1.tx_soft_errors: 0 dev.bxe.1.queue.1.tx_pkts: 0 dev.bxe.1.queue.1.rx_budget_reached: 0 dev.bxe.1.queue.1.rx_ofld_frames_csum_tcp_udp: 0 dev.bxe.1.queue.1.rx_ofld_frames_csum_ip: 0 dev.bxe.1.queue.1.rx_hw_csum_errors: 0 dev.bxe.1.queue.1.rx_soft_errors: 0 dev.bxe.1.queue.1.rx_jumbo_sge_pkts: 0 dev.bxe.1.queue.1.rx_bxe_service_rxsgl: 0 dev.bxe.1.queue.1.rx_erroneous_jumbo_sge_pkts: 0 dev.bxe.1.queue.1.rx_tpa_pkts: 0 dev.bxe.1.queue.1.rx_pkts: 0 dev.bxe.1.queue.1.rx_calls: 0 dev.bxe.1.queue.1.tpa_bytes: 0 dev.bxe.1.queue.1.tpa_aggregated_frames: 0 dev.bxe.1.queue.1.tpa_aggregations: 0 dev.bxe.1.queue.1.tx_bcast_packets: 0 dev.bxe.1.queue.1.tx_mcast_packets: 0 dev.bxe.1.queue.1.tx_ucast_packets: 0 dev.bxe.1.queue.1.tx_bytes: 0 dev.bxe.1.queue.1.rx_discards: 0 dev.bxe.1.queue.1.rx_bcast_packets: 0 dev.bxe.1.queue.1.rx_mcast_packets: 0 dev.bxe.1.queue.1.rx_ucast_packets: 0 dev.bxe.1.queue.1.rx_bytes: 0 dev.bxe.1.queue.0.mbuf_alloc_tpa: 0 dev.bxe.1.queue.0.mbuf_alloc_sge: 0 dev.bxe.1.queue.0.mbuf_alloc_rx: 0 dev.bxe.1.queue.0.mbuf_alloc_tx: 0 dev.bxe.1.queue.0.mbuf_rx_sge_mapping_failed: 0 dev.bxe.1.queue.0.mbuf_rx_sge_alloc_failed: 0 dev.bxe.1.queue.0.mbuf_rx_tpa_mapping_failed: 0 dev.bxe.1.queue.0.mbuf_rx_tpa_alloc_failed: 0 dev.bxe.1.queue.0.mbuf_rx_bd_mapping_failed: 0 dev.bxe.1.queue.0.mbuf_rx_bd_alloc_failed: 0 dev.bxe.1.queue.0.mbuf_defrag_failures: 0 dev.bxe.1.queue.0.mbuf_defrag_attempts: 0 dev.bxe.1.queue.0.tx_queue_xoff: 0 dev.bxe.1.queue.0.tx_frames_deferred: 0 dev.bxe.1.queue.0.tx_chain_lost_mbuf: 0 dev.bxe.1.queue.0.tx_window_violation_tso: 0 dev.bxe.1.queue.0.tx_window_violation_std: 0 dev.bxe.1.queue.0.tx_max_drbr_queue_depth: 0 dev.bxe.1.queue.0.tx_dma_mapping_failure: 0 dev.bxe.1.queue.0.tx_hw_max_queue_depth: 0 dev.bxe.1.queue.0.tx_hw_queue_full: 0 dev.bxe.1.queue.0.tx_encap_failures: 0 dev.bxe.1.queue.0.tx_ofld_frames_lso_hdr_splits: 0 dev.bxe.1.queue.0.tx_ofld_frames_lso: 0 dev.bxe.1.queue.0.tx_ofld_frames_csum_udp: 0 dev.bxe.1.queue.0.tx_ofld_frames_csum_tcp: 0 dev.bxe.1.queue.0.tx_ofld_frames_csum_ip: 0 dev.bxe.1.queue.0.tx_soft_errors: 0 dev.bxe.1.queue.0.tx_pkts: 0 dev.bxe.1.queue.0.rx_budget_reached: 0 dev.bxe.1.queue.0.rx_ofld_frames_csum_tcp_udp: 0 dev.bxe.1.queue.0.rx_ofld_frames_csum_ip: 0 dev.bxe.1.queue.0.rx_hw_csum_errors: 0 dev.bxe.1.queue.0.rx_soft_errors: 0 dev.bxe.1.queue.0.rx_jumbo_sge_pkts: 0 dev.bxe.1.queue.0.rx_bxe_service_rxsgl: 0 dev.bxe.1.queue.0.rx_erroneous_jumbo_sge_pkts: 0 dev.bxe.1.queue.0.rx_tpa_pkts: 0 dev.bxe.1.queue.0.rx_pkts: 0 dev.bxe.1.queue.0.rx_calls: 0 dev.bxe.1.queue.0.tpa_bytes: 0 dev.bxe.1.queue.0.tpa_aggregated_frames: 0 dev.bxe.1.queue.0.tpa_aggregations: 0 dev.bxe.1.queue.0.tx_bcast_packets: 0 dev.bxe.1.queue.0.tx_mcast_packets: 0 dev.bxe.1.queue.0.tx_ucast_packets: 0 dev.bxe.1.queue.0.tx_bytes: 0 dev.bxe.1.queue.0.rx_discards: 0 dev.bxe.1.queue.0.rx_bcast_packets: 0 dev.bxe.1.queue.0.rx_mcast_packets: 0 dev.bxe.1.queue.0.rx_ucast_packets: 0 dev.bxe.1.queue.0.rx_bytes: 0 dev.bxe.1.mbuf_alloc_tpa: 0 dev.bxe.1.mbuf_alloc_sge: 0 dev.bxe.1.mbuf_alloc_rx: 0 dev.bxe.1.mbuf_alloc_tx: 0 dev.bxe.1.mbuf_rx_sge_mapping_failed: 0 dev.bxe.1.mbuf_rx_sge_alloc_failed: 0 dev.bxe.1.mbuf_rx_tpa_mapping_failed: 0 dev.bxe.1.mbuf_rx_tpa_alloc_failed: 0 dev.bxe.1.mbuf_rx_bd_mapping_failed: 0 dev.bxe.1.mbuf_rx_bd_alloc_failed: 0 dev.bxe.1.mbuf_defrag_failures: 0 dev.bxe.1.mbuf_defrag_attempts: 0 dev.bxe.1.tx_queue_xoff: 0 dev.bxe.1.tx_frames_deferred: 0 dev.bxe.1.tx_chain_lost_mbuf: 0 dev.bxe.1.tx_window_violation_tso: 0 dev.bxe.1.tx_window_violation_std: 0 dev.bxe.1.tx_max_drbr_queue_depth: 0 dev.bxe.1.tx_dma_mapping_failure: 0 dev.bxe.1.tx_hw_max_queue_depth: 0 dev.bxe.1.tx_hw_queue_full: 0 dev.bxe.1.tx_encap_failures: 0 dev.bxe.1.tx_ofld_frames_lso_hdr_splits: 0 dev.bxe.1.tx_ofld_frames_lso: 0 dev.bxe.1.tx_ofld_frames_csum_udp: 0 dev.bxe.1.tx_ofld_frames_csum_tcp: 0 dev.bxe.1.tx_ofld_frames_csum_ip: 0 dev.bxe.1.tx_soft_errors: 0 dev.bxe.1.tx_pkts: 0 dev.bxe.1.rx_budget_reached: 0 dev.bxe.1.rx_ofld_frames_csum_tcp_udp: 0 dev.bxe.1.rx_ofld_frames_csum_ip: 0 dev.bxe.1.rx_hw_csum_errors: 0 dev.bxe.1.rx_soft_errors: 0 dev.bxe.1.rx_jumbo_sge_pkts: 0 dev.bxe.1.rx_bxe_service_rxsgl: 0 dev.bxe.1.rx_erroneous_jumbo_sge_pkts: 0 dev.bxe.1.rx_tpa_pkts: 0 dev.bxe.1.rx_pkts: 0 dev.bxe.1.rx_calls: 0 dev.bxe.1.eee_tx_lpi: 0 dev.bxe.1.tpa_bytes: 0 dev.bxe.1.tpa_aggregated_frames: 0 dev.bxe.1.tpa_aggregations: 0 dev.bxe.1.tx_pause_frames: 0 dev.bxe.1.tx_1523_to_9022_byte_packets: 0 dev.bxe.1.tx_1024_to_1522_byte_packets: 0 dev.bxe.1.tx_512_to_1023_byte_packets: 0 dev.bxe.1.tx_256_to_511_byte_packets: 0 dev.bxe.1.tx_128_to_255_byte_packets: 0 dev.bxe.1.tx_65_to_127_byte_packets: 0 dev.bxe.1.tx_64_byte_packets: 0 dev.bxe.1.tx_total_collisions: 0 dev.bxe.1.tx_late_collisions: 0 dev.bxe.1.tx_excess_collisions: 0 dev.bxe.1.tx_deferred: 0 dev.bxe.1.tx_multi_collisions: 0 dev.bxe.1.tx_single_collisions: 0 dev.bxe.1.tx_carrier_errors: 0 dev.bxe.1.tx_mac_errors: 0 dev.bxe.1.tx_bcast_packets: 0 dev.bxe.1.tx_mcast_packets: 0 dev.bxe.1.tx_ucast_packets: 0 dev.bxe.1.tx_error_bytes: 0 dev.bxe.1.tx_bytes: 0 dev.bxe.1.rx_constant_pause_events: 0 dev.bxe.1.rx_mac_ctrl_frames: 0 dev.bxe.1.rx_pause_frames: 0 dev.bxe.1.rx_brb_truncate: 0 dev.bxe.1.rx_brb_discard: 0 dev.bxe.1.pfc_frames_sent: 0 dev.bxe.1.pfc_frames_received: 0 dev.bxe.1.rx_mf_tag_discard: 0 dev.bxe.1.rx_filtered_packets: 0 dev.bxe.1.rx_discards: 0 dev.bxe.1.rx_jabbers: 0 dev.bxe.1.rx_fragments: 0 dev.bxe.1.rx_oversize_packets: 0 dev.bxe.1.rx_undersize_packets: 0 dev.bxe.1.rx_align_errors: 0 dev.bxe.1.rx_crc_errors: 0 dev.bxe.1.rx_bcast_packets: 0 dev.bxe.1.rx_mcast_packets: 0 dev.bxe.1.rx_ucast_packets: 0 dev.bxe.1.rx_error_bytes: 0 dev.bxe.1.rx_bytes: 0 dev.bxe.1.state: 0 dev.bxe.1.rx_budget: 4294967295 dev.bxe.1.grcdump_done: 0 dev.bxe.1.trigger_grcdump: 0 dev.bxe.1.debug: 1 dev.bxe.1.pci_link: ???GT/s x8 dev.bxe.1.mac_addr: 0c:c4:7a:bd:c8:aa dev.bxe.1.mf_vnics: 1 dev.bxe.1.mf_mode: Single dev.bxe.1.fw_version: 7.8.51.0 dev.bxe.1.bc_version: 7.6.55 dev.bxe.1.version: 1.78.79 dev.bxe.1.%parent: pci1 dev.bxe.1.%pnpinfo: vendor=3D0x14e4 device=3D0x16a1 subvendor=3D0x14e4 subdevice=3D0x4000 class=3D0x020000 dev.bxe.1.%location: pci0:1:0:1 dev.bxe.1.%driver: bxe dev.bxe.1.%desc: QLogic NetXtreme II BCM57840 4x10GbE (B1) BXE v:1.78.79 dev.bxe.0.wake: 0 dev.bxe.0.queue.3.mbuf_alloc_tpa: 0 dev.bxe.0.queue.3.mbuf_alloc_sge: 0 dev.bxe.0.queue.3.mbuf_alloc_rx: 0 dev.bxe.0.queue.3.mbuf_alloc_tx: 0 dev.bxe.0.queue.3.mbuf_rx_sge_mapping_failed: 0 dev.bxe.0.queue.3.mbuf_rx_sge_alloc_failed: 0 dev.bxe.0.queue.3.mbuf_rx_tpa_mapping_failed: 0 dev.bxe.0.queue.3.mbuf_rx_tpa_alloc_failed: 0 dev.bxe.0.queue.3.mbuf_rx_bd_mapping_failed: 0 dev.bxe.0.queue.3.mbuf_rx_bd_alloc_failed: 0 dev.bxe.0.queue.3.mbuf_defrag_failures: 0 dev.bxe.0.queue.3.mbuf_defrag_attempts: 0 dev.bxe.0.queue.3.tx_queue_xoff: 0 dev.bxe.0.queue.3.tx_frames_deferred: 0 dev.bxe.0.queue.3.tx_chain_lost_mbuf: 0 dev.bxe.0.queue.3.tx_window_violation_tso: 0 dev.bxe.0.queue.3.tx_window_violation_std: 0 dev.bxe.0.queue.3.tx_max_drbr_queue_depth: 0 dev.bxe.0.queue.3.tx_dma_mapping_failure: 0 dev.bxe.0.queue.3.tx_hw_max_queue_depth: 0 dev.bxe.0.queue.3.tx_hw_queue_full: 0 dev.bxe.0.queue.3.tx_encap_failures: 0 dev.bxe.0.queue.3.tx_ofld_frames_lso_hdr_splits: 0 dev.bxe.0.queue.3.tx_ofld_frames_lso: 0 dev.bxe.0.queue.3.tx_ofld_frames_csum_udp: 0 dev.bxe.0.queue.3.tx_ofld_frames_csum_tcp: 0 dev.bxe.0.queue.3.tx_ofld_frames_csum_ip: 0 dev.bxe.0.queue.3.tx_soft_errors: 0 dev.bxe.0.queue.3.tx_pkts: 0 dev.bxe.0.queue.3.rx_budget_reached: 0 dev.bxe.0.queue.3.rx_ofld_frames_csum_tcp_udp: 0 dev.bxe.0.queue.3.rx_ofld_frames_csum_ip: 0 dev.bxe.0.queue.3.rx_hw_csum_errors: 0 dev.bxe.0.queue.3.rx_soft_errors: 0 dev.bxe.0.queue.3.rx_jumbo_sge_pkts: 0 dev.bxe.0.queue.3.rx_bxe_service_rxsgl: 0 dev.bxe.0.queue.3.rx_erroneous_jumbo_sge_pkts: 0 dev.bxe.0.queue.3.rx_tpa_pkts: 0 dev.bxe.0.queue.3.rx_pkts: 0 dev.bxe.0.queue.3.rx_calls: 0 dev.bxe.0.queue.3.tpa_bytes: 0 dev.bxe.0.queue.3.tpa_aggregated_frames: 0 dev.bxe.0.queue.3.tpa_aggregations: 0 dev.bxe.0.queue.3.tx_bcast_packets: 0 dev.bxe.0.queue.3.tx_mcast_packets: 0 dev.bxe.0.queue.3.tx_ucast_packets: 0 dev.bxe.0.queue.3.tx_bytes: 0 dev.bxe.0.queue.3.rx_discards: 0 dev.bxe.0.queue.3.rx_bcast_packets: 0 dev.bxe.0.queue.3.rx_mcast_packets: 0 dev.bxe.0.queue.3.rx_ucast_packets: 0 dev.bxe.0.queue.3.rx_bytes: 0 dev.bxe.0.queue.2.mbuf_alloc_tpa: 0 dev.bxe.0.queue.2.mbuf_alloc_sge: 0 dev.bxe.0.queue.2.mbuf_alloc_rx: 0 dev.bxe.0.queue.2.mbuf_alloc_tx: 0 dev.bxe.0.queue.2.mbuf_rx_sge_mapping_failed: 0 dev.bxe.0.queue.2.mbuf_rx_sge_alloc_failed: 0 dev.bxe.0.queue.2.mbuf_rx_tpa_mapping_failed: 0 dev.bxe.0.queue.2.mbuf_rx_tpa_alloc_failed: 0 dev.bxe.0.queue.2.mbuf_rx_bd_mapping_failed: 0 dev.bxe.0.queue.2.mbuf_rx_bd_alloc_failed: 0 dev.bxe.0.queue.2.mbuf_defrag_failures: 0 dev.bxe.0.queue.2.mbuf_defrag_attempts: 0 dev.bxe.0.queue.2.tx_queue_xoff: 0 dev.bxe.0.queue.2.tx_frames_deferred: 0 dev.bxe.0.queue.2.tx_chain_lost_mbuf: 0 dev.bxe.0.queue.2.tx_window_violation_tso: 0 dev.bxe.0.queue.2.tx_window_violation_std: 0 dev.bxe.0.queue.2.tx_max_drbr_queue_depth: 0 dev.bxe.0.queue.2.tx_dma_mapping_failure: 0 dev.bxe.0.queue.2.tx_hw_max_queue_depth: 0 dev.bxe.0.queue.2.tx_hw_queue_full: 0 dev.bxe.0.queue.2.tx_encap_failures: 0 dev.bxe.0.queue.2.tx_ofld_frames_lso_hdr_splits: 0 dev.bxe.0.queue.2.tx_ofld_frames_lso: 0 dev.bxe.0.queue.2.tx_ofld_frames_csum_udp: 0 dev.bxe.0.queue.2.tx_ofld_frames_csum_tcp: 0 dev.bxe.0.queue.2.tx_ofld_frames_csum_ip: 0 dev.bxe.0.queue.2.tx_soft_errors: 0 dev.bxe.0.queue.2.tx_pkts: 0 dev.bxe.0.queue.2.rx_budget_reached: 0 dev.bxe.0.queue.2.rx_ofld_frames_csum_tcp_udp: 0 dev.bxe.0.queue.2.rx_ofld_frames_csum_ip: 0 dev.bxe.0.queue.2.rx_hw_csum_errors: 0 dev.bxe.0.queue.2.rx_soft_errors: 0 dev.bxe.0.queue.2.rx_jumbo_sge_pkts: 0 dev.bxe.0.queue.2.rx_bxe_service_rxsgl: 0 dev.bxe.0.queue.2.rx_erroneous_jumbo_sge_pkts: 0 dev.bxe.0.queue.2.rx_tpa_pkts: 0 dev.bxe.0.queue.2.rx_pkts: 0 dev.bxe.0.queue.2.rx_calls: 0 dev.bxe.0.queue.2.tpa_bytes: 0 dev.bxe.0.queue.2.tpa_aggregated_frames: 0 dev.bxe.0.queue.2.tpa_aggregations: 0 dev.bxe.0.queue.2.tx_bcast_packets: 0 dev.bxe.0.queue.2.tx_mcast_packets: 0 dev.bxe.0.queue.2.tx_ucast_packets: 0 dev.bxe.0.queue.2.tx_bytes: 0 dev.bxe.0.queue.2.rx_discards: 0 dev.bxe.0.queue.2.rx_bcast_packets: 0 dev.bxe.0.queue.2.rx_mcast_packets: 0 dev.bxe.0.queue.2.rx_ucast_packets: 0 dev.bxe.0.queue.2.rx_bytes: 0 dev.bxe.0.queue.1.mbuf_alloc_tpa: 0 dev.bxe.0.queue.1.mbuf_alloc_sge: 0 dev.bxe.0.queue.1.mbuf_alloc_rx: 0 dev.bxe.0.queue.1.mbuf_alloc_tx: 0 dev.bxe.0.queue.1.mbuf_rx_sge_mapping_failed: 0 dev.bxe.0.queue.1.mbuf_rx_sge_alloc_failed: 0 dev.bxe.0.queue.1.mbuf_rx_tpa_mapping_failed: 0 dev.bxe.0.queue.1.mbuf_rx_tpa_alloc_failed: 0 dev.bxe.0.queue.1.mbuf_rx_bd_mapping_failed: 0 dev.bxe.0.queue.1.mbuf_rx_bd_alloc_failed: 0 dev.bxe.0.queue.1.mbuf_defrag_failures: 0 dev.bxe.0.queue.1.mbuf_defrag_attempts: 0 dev.bxe.0.queue.1.tx_queue_xoff: 0 dev.bxe.0.queue.1.tx_frames_deferred: 0 dev.bxe.0.queue.1.tx_chain_lost_mbuf: 0 dev.bxe.0.queue.1.tx_window_violation_tso: 0 dev.bxe.0.queue.1.tx_window_violation_std: 0 dev.bxe.0.queue.1.tx_max_drbr_queue_depth: 0 dev.bxe.0.queue.1.tx_dma_mapping_failure: 0 dev.bxe.0.queue.1.tx_hw_max_queue_depth: 0 dev.bxe.0.queue.1.tx_hw_queue_full: 0 dev.bxe.0.queue.1.tx_encap_failures: 0 dev.bxe.0.queue.1.tx_ofld_frames_lso_hdr_splits: 0 dev.bxe.0.queue.1.tx_ofld_frames_lso: 0 dev.bxe.0.queue.1.tx_ofld_frames_csum_udp: 0 dev.bxe.0.queue.1.tx_ofld_frames_csum_tcp: 0 dev.bxe.0.queue.1.tx_ofld_frames_csum_ip: 0 dev.bxe.0.queue.1.tx_soft_errors: 0 dev.bxe.0.queue.1.tx_pkts: 0 dev.bxe.0.queue.1.rx_budget_reached: 0 dev.bxe.0.queue.1.rx_ofld_frames_csum_tcp_udp: 0 dev.bxe.0.queue.1.rx_ofld_frames_csum_ip: 0 dev.bxe.0.queue.1.rx_hw_csum_errors: 0 dev.bxe.0.queue.1.rx_soft_errors: 0 dev.bxe.0.queue.1.rx_jumbo_sge_pkts: 0 dev.bxe.0.queue.1.rx_bxe_service_rxsgl: 0 dev.bxe.0.queue.1.rx_erroneous_jumbo_sge_pkts: 0 dev.bxe.0.queue.1.rx_tpa_pkts: 0 dev.bxe.0.queue.1.rx_pkts: 0 dev.bxe.0.queue.1.rx_calls: 0 dev.bxe.0.queue.1.tpa_bytes: 0 dev.bxe.0.queue.1.tpa_aggregated_frames: 0 dev.bxe.0.queue.1.tpa_aggregations: 0 dev.bxe.0.queue.1.tx_bcast_packets: 0 dev.bxe.0.queue.1.tx_mcast_packets: 0 dev.bxe.0.queue.1.tx_ucast_packets: 0 dev.bxe.0.queue.1.tx_bytes: 0 dev.bxe.0.queue.1.rx_discards: 0 dev.bxe.0.queue.1.rx_bcast_packets: 0 dev.bxe.0.queue.1.rx_mcast_packets: 0 dev.bxe.0.queue.1.rx_ucast_packets: 0 dev.bxe.0.queue.1.rx_bytes: 0 dev.bxe.0.queue.0.mbuf_alloc_tpa: 0 dev.bxe.0.queue.0.mbuf_alloc_sge: 0 dev.bxe.0.queue.0.mbuf_alloc_rx: 0 dev.bxe.0.queue.0.mbuf_alloc_tx: 0 dev.bxe.0.queue.0.mbuf_rx_sge_mapping_failed: 0 dev.bxe.0.queue.0.mbuf_rx_sge_alloc_failed: 0 dev.bxe.0.queue.0.mbuf_rx_tpa_mapping_failed: 0 dev.bxe.0.queue.0.mbuf_rx_tpa_alloc_failed: 0 dev.bxe.0.queue.0.mbuf_rx_bd_mapping_failed: 0 dev.bxe.0.queue.0.mbuf_rx_bd_alloc_failed: 0 dev.bxe.0.queue.0.mbuf_defrag_failures: 0 dev.bxe.0.queue.0.mbuf_defrag_attempts: 0 dev.bxe.0.queue.0.tx_queue_xoff: 0 dev.bxe.0.queue.0.tx_frames_deferred: 0 dev.bxe.0.queue.0.tx_chain_lost_mbuf: 0 dev.bxe.0.queue.0.tx_window_violation_tso: 0 dev.bxe.0.queue.0.tx_window_violation_std: 0 dev.bxe.0.queue.0.tx_max_drbr_queue_depth: 0 dev.bxe.0.queue.0.tx_dma_mapping_failure: 0 dev.bxe.0.queue.0.tx_hw_max_queue_depth: 0 dev.bxe.0.queue.0.tx_hw_queue_full: 0 dev.bxe.0.queue.0.tx_encap_failures: 0 dev.bxe.0.queue.0.tx_ofld_frames_lso_hdr_splits: 0 dev.bxe.0.queue.0.tx_ofld_frames_lso: 0 dev.bxe.0.queue.0.tx_ofld_frames_csum_udp: 0 dev.bxe.0.queue.0.tx_ofld_frames_csum_tcp: 0 dev.bxe.0.queue.0.tx_ofld_frames_csum_ip: 0 dev.bxe.0.queue.0.tx_soft_errors: 0 dev.bxe.0.queue.0.tx_pkts: 0 dev.bxe.0.queue.0.rx_budget_reached: 0 dev.bxe.0.queue.0.rx_ofld_frames_csum_tcp_udp: 0 dev.bxe.0.queue.0.rx_ofld_frames_csum_ip: 0 dev.bxe.0.queue.0.rx_hw_csum_errors: 0 dev.bxe.0.queue.0.rx_soft_errors: 0 dev.bxe.0.queue.0.rx_jumbo_sge_pkts: 0 dev.bxe.0.queue.0.rx_bxe_service_rxsgl: 0 dev.bxe.0.queue.0.rx_erroneous_jumbo_sge_pkts: 0 dev.bxe.0.queue.0.rx_tpa_pkts: 0 dev.bxe.0.queue.0.rx_pkts: 0 dev.bxe.0.queue.0.rx_calls: 0 dev.bxe.0.queue.0.tpa_bytes: 0 dev.bxe.0.queue.0.tpa_aggregated_frames: 0 dev.bxe.0.queue.0.tpa_aggregations: 0 dev.bxe.0.queue.0.tx_bcast_packets: 0 dev.bxe.0.queue.0.tx_mcast_packets: 0 dev.bxe.0.queue.0.tx_ucast_packets: 0 dev.bxe.0.queue.0.tx_bytes: 0 dev.bxe.0.queue.0.rx_discards: 0 dev.bxe.0.queue.0.rx_bcast_packets: 0 dev.bxe.0.queue.0.rx_mcast_packets: 0 dev.bxe.0.queue.0.rx_ucast_packets: 0 dev.bxe.0.queue.0.rx_bytes: 0 dev.bxe.0.mbuf_alloc_tpa: 0 dev.bxe.0.mbuf_alloc_sge: 0 dev.bxe.0.mbuf_alloc_rx: 0 dev.bxe.0.mbuf_alloc_tx: 0 dev.bxe.0.mbuf_rx_sge_mapping_failed: 0 dev.bxe.0.mbuf_rx_sge_alloc_failed: 0 dev.bxe.0.mbuf_rx_tpa_mapping_failed: 0 dev.bxe.0.mbuf_rx_tpa_alloc_failed: 0 dev.bxe.0.mbuf_rx_bd_mapping_failed: 0 dev.bxe.0.mbuf_rx_bd_alloc_failed: 0 dev.bxe.0.mbuf_defrag_failures: 0 dev.bxe.0.mbuf_defrag_attempts: 0 dev.bxe.0.tx_queue_xoff: 0 dev.bxe.0.tx_frames_deferred: 0 dev.bxe.0.tx_chain_lost_mbuf: 0 dev.bxe.0.tx_window_violation_tso: 0 dev.bxe.0.tx_window_violation_std: 0 dev.bxe.0.tx_max_drbr_queue_depth: 0 dev.bxe.0.tx_dma_mapping_failure: 0 dev.bxe.0.tx_hw_max_queue_depth: 0 dev.bxe.0.tx_hw_queue_full: 0 dev.bxe.0.tx_encap_failures: 0 dev.bxe.0.tx_ofld_frames_lso_hdr_splits: 0 dev.bxe.0.tx_ofld_frames_lso: 0 dev.bxe.0.tx_ofld_frames_csum_udp: 0 dev.bxe.0.tx_ofld_frames_csum_tcp: 0 dev.bxe.0.tx_ofld_frames_csum_ip: 0 dev.bxe.0.tx_soft_errors: 0 dev.bxe.0.tx_pkts: 0 dev.bxe.0.rx_budget_reached: 0 dev.bxe.0.rx_ofld_frames_csum_tcp_udp: 0 dev.bxe.0.rx_ofld_frames_csum_ip: 0 dev.bxe.0.rx_hw_csum_errors: 0 dev.bxe.0.rx_soft_errors: 0 dev.bxe.0.rx_jumbo_sge_pkts: 0 dev.bxe.0.rx_bxe_service_rxsgl: 0 dev.bxe.0.rx_erroneous_jumbo_sge_pkts: 0 dev.bxe.0.rx_tpa_pkts: 0 dev.bxe.0.rx_pkts: 0 dev.bxe.0.rx_calls: 0 dev.bxe.0.eee_tx_lpi: 0 dev.bxe.0.tpa_bytes: 0 dev.bxe.0.tpa_aggregated_frames: 0 dev.bxe.0.tpa_aggregations: 0 dev.bxe.0.tx_pause_frames: 0 dev.bxe.0.tx_1523_to_9022_byte_packets: 0 dev.bxe.0.tx_1024_to_1522_byte_packets: 0 dev.bxe.0.tx_512_to_1023_byte_packets: 0 dev.bxe.0.tx_256_to_511_byte_packets: 0 dev.bxe.0.tx_128_to_255_byte_packets: 0 dev.bxe.0.tx_65_to_127_byte_packets: 0 dev.bxe.0.tx_64_byte_packets: 0 dev.bxe.0.tx_total_collisions: 0 dev.bxe.0.tx_late_collisions: 0 dev.bxe.0.tx_excess_collisions: 0 dev.bxe.0.tx_deferred: 0 dev.bxe.0.tx_multi_collisions: 0 dev.bxe.0.tx_single_collisions: 0 dev.bxe.0.tx_carrier_errors: 0 dev.bxe.0.tx_mac_errors: 0 dev.bxe.0.tx_bcast_packets: 0 dev.bxe.0.tx_mcast_packets: 0 dev.bxe.0.tx_ucast_packets: 0 dev.bxe.0.tx_error_bytes: 0 dev.bxe.0.tx_bytes: 0 dev.bxe.0.rx_constant_pause_events: 0 dev.bxe.0.rx_mac_ctrl_frames: 0 dev.bxe.0.rx_pause_frames: 0 dev.bxe.0.rx_brb_truncate: 0 dev.bxe.0.rx_brb_discard: 0 dev.bxe.0.pfc_frames_sent: 0 dev.bxe.0.pfc_frames_received: 0 dev.bxe.0.rx_mf_tag_discard: 0 dev.bxe.0.rx_filtered_packets: 0 dev.bxe.0.rx_discards: 0 dev.bxe.0.rx_jabbers: 0 dev.bxe.0.rx_fragments: 0 dev.bxe.0.rx_oversize_packets: 0 dev.bxe.0.rx_undersize_packets: 0 dev.bxe.0.rx_align_errors: 0 dev.bxe.0.rx_crc_errors: 0 dev.bxe.0.rx_bcast_packets: 0 dev.bxe.0.rx_mcast_packets: 0 dev.bxe.0.rx_ucast_packets: 0 dev.bxe.0.rx_error_bytes: 0 dev.bxe.0.rx_bytes: 0 dev.bxe.0.state: 0 dev.bxe.0.rx_budget: 4294967295 dev.bxe.0.grcdump_done: 0 dev.bxe.0.trigger_grcdump: 0 dev.bxe.0.debug: 1 dev.bxe.0.pci_link: ???GT/s x8 dev.bxe.0.mac_addr: 0c:c4:7a:bd:c8:a8 dev.bxe.0.mf_vnics: 1 dev.bxe.0.mf_mode: Single dev.bxe.0.fw_version: 7.8.51.0 dev.bxe.0.bc_version: 7.6.55 dev.bxe.0.version: 1.78.79 dev.bxe.0.%parent: pci1 dev.bxe.0.%pnpinfo: vendor=3D0x14e4 device=3D0x16a1 subvendor=3D0x14e4 subdevice=3D0x4000 class=3D0x020000 dev.bxe.0.%location: pci0:1:0:0 handle=3D\_SB_.PCI0.PEG0.PEGP dev.bxe.0.%driver: bxe dev.bxe.0.%desc: QLogic NetXtreme II BCM57840 4x10GbE (B1) BXE v:1.78.79 dev.bxe.%parent: --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Oct 26 22:33:09 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 28020C23956 for ; Wed, 26 Oct 2016 22:33:09 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0DD8CC06 for ; Wed, 26 Oct 2016 22:33:09 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9QMX8hV045376 for ; Wed, 26 Oct 2016 22:33:08 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213778] stable/11 -r307797 on BPi-M3 (cortex-a7): truss gets segmentation fault for handling SIGSYS Date: Wed, 26 Oct 2016 22:33: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: 11.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: markmi@dsl-only.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2016 22:33:09 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213778 --- Comment #1 from Mark Millard --- (In reply to Mark Millard from comment #0) The following is from a report about a different issue than truss but what = it also says about the value reported bh gdb for t->cs.number when truss gets = the segmentation fault may be relevant information for truss's behavior. . . Using "ktrace -i -t +fw" it looks like every repeat of the problem ends up = with the following sort of sequence (a variation is shown later): 34629 cc1 CALL=20 mmap(0,0x4000,0x3,0x1002,0xffff= ffff,0x1c,0,0) 34629 cc1 RET mmap 568225792/0x21de7000 34629 cc1 PFLT 0x21de7000 VM_PROT_WRITE 34629 cc1 PRET KERN_SUCCESS 34629 cc1 PFLT 0x21de8000 VM_PROT_WRITE 34629 cc1 PRET KERN_SUCCESS 34629 cc1 PFLT 0x21de9000 VM_PROT_WRITE 34629 cc1 PRET KERN_SUCCESS 34629 cc1 PFLT 0x21dea000 VM_PROT_WRITE 34629 cc1 PRET KERN_SUCCESS 34629 cc1 PFLT 0x229e8000 VM_PROT_WRITE 34629 cc1 PRET KERN_SUCCESS 34629 cc1 PFLT 0x229e9000 VM_PROT_WRITE 34629 cc1 PRET KERN_SUCCESS 34629 cc1 PFLT 0x229ea000 VM_PROT_WRITE 34629 cc1 PRET KERN_SUCCESS 34629 cc1 CSW stop user "ast" 34629 cc1 CSW resume user "ast" 34629 cc1 PFLT 0x229eb000 VM_PROT_WRITE 34629 cc1 PRET KERN_SUCCESS 34629 cc1 PFLT 0x229ec000 VM_PROT_WRITE 34629 cc1 PRET KERN_SUCCESS 34629 cc1 CALL [-17504] 34629 cc1 RET [-17504] -1 errno 78 Function not implemented 34629 cc1 PSIG SIGSYS SIG_DFL code=3DSI_KERNEL 34629 cc1 NAMI "cc1.core" 34630 as CSW stop kernel "piperd" 34630 as Events dropped. 34630 as RET read 0 34630 as CALL close(0) 34630 as RET close 0 . . . I'll note that for the source this was compiling I used gdb truss with run = -feH -o truss.log and it reported: (gdb) print t->cs.number $5 =3D 580828064 FYI: 580828064 =3D 0x229EBBA0 where the truss segmentation fault was at line 385 of the following (sc=3D= =3DNULL in the context): 380 t->cs.name =3D sysdecode_syscallname(t->proc->abi->abi, t->cs.number); 381 if (t->cs.name =3D=3D NULL) (gdb)=20 382 fprintf(info->outfile, "-- UNKNOWN %s SYSCALL %d --= \n", 383 t->proc->abi->type, t->cs.number); 384=20=20=20=20=20 385 sc =3D get_syscall(t->cs.name, narg); 386 t->cs.nargs =3D sc->nargs; 387 assert(sc->nargs <=3D nitems(t->cs.s_args)); 388=20=20=20=20=20 389 t->cs.sc =3D sc; The 229E matched the upper part of local PFLT activity around the user "ast" CSW's, including just before the bad call. But the details do vary some based on the source file being compiled. For example here the user "ast" CSW's are just before the mmap but are still ju= st after the 0x229ea000 PFLT: 34698 cc1 PRET KERN_SUCCESS 34698 cc1 PFLT 0xbfbf2000 VM_PROT_WRITE 34698 cc1 PRET KERN_SUCCESS 34698 cc1 PFLT 0x229e7000 VM_PROT_WRITE 34698 cc1 PRET KERN_SUCCESS 34698 cc1 PFLT 0x229e8000 VM_PROT_WRITE 34698 cc1 PRET KERN_SUCCESS 34698 cc1 PFLT 0x229e9000 VM_PROT_WRITE 34698 cc1 PRET KERN_SUCCESS 34698 cc1 PFLT 0x229ea000 VM_PROT_WRITE 34698 cc1 PRET KERN_SUCCESS 34698 cc1 CSW stop user "ast" 34698 cc1 CSW resume user "ast" 34698 cc1 CALL=20 mmap(0,0x4000,0x3,0x1002,0xffff= ffff,0,0,0) 34698 cc1 RET mmap 568225792/0x21de7000 34698 cc1 PFLT 0x21de7000 VM_PROT_WRITE 34698 cc1 PRET KERN_SUCCESS 34698 cc1 PFLT 0x21de8000 VM_PROT_WRITE 34698 cc1 PRET KERN_SUCCESS 34698 cc1 PFLT 0x21de9000 VM_PROT_WRITE 34698 cc1 PRET KERN_SUCCESS 34698 cc1 PFLT 0x21dea000 VM_PROT_WRITE 34698 cc1 PRET KERN_SUCCESS 34698 cc1 PFLT 0x229eb000 VM_PROT_WRITE 34698 cc1 PRET KERN_SUCCESS 34698 cc1 CALL [-25840] 34698 cc1 RET [-25840] -1 errno 78 Function not implemented 34698 cc1 PSIG SIGSYS SIG_DFL code=3DSI_KERNEL 34698 cc1 NAMI "cc1.core" 34699 as CSW stop kernel "piperd" 34699 as Events dropped. 34699 as RET read 0 34699 as CALL close(0) 34699 as RET close 0 -25840 in 2's complement is: 0xF...F9B10 Here doing the gdb truss instead reports: (gdb) print t->cs.number $1 =3D 580819728 and 580819728 =3D 0x229E9B10 and the 229E part matches several PFLT's in the area, including just before= the bad call as well as just before the user "ast"s. Between them are some PFLT= 's that do not match. I would guess that the 229E in t->cs.number in truss is from the PFLT just before the failing syscall in each case. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Oct 26 22:44:09 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4220EC23B74 for ; Wed, 26 Oct 2016 22:44:09 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 31D60E for ; Wed, 26 Oct 2016 22:44:09 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9QMi8oa067993 for ; Wed, 26 Oct 2016 22:44:09 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213818] bxe driver error QLogic NetXtreme II BCM57840 4x10GbE Date: Wed, 26 Oct 2016 22:44: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.3-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2016 22:44:09 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213818 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-net@FreeBSD.org CC|freebsd-amd64@FreeBSD.org | --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Wed Oct 26 22:44:31 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5CFE9C23C03 for ; Wed, 26 Oct 2016 22:44:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4CA9519D for ; Wed, 26 Oct 2016 22:44:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9QMiU0L068605 for ; Wed, 26 Oct 2016 22:44:31 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213804] [carp]: packets got processes on the BACKUP node under certain conditions Date: Wed, 26 Oct 2016 22:44:30 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.3-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Oct 2016 22:44:31 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213804 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-net@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Oct 27 11:19:06 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3F8ABC2380A for ; Thu, 27 Oct 2016 11:19:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2F0348F5 for ; Thu, 27 Oct 2016 11:19:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9RBJ6sC004417 for ; Thu, 27 Oct 2016 11:19:06 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213832] panic: vm_page_unwire: page 0x[...]'s wire count is zero Date: Thu, 27 Oct 2016 11:19:05 +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-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: emz@norma.perm.ru X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2016 11:19:06 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213832 Bug ID: 213832 Summary: panic: vm_page_unwire: page 0x[...]'s wire count is zero Product: Base System Version: 11.0-STABLE Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: emz@norma.perm.ru Created attachment 176215 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D176215&action= =3Dedit core.txt.0 After upgrade to 11.0-RELEASE-p2 I'm getting panics: panic: vm_page_unwire: page 0xfffff8023ca8b2f8's wire count is zero GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain condition= s. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "amd64-marcel-freebsd"... Unread portion of the kernel message buffer: panic: vm_page_unwire: page 0xfffff8023ca8b2f8's wire count is zero cpuid =3D 3 KDB: stack backtrace: #0 0xffffffff80b1b417 at kdb_backtrace+0x67 #1 0xffffffff80ad0782 at vpanic+0x182 #2 0xffffffff80ad05f3 at panic+0x43 #3 0xffffffff80e693b3 at vm_page_unwire+0x73 #4 0xffffffff80accb40 at sf_ext_free+0xb0 #5 0xffffffff80aa7ad0 at mb_free_ext+0xc0 #6 0xffffffff80aa81a8 at m_freem+0x38 #7 0xffffffff80cf7453 at tcp_do_segment+0x28a3 #8 0xffffffff80cf3edc at tcp_input+0xd1c #9 0xffffffff80c64c5f at ip_input+0x15f #10 0xffffffff80bfa135 at netisr_dispatch_src+0xa5 #11 0xffffffff80be2b9a at ether_demux+0x12a #12 0xffffffff80be37f2 at ether_nh_input+0x322 #13 0xffffffff80bfa135 at netisr_dispatch_src+0xa5 #14 0xffffffff80be2e16 at ether_input+0x26 #15 0xffffffff8055983c at igb_rxeof+0x81c #16 0xffffffff80558b92 at igb_msix_que+0x152 #17 0xffffffff80a8a7af at intr_event_execute_handlers+0x20f Uptime: 28m25s Dumping 3780 out of 8147 MB:..1%..11%..21%..31%..41%..51%..61%..71%..81%..9= 1% Reading symbols from /boot/kernel/zfs.ko...Reading symbols from /usr/lib/debug//boot/kernel/zfs.ko.debug...done. done. Loaded symbols for /boot/kernel/zfs.ko Reading symbols from /boot/kernel/opensolaris.ko...Reading symbols from /usr/lib/debug//boot/kernel/opensolaris.ko.debug...done. done. Loaded symbols for /boot/kernel/opensolaris.ko #0 doadump (textdump=3D) at pcpu.h:221 221 pcpu.h: No such file or directory. in pcpu.h (kgdb) #0 doadump (textdump=3D) at pcpu.h:221 #1 0xffffffff80ad0209 in kern_reboot (howto=3D260) at /usr/src/sys/kern/kern_shutdown.c:366 #2 0xffffffff80ad07bb in vpanic (fmt=3D,=20 ap=3D) at /usr/src/sys/kern/kern_shutdown.c:759 #3 0xffffffff80ad05f3 in panic (fmt=3D0x0) at /usr/src/sys/kern/kern_shutdown.c:690 #4 0xffffffff80e693b3 in vm_page_unwire (m=3D,=20 queue=3D) at /usr/src/sys/vm/vm_page.c:3136 #5 0xffffffff80accb40 in sf_ext_free (arg1=3D0xfffff8023ca8b2f8, arg2=3D0x= 0) at /usr/src/sys/kern/kern_sendfile.c:140 #6 0xffffffff80aa7ad0 in mb_free_ext (m=3D0xfffff80022f27c00) at /usr/src/sys/kern/kern_mbuf.c:678 #7 0xffffffff80aa81a8 in m_freem (mb=3D) at mbuf.h:11= 80 #8 0xffffffff80cf7453 in tcp_do_segment (m=3D,=20 th=3D, so=3D0xfffff80022ba6a20,=20 tp=3D, drop_hdrlen=3D52, tlen=3D,=20 iptos=3D, ti_locked=3DCannot access memory at addr= ess 0x1 ) at /usr/src/sys/netinet/tcp_input.c:1764 #9 0xffffffff80cf3edc in tcp_input (mp=3D,=20 offp=3D, proto=3D) at /usr/src/sys/netinet/tcp_input.c:1442 #10 0xffffffff80c64c5f in ip_input (m=3DCannot access memory at address 0x0 ) at /usr/src/sys/netinet/ip_input.c:809 #11 0xffffffff80bfa135 in netisr_dispatch_src (proto=3D1,=20 source=3D, m=3D0x0) at /usr/src/sys/net/netisr.c:1= 121 #12 0xffffffff80be2b9a in ether_demux (ifp=3D, m=3D0x0) at /usr/src/sys/net/if_ethersubr.c:850 #13 0xffffffff80be37f2 in ether_nh_input (m=3D) at /usr/src/sys/net/if_ethersubr.c:639 #14 0xffffffff80bfa135 in netisr_dispatch_src (proto=3D5,=20 source=3D, m=3D0x0) at /usr/src/sys/net/netisr.c:1= 121 #15 0xffffffff80be2e16 in ether_input (ifp=3D, m=3D0x0) at /usr/src/sys/net/if_ethersubr.c:759 #16 0xffffffff8055983c in igb_rxeof (count=3D583080448) at /usr/src/sys/dev/e1000/if_igb.c:4957 #17 0xffffffff80558b92 in igb_msix_que (arg=3D0xfffff8000649b538) at /usr/src/sys/dev/e1000/if_igb.c:1612 #18 0xffffffff80a8a7af in intr_event_execute_handlers ( p=3D, ie=3D) at /usr/src/sys/kern/kern_intr.c:1262 #19 0xffffffff80a8aa16 in ithread_loop (arg=3D) at /usr/src/sys/kern/kern_intr.c:1275 #20 0xffffffff80a873f5 in fork_exit ( callout=3D0xffffffff80a8a950 , arg=3D0xfffff80006497900,= =20 frame=3D0xfffffe01f0b1cc00) at /usr/src/sys/kern/kern_fork.c:1038 #21 0xffffffff80fc112e in fork_trampoline () at /usr/src/sys/amd64/amd64/exception.S:611 #22 0x0000000000000000 in ?? () Current language: auto; currently minimal (kgdb) They are repeatable. I see a similar but closed PR for 9.2 and an open PR f= or this panic for a NFS client case. My system is neither of these cases (not = 9.x, neither an NFS client), so I decided to open a new one.=20 I have also attached core.txt.0 and .1. I also have the coredumps in case someone needs them. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Oct 27 11:19:34 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0A3C5C2385A for ; Thu, 27 Oct 2016 11:19:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EDEF595A for ; Thu, 27 Oct 2016 11:19:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9RBJXoL004991 for ; Thu, 27 Oct 2016 11:19:33 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213832] panic: vm_page_unwire: page 0x[...]'s wire count is zero Date: Thu, 27 Oct 2016 11:19:34 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: emz@norma.perm.ru X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2016 11:19:34 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213832 --- Comment #1 from emz@norma.perm.ru --- Created attachment 176216 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D176216&action= =3Dedit core.txt.1 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Oct 27 13:28:19 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AC724C15428 for ; Thu, 27 Oct 2016 13:28:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9C1CFEAB for ; Thu, 27 Oct 2016 13:28:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9RDSJin061556 for ; Thu, 27 Oct 2016 13:28:19 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213474] sed behavior change with a/i/c operands. Date: Thu, 27 Oct 2016 13:28:19 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-STABLE X-Bugzilla-Keywords: patch, regression X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: kpect@protonmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2016 13:28:19 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213474 --- Comment #4 from Sergey --- (In reply to Pedro F. Giffuni from comment #3) In my humble opinion it's a bad decision. In that case i'd rather patch sed's source like this: # Restore original BSD sed sed -E -i '' \ -e '/ p =3D lbuf;/ a\ \ EATSPACE();' \ usr.bin/sed/compile.c I suppose FreeBSD shuld remain authenic and must not rush after Linux, as t= he ones who like Linux will use Linux, not BSD. FreeBSD should not copy or be 'like' Linux because it will never be on par with it... Why not to import coreutils in this case? FreeBSD has it's own benefits and should keep 'em. Those who migrate from Linux seek for something else/something new and not another linux with different name. Regards, Sergey. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Oct 27 18:39:12 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 71D23C24AB1 for ; Thu, 27 Oct 2016 18:39:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 60EA6BE1 for ; Thu, 27 Oct 2016 18:39:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9RIdCkp028383 for ; Thu, 27 Oct 2016 18:39:12 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213835] bhyve patch: sent ps/2 scancodes for NumLock, ScrollLock and numerical keypad keys. Date: Thu, 27 Oct 2016 18:39:12 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: ivan.zhmudo@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status keywords bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2016 18:39:12 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213835 Bug ID: 213835 Summary: bhyve patch: sent ps/2 scancodes for NumLock, ScrollLock and numerical keypad keys. Product: Base System Version: CURRENT Hardware: Any OS: Any Status: New Keywords: patch Severity: Affects Some People Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: ivan.zhmudo@gmail.com Keywords: patch Created attachment 176222 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D176222&action= =3Dedit The patch Hello. I've noticed, that bhyve (at least when it works in conjunction with= VNC client) does not understand *lock and keypad keys and prints debug messages like "Unhandled ps2 keyboard keysym". Suggesting a patch which seems to fix= the problem. Also, can you please explain what uint32_t keysym codes are? The first 127 = of them seem to be ASCII codes and translation table contain ASCII->PS/2 set 2 scancode mappings. But why TAB,ESC and some other symbols are coded with leading 0xff? For example, TAB is 0xff09. How keysyms are generated for *lo= ck and Keypad keys? Nevertheless, I wrote the patch using the mentioned debug output. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Oct 27 18:40:57 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B12F3C24B8F for ; Thu, 27 Oct 2016 18:40:57 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A0C3AD9A for ; Thu, 27 Oct 2016 18:40:57 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9RIevxh033930 for ; Thu, 27 Oct 2016 18:40:57 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213835] bhyve patch: send ps/2 scancodes for NumLock, ScrollLock and numerical keypad keys. Date: Thu, 27 Oct 2016 18:40:57 +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: CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: ivan.zhmudo@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2016 18:40:57 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213835 Vasily Postnicov changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|bhyve patch: sent ps/2 |bhyve patch: send ps/2 |scancodes for NumLock, |scancodes for NumLock, |ScrollLock and numerical |ScrollLock and numerical |keypad keys. |keypad keys. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Oct 27 20:53:33 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2C26FC22EFF for ; Thu, 27 Oct 2016 20:53:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 10C9A3B3 for ; Thu, 27 Oct 2016 20:53:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9RKrWGh006078 for ; Thu, 27 Oct 2016 20:53:32 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213835] bhyve patch: send ps/2 scancodes for NumLock, ScrollLock and numerical keypad keys. Date: Thu, 27 Oct 2016 20:53:33 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-virtualization@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2016 20:53:33 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213835 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-virtualization@Free | |BSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Thu Oct 27 21:32:24 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8CC75C24882 for ; Thu, 27 Oct 2016 21:32:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7CA9BF86 for ; Thu, 27 Oct 2016 21:32:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9RLWOam033561 for ; Thu, 27 Oct 2016 21:32:24 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 212020] Add powerd(8) support for newer AMD CPUs Date: Thu, 27 Oct 2016 21:32:24 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Oct 2016 21:32:24 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212020 --- Comment #1 from commit-hook@freebsd.org --- A commit references this bug: Author: jhb Date: Thu Oct 27 21:31:57 UTC 2016 New revision: 308005 URL: https://svnweb.freebsd.org/changeset/base/308005 Log: Add powerd(8) support for several families of AMD CPUs. Use the same logic to calculate the nominal CPU frequency from the P-state MSRs on family 0x12, 0x15, and 0x16 CPUs as is used for family 0x10. Family 0x14 was included in the original patch in the PR but I left that out as the BIOS writer's guide for family 0x14 CPUs show a different layo= ut for the relevant MSR and include a different formulate for calculating the frequency. While here, simplify a few expressions and print out the family of unsupported CPUs in hex rather than decimal. PR: 212020 Submitted by: Anthony Jenkins MFC after: 1 month Differential Revision: https://reviews.freebsd.org/D7587 Changes: head/sys/x86/cpufreq/hwpstate.c --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Oct 28 00:46:17 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E1D78C222CE for ; Fri, 28 Oct 2016 00:46:17 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B79E57BD for ; Fri, 28 Oct 2016 00:46:17 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9S0kHP5023024 for ; Fri, 28 Oct 2016 00:46:17 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 212258] bootpool is not imported after reboot on a MBR partitioned drive Date: Fri, 28 Oct 2016 00:46:17 +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-RC1 X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: sschwarz@walmartlabs.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2016 00:46:18 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D212258 sschwarz@walmartlabs.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |sschwarz@walmartlabs.com --- Comment #5 from sschwarz@walmartlabs.com --- Likewise, a basic guided install of 11 on MBR root+ZFS yields an exported bootpool: # uname -a FreeBSD 11.0-RELEASE-p1 FreeBSD 11.0-RELEASE-p1 #0 r306420: Thu Sep 29 01:4= 3:23 UTC 2016 root@releng2.nyi.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd= 64 root@xxxxxxx:~ # zpool status pool: zroot state: ONLINE scan: none requested config: NAME STATE READ WRITE CKSUM zroot ONLINE 0 0 0 mirror-0 ONLINE 0 0 0 da4s1d ONLINE 0 0 0 da5s1d ONLINE 0 0 0 da6s1d ONLINE 0 0 0 da7s1d ONLINE 0 0 0 errors: No known data errors root@xxxxxxx:~ # zpool import pool: bootpool id: 1792675910293467778 state: ONLINE action: The pool can be imported using its name or numeric identifier. config: bootpool ONLINE mirror-0 ONLINE da4s1a ONLINE da5s1a ONLINE da6s1a ONLINE da7s1a ONLINE root@xxxxxxx:~ # ls -l /boot lrwxr-xr-x 1 root wheel 13 Sep 28 18:47 /boot -> bootpool/boot root@xxxxxxx:~ # ls -l /bootpool/ total 0 root@xxxxxxx:~ # --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Oct 28 06:13:43 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CCCE7C2477E; Fri, 28 Oct 2016 06:13:43 +0000 (UTC) (envelope-from fidaj@ukr.net) Received: from frv157.fwdcdn.com (frv157.fwdcdn.com [212.42.77.157]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8A3C7AD2; Fri, 28 Oct 2016 06:13:43 +0000 (UTC) (envelope-from fidaj@ukr.net) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=ukr.net; s=fsm; h=Content-Transfer-Encoding:Content-Type:MIME-Version:References: In-Reply-To:Message-ID:Subject:To:From:Date:Sender:Reply-To:Cc:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=hd350epCUzOtc1vmnliJ4s+rPf9f4pSABLxIhTv9FdE=; b=F5nlg9UfURJKE2jlDOwMGWnQid GxwpD/xzE2UII2lzl5udO9S3dLchHDuBp6jUFUboIlB4QOFK5S84XuOoX01e3Y7y5z7ALg5XlOFED ZzkUqf5K4aqBdGb6sjtWbRTFg4OX306LTjqIEacM0+IBE90h4F2ygOttS8nCj4nBGRtc=; Received: from [37.229.193.176] (helo=nonamehost) by frv157.fwdcdn.com with esmtpsa ID 1c00Q7-000ES1-V3 ; Fri, 28 Oct 2016 09:13:40 +0300 Date: Fri, 28 Oct 2016 09:13:39 +0300 From: Ivan Klymenko To: freebsd-bugs@freebsd.org, freebsd-stable@freebsd.org Subject: Re: panics collections on FreeBSD 11.0-RC1 RC2 PRERELEASE RELEASE STABLE Message-ID: <20161028091339.0d4b8ffd@nonamehost> In-Reply-To: <20161021220413.1d130f5c@nonamehost> References: <20161021220413.1d130f5c@nonamehost> X-Mailer: Claws Mail 3.13.2 (GTK+ 2.24.30; x86_64-pc-linux-gnu) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAFVBMVEWpqak/Pz/i4uIfHx8GBwZwcHAQEBA6o92AAAACHElEQVQ4jWWUTY7bMAyF6QzUPSEoa8PFHEBgqwuM4bVVg7MvZOj+R+ijpMTpjIwgkT7z75EKrdfattpXERG6zqvUOtAr2LCRYfEKcB4l/Q+2cc6XjQH7hv+2YZYreIk5nevZEPvuzUzptizHLzgDMnC5Wpbl7ewJlOEqlQF+DlCjgVLki0WV6FMDMsBxjlJiQulIznwZ+DxHiQyDyIg0wN3Oo6o6ZQ5s5AIfar+W2Wlmz+kCcb8tg6j3voMEwNrBQk69dDBDqw/urpqJH+m+Q6u/4QnoAeYpnUXC/s1iup9rhCd6xMgAqdDyAyFegbKkVAHeLCcOulPLawaoUIDos4M88iLNrVkU7uu5ccTDO6naJzWLum51C6Yb7y4HKKbdArLWir0PBiS8glJRBZHeyHl7J9lENpAC6qT9NlNG4u5hsVYDyJP6mlJJtY3oVju4WSUzHal1sDU17NASoBWSk40J2eBLBJhYrVmzC5gVALGpNIAiQgN6eGstOp9Oa6zFbbLTISYi28BGZDRUJKWeroECkCEkzXjUtbmmaKMfAx2RfbT69/cO+tgHcmx6AfyZOmj3NDIah0F0GB66d4CrdIoplNFFGHSpSheRxbo0W4S8azNItEoMWbw3uXAeJgCrmX5joz7CGXqSg6PcryEhnFr/C1C2ntPxBOYbdwY+8dO3+wZJyFlbMX9s8zNnvp/tLwAv03NB4j3HVpn8Awwm+GrlP6MVAAAAAElFTkSuQmCC MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Authentication-Result: IP=37.229.193.176; mail.from=fidaj@ukr.net; dkim=pass; header.d=ukr.net X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2016 06:13:43 -0000 Next panic Oct 28 09:06:50 ns kernel: panic: sbsndptr: sockbuf 0xfffff8008f186878 and mbuf 0xfffff8008f29d200 clashing Oct 28 09:06:50 ns kernel: cpuid = 7 Oct 28 09:06:50 ns kernel: KDB: stack backtrace: Oct 28 09:06:50 ns kernel: #0 0xffffffff80b5f0e7 at kdb_backtrace+0x67 Oct 28 09:06:50 ns kernel: #1 0xffffffff80b129c2 at vpanic+0x182 Oct 28 09:06:50 ns kernel: #2 0xffffffff80b12833 at panic+0x43 Oct 28 09:06:50 ns kernel: #3 0xffffffff80bafc4a at sbsndptr+0xda Oct 28 09:06:50 ns kernel: #4 0xffffffff80d57b88 at tcp_output+0x1168 Oct 28 09:06:50 ns kernel: #5 0xffffffff80d540f6 at tcp_do_segment+0x30d6 Oct 28 09:06:50 ns kernel: #6 0xffffffff80d508b6 at tcp_input+0x14a6 Oct 28 09:06:50 ns kernel: #7 0xffffffff80cb54be at ip_input+0x18e Oct 28 09:06:50 ns kernel: #8 0xffffffff80c49add at netisr_dispatch_src+0xad Oct 28 09:06:50 ns kernel: #9 0xffffffff80c3815e at tunwrite+0x2ee Oct 28 09:06:50 ns kernel: #10 0xffffffff809b54e7 at devfs_write_f+0xe7 Oct 28 09:06:50 ns kernel: #11 0xffffffff80b7e227 at dofilewrite+0x87 Oct 28 09:06:50 ns kernel: #12 0xffffffff80b7ddf9 at sys_write+0xd9 Oct 28 09:06:50 ns kernel: #13 0xffffffff8105ac2e at amd64_syscall+0x51e Oct 28 09:06:50 ns kernel: #14 0xffffffff8103bbcb at Xfast_syscall+0xfb Oct 28 09:06:50 ns kernel: Uptime: 21h57m23s Oct 28 09:06:50 ns kernel: Dumping 7609 out of 32688 MB:..1%..11%..21%..31%..41%..51%..61%..71%..81%..91% uname -a FreeBSD ns 11.0-STABLE FreeBSD 11.0-STABLE #7 r307744: Fri Oct 21 21:07:37 EEST 2016 root@ns:/usr/obj/usr/src/sys/bzk11 amd64 All kernels Build with VIMAGE. From owner-freebsd-bugs@freebsd.org Fri Oct 28 08:13:59 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3137AC24686 for ; Fri, 28 Oct 2016 08:13:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 06E621F86 for ; Fri, 28 Oct 2016 08:13:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9S8Dwbh061967 for ; Fri, 28 Oct 2016 08:13:58 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213845] [PATCH] bxe(4) boots with no capabilities enabled Date: Fri, 28 Oct 2016 08:13:58 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-STABLE X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: pherman@frenchfries.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status keywords 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.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2016 08:13:59 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213845 Bug ID: 213845 Summary: [PATCH] bxe(4) boots with no capabilities enabled Product: Base System Version: 11.0-STABLE Hardware: Any OS: Any Status: New Keywords: patch Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: pherman@frenchfries.net Keywords: patch bxe cards boot with no hardware capabilities (i.e. RXCSUM,TXCSUM,VLAN_MTU,VLAN_HWTAGGING,JUMBO_MTU,VLAN_HWCSUM,TSO4...) enable= d. "ifconfig -m bxe0" correctly displays what NIC is capable of, but no options are enabled. This is a problem because, for example, "ifconfig vlanmtu" is not allowed t= o be changed by the driver and consequently all cloned vlan devices end up with = an MTU of 1496 by default. The bug was introduced when the driver was updated= to use if_setcapabilities(). CURRENT is also affected. 10 isn't. Suggested patch against 11.0-STABLE bel= ow. bxe0: tx_ring_size); --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Oct 28 10:23:21 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 45344C23BA1 for ; Fri, 28 Oct 2016 10:23:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 34BA7B90 for ; Fri, 28 Oct 2016 10:23:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9SANK5e026055 for ; Fri, 28 Oct 2016 10:23:21 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 208529] Error setting up SSL_CTX client key and cert and control-enable: no Date: Fri, 28 Oct 2016 10:23:20 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: conf X-Bugzilla-Version: 10.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: pswinslow@wowway.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2016 10:23:21 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D208529 Patrick Winslow changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |pswinslow@wowway.com --- Comment #6 from Patrick Winslow --- Bug still present in 11.0-RELEASE-p2. The patch is five months old. It does no harm. Please apply it. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Oct 28 16:37:01 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B2222C24648 for ; Fri, 28 Oct 2016 16:37:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A11807A9 for ; Fri, 28 Oct 2016 16:37:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9SGb1Tl073568 for ; Fri, 28 Oct 2016 16:37:01 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213858] Vagrant image freebsd/FreeBSD-11.0-RELEASE-p1 missing sudo Date: Fri, 28 Oct 2016 16:37:01 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: jwhulette@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc 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.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2016 16:37:01 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213858 Bug ID: 213858 Summary: Vagrant image freebsd/FreeBSD-11.0-RELEASE-p1 missing sudo Product: Base System Version: CURRENT Hardware: amd64 OS: Any Status: New Severity: Affects Many People Priority: --- Component: misc Assignee: freebsd-bugs@FreeBSD.org Reporter: jwhulette@gmail.com CC: freebsd-amd64@FreeBSD.org CC: freebsd-amd64@FreeBSD.org When bring up the vm, it errors out that sudo is not installed. I can log in using vagrant ssh and su to root. Bringing machine 'freebsd11' up with 'virtualbox' provider... =3D=3D> freebsd11: Importing base box 'freebsd/FreeBSD-11.0-RELEASE-p1'... =3D=3D> freebsd11: Matching MAC address for NAT networking... =3D=3D> freebsd11: Checking if box 'freebsd/FreeBSD-11.0-RELEASE-p1' is up = to date... =3D=3D> freebsd11: Setting the name of the VM: formsmooreandscarrycom_freebsd11_1477670941466_65674 =3D=3D> freebsd11: Clearing any previously set network interfaces... =3D=3D> freebsd11: Preparing network interfaces based on configuration... freebsd11: Adapter 1: nat freebsd11: Adapter 2: hostonly =3D=3D> freebsd11: Forwarding ports... freebsd11: 80 (guest) =3D> 8080 (host) (adapter 1) freebsd11: 22 (guest) =3D> 2222 (host) (adapter 1) =3D=3D> freebsd11: Running 'pre-boot' VM customizations... =3D=3D> freebsd11: Booting VM... =3D=3D> freebsd11: Waiting for machine to boot. This may take a few minutes= ... freebsd11: SSH address: 127.0.0.1:2222 freebsd11: SSH username: vagrant freebsd11: SSH auth method: private key freebsd11: Warning: Remote connection disconnect. Retrying... freebsd11: Warning: Remote connection disconnect. Retrying... freebsd11: Warning: Remote connection disconnect. Retrying... freebsd11: Warning: Remote connection disconnect. Retrying... freebsd11: Warning: Remote connection disconnect. Retrying... freebsd11: Warning: Remote connection disconnect. Retrying... freebsd11: Warning: Remote connection disconnect. Retrying... freebsd11: freebsd11: Vagrant insecure key detected. Vagrant will automatically replace freebsd11: this with a newly generated keypair for better security. freebsd11: freebsd11: Inserting generated public key within guest... freebsd11: Removing insecure key from the guest if it's present... freebsd11: Key inserted! Disconnecting and reconnecting using new SSH key... =3D=3D> freebsd11: Machine booted and ready! Sorry, don't know how to check guest version of Virtualbox Guest Additions = on this platform. Stopping installation. =3D=3D> freebsd11: Checking for guest additions in VM... freebsd11: The guest additions on this VM do not match the installed version of freebsd11: VirtualBox! In most cases this is fine, but in rare cases it= can freebsd11: prevent things such as shared folders from working properly.= If you see freebsd11: shared folder errors, please make sure the guest additions within the freebsd11: virtual machine match the version of VirtualBox you have installed on freebsd11: your host and reload your VM. freebsd11: freebsd11: Guest Additions Version: 4.3.38 freebsd11: VirtualBox Version: 5.1 =3D=3D> freebsd11: Configuring and enabling network interfaces... The following SSH command responded with a non-zero exit status. Vagrant assumes that this means the command failed! ifconfig -a | grep -o ^[0-9a-z]* | grep -v '^lo' Stdout from the command: Stderr from the command: sudo: Command not found. vagrant version Installed Version: 1.8.6 Latest Version: 1.8.6 vboxmanage --version 5.1.8r111374 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Oct 28 16:56:43 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 56B26C250FE for ; Fri, 28 Oct 2016 16:56:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 462D7830 for ; Fri, 28 Oct 2016 16:56:43 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9SGuhm4012175 for ; Fri, 28 Oct 2016 16:56:43 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213858] Vagrant image freebsd/FreeBSD-11.0-RELEASE-p1 missing sudo Date: Fri, 28 Oct 2016 16:56:43 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: jwhulette@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2016 16:56:43 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213858 --- Comment #1 from Wes Hulette --- Not sure if this is related or not, but when I run pkg install sudo after logging in I get the error: pkg: Error fetching http://pkg.FreeBSD.org/FreeBSD:11:amd64/quarterly/Latest/pkg.txz: Connection reset by peer I can install it by: fetch http://pkg.FreeBSD.org/FreeBSD:11:amd64/quarterly/Latest/pkg.txz fetch http://pkg.FreeBSD.org/FreeBSD:11:amd64/quarterly/Latest/pkg.txz.sig pkg add pkg.txz --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Oct 28 17:38:15 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 831DFC25D2E for ; Fri, 28 Oct 2016 17:38:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6A54C7F1 for ; Fri, 28 Oct 2016 17:38:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9SHcFCu038600 for ; Fri, 28 Oct 2016 17:38:15 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213858] Vagrant image freebsd/FreeBSD-11.0-RELEASE-p1 missing sudo Date: Fri, 28 Oct 2016 17:38:15 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: jwhulette@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2016 17:38:15 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213858 --- Comment #2 from Wes Hulette --- I also noticed there is not a vagrant directory in the root. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Oct 28 17:51:12 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5C504C2410A for ; Fri, 28 Oct 2016 17:51:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4BDAEE8E for ; Fri, 28 Oct 2016 17:51:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9SHpBkD065640 for ; Fri, 28 Oct 2016 17:51:12 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 203349] [META] FreeBSD Foundation sponsored project dependencies for FreeBSD 11.0 Date: Fri, 28 Oct 2016 17:51:12 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: dep_changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: Andrew@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2016 17:51:12 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D203349 Bug 203349 depends on bug 204337, which changed state. Bug 204337 Summary: ZFS can have a non-empty directory, but the files don't= exist on arm64. https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D204337 What |Removed |Added ---------------------------------------------------------------------------- Status|New |Closed Resolution|--- |FIXED --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Fri Oct 28 18:18:21 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 859B9C2482C for ; Fri, 28 Oct 2016 18:18:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 51E00EEA for ; Fri, 28 Oct 2016 18:18:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9SIIL3d040573 for ; Fri, 28 Oct 2016 18:18:21 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213859] /dev/pf device busy causes issues in complex systems Date: Fri, 28 Oct 2016 18:18:21 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: jjasen@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc 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.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Oct 2016 18:18:21 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213859 Bug ID: 213859 Summary: /dev/pf device busy causes issues in complex systems Product: Base System Version: 10.0-RELEASE Hardware: amd64 OS: Any Status: New Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: jjasen@gmail.com CC: freebsd-amd64@FreeBSD.org CC: freebsd-amd64@FreeBSD.org Probably filed under pf: I have firewall systems using pf, with ftp_proxy as well. Under certain circumstances, relayd will crash when updating a table if something else (s= uch as ftp_proxy, tftp_proxy, or a local rules edit) has /dev/pf locked. I've seen other cases, where an individual ftp_proxy will also fail, if something else grabbed /dev/pf as well -- and seeing "pfctl: DIOCADDRULE: Device busy " failures when doing manual updates is quite common. relayd logs attached: Oct 28 17:26:15 fw-1/fw-1 relayd[31847]: table devproxy-http: 1 added, 0 deleted, 0 changed, 2 killed=20 Oct 28 17:26:15 fw-1/fw-1 relayd[31847]: fatal: sync_ruleset: cannot add address to pool: Device busy=20 Oct 28 17:26:15 fw-1/fw-1 kernel: Oct 28 17:26:15 pubgw2 relayd[31847]: fat= al: sync_ruleset: cannot add address to pool: Device busy=20 Oct 28 17:26:15 fw-1/fw-1 relayd[31848]: hce exiting, pid 31848 Oct 28 17:26:15 fw-1/fw-1 relayd[31849]: relay exiting, pid 31849 Oct 28 17:26:15 fw-1/fw-1 relayd[31851]: relay exiting, pid 31851 Oct 28 17:26:15 fw-1/fw-1 relayd[31852]: relay exiting, pid 31852 Oct 28 17:26:15 fw-1/fw-1 relayd[31854]: ca exiting, pid 31854 Oct 28 17:26:15 fw-1/fw-1 relayd[31853]: ca exiting, pid 31853 Oct 28 17:26:15 fw-1/fw-1 relayd[31850]: ca exiting, pid 31850 Oct 28 17:26:25 fw-1/fw-1 relayd[31846]: lost child: pfe exited abnormally= =20 Oct 28 17:26:25 fw-1/fw-1 kernel: Oct 28 17:26:25 pubgw2 relayd[31846]: lost child: pfe exited abnormally Oct 28 17:26:25 fw-1/fw-1 relayd[31846]: parent terminating, pid 31846 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Oct 29 00:37:03 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C2442C2498A for ; Sat, 29 Oct 2016 00:37:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B2A4CDC0 for ; Sat, 29 Oct 2016 00:37:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9T0b3QK018650 for ; Sat, 29 Oct 2016 00:37:03 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213869] spdadd src[port] Date: Sat, 29 Oct 2016 00:37:03 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 11.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jasonmader@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc 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.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2016 00:37:03 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213869 Bug ID: 213869 Summary: spdadd src[port] Product: Base System Version: 11.0-STABLE Hardware: amd64 OS: Any Status: New Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: jasonmader@gmail.com CC: freebsd-amd64@FreeBSD.org CC: freebsd-amd64@FreeBSD.org When setting a policy with the src port like this, spdadd -n 2620:10e:6024:a::2[2049] 2620:10e:6026:b::/64[any] tcp -P out ips= ec esp/transport//require; the outbound traffic from 2049/tcp (response to NFSv4 client request) was n= ot encrypted. If I use [any] then it will be. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Oct 29 00:46:39 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 560B3C24C62 for ; Sat, 29 Oct 2016 00:46:39 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3A4131A1 for ; Sat, 29 Oct 2016 00:46:39 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9T0kdZB039459 for ; Sat, 29 Oct 2016 00:46:39 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213870] cc: error: clang frontend command failed with exit code 70 (use -v to see invocation) Date: Sat, 29 Oct 2016 00:46:39 +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.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dp.maxime@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2016 00:46:39 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213870 Bug ID: 213870 Summary: cc: error: clang frontend command failed with exit code 70 (use -v to see invocation) Product: Base System Version: 10.3-RELEASE Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: bin Assignee: freebsd-bugs@FreeBSD.org Reporter: dp.maxime@gmail.com Created attachment 176255 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D176255&action= =3Dedit /tmp/url-25219c.c Making all in . /bin/sh ../libtool --tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -I../include -I./../include -I/usr/local/include -I/usr/local/include -I/usr/local/include -I/usr/local/include/mysql -I/usr/local/includ= e=20 -DHAVE_PTHREAD -pthread -DDPS_CONF_DIR=3D\"/usr/local/dpsearch/etc\" -DDPS_VAR_DIR=3D\"/usr/local/dpsearch/var\" -DDPS_SHARE_DIR=3D\"/usr/local/dpsearch/share\" -g -O3 -march=3Dnative -mtune=3Dnative -I/usr/local/include -mcmodel=3Dmedium -I/usr/local/include= -MT libdpsearch_la-url.lo -MD -MP -MF .deps/libdpsearch_la-url.Tpo -c -o libdpsearch_la-url.lo `test -f 'url.c' || echo './'`url.c libtool: compile: cc -DHAVE_CONFIG_H -I. -I../include -I./../include -I/usr/local/include -I/usr/local/include -I/usr/local/include -I/usr/local/include/mysql -I/usr/local/include -DHAVE_PTHREAD -pthread -DDPS_CONF_DIR=3D\"/usr/local/dpsearch/etc\" -DDPS_VAR_DIR=3D\"/usr/local/dpsearch/var\" -DDPS_SHARE_DIR=3D\"/usr/local/dpsearch/share\" -g -O3 -march=3Dnative -mtune=3Dnative -I/usr/local/include -mcmodel=3Dmedium -I/usr/local/include= -MT libdpsearch_la-url.lo -MD -MP -MF .deps/libdpsearch_la-url.Tpo -c url.c -f= PIC -DPIC -o .libs/libdpsearch_la-url.o libtool: compile: cc -DHAVE_CONFIG_H -I. -I../include -I./../include -I/usr/local/include -I/usr/local/include -I/usr/local/include -I/usr/local/include/mysql -I/usr/local/include -DHAVE_PTHREAD -pthread -DDPS_CONF_DIR=3D\"/usr/local/dpsearch/etc\" -DDPS_VAR_DIR=3D\"/usr/local/dpsearch/var\" -DDPS_SHARE_DIR=3D\"/usr/local/dpsearch/share\" -g -O3 -march=3Dnative -mtune=3Dnative -I/usr/local/include -mcmodel=3Dmedium -I/usr/local/include= -MT libdpsearch_la-url.lo -MD -MP -MF .deps/libdpsearch_la-url.Tpo -c url.c -o libdpsearch_la-url.o fatal error: error in backend: Cannot select: 0x803092810: i64 =3D X86ISD::WrapperRIP 0x803093710 [ORD=3D253] [ID=3D17] dbg:/usr/include/runet= ype.h:96 0x803093710: i64 =3D TargetGlobalTLSAddress<%struct._RuneLocale** @_ThreadRuneLocale> 0 [TF=3D10] [ORD=3D253] [ID=3D12] dbg:/usr/include/rune= type.h:96 In function: DpsURLParse cc: error: clang frontend command failed with exit code 70 (use -v to see invocation) FreeBSD clang version 3.4.1 (tags/RELEASE_34/dot1-final 208032) 20140512 Target: x86_64-unknown-freebsd10.3 Thread model: posix cc: note: diagnostic msg: PLEASE submit a bug report to https://bugs.freebsd.org/submit/ and include the crash backtrace, preproces= sed source, and associated run script. cc: note: diagnostic msg:=20 ******************** PLEASE ATTACH THE FOLLOWING FILES TO THE BUG REPORT: Preprocessed source(s) and associated run script(s) are located at: cc: note: diagnostic msg: /tmp/url-25219c.c cc: note: diagnostic msg: /tmp/url-25219c.sh cc: note: diagnostic msg:=20 ******************** *** Error code 1 Stop. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Oct 29 00:47:27 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AE9A4C24CB3 for ; Sat, 29 Oct 2016 00:47:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9DE481FF for ; Sat, 29 Oct 2016 00:47:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9T0lRbM040372 for ; Sat, 29 Oct 2016 00:47:27 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213870] cc: error: clang frontend command failed with exit code 70 (use -v to see invocation) Date: Sat, 29 Oct 2016 00:47:27 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 10.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dp.maxime@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2016 00:47:27 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213870 --- Comment #1 from dp.maxime@gmail.com --- Created attachment 176256 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D176256&action= =3Dedit /tmp/url-25219c.sh --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Oct 29 03:12:30 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 18A01C26B9A for ; Sat, 29 Oct 2016 03:12:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 07BCD2D9 for ; Sat, 29 Oct 2016 03:12:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9T3CTwx015127 for ; Sat, 29 Oct 2016 03:12:29 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213871] vmx, netgraph, mpd5-5.8: Fatal trap 12: page fault while... supervisor write data, page not present (11.0-RELEASE-p2) Date: Sat, 29 Oct 2016 03:12:28 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: bugs-freebsd-org@bekreyev.ru X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc 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.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2016 03:12:30 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213871 Bug ID: 213871 Summary: vmx, netgraph, mpd5-5.8: Fatal trap 12: page fault while... supervisor write data, page not present (11.0-RELEASE-p2) Product: Base System Version: 11.0-STABLE Hardware: amd64 OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: bugs-freebsd-org@bekreyev.ru CC: freebsd-amd64@FreeBSD.org CC: freebsd-amd64@FreeBSD.org Using FreeBSD 11.0-RELEASE-p2 as BRAS with mpd5-5.8 at VMware ESXi (HPE-ESXi-6.0.0-Update2-iso-600.9.5.0.48: $ freebsd-version -uk 11.0-RELEASE-p2 11.0-RELEASE-p2 Oct 28 12:12:49 BRAS3 syslogd: kernel boot file is /boot/kernel/kernel Oct 28 12:12:49 BRAS3 kernel: Oct 28 12:12:49 BRAS3 kernel: Oct 28 12:12:49 BRAS3 kernel: Fatal trap 12: page fault while in kernel mode Oct 28 12:12:49 BRAS3 kernel: cpuid =3D 1; apic id =3D 01 Oct 28 12:12:49 BRAS3 kernel: fault virtual address =3D 0x48 Oct 28 12:12:49 BRAS3 kernel: fault code =3D supervisor write data, page not present Oct 28 12:12:49 BRAS3 kernel: instruction pointer =3D 0x20:0xffffffff8265d4ab Oct 28 12:12:49 BRAS3 kernel: stack pointer =3D 0x28:0xfffffe011afc7690 Oct 28 12:12:49 BRAS3 kernel: frame pointer =3D 0x28:0xfffffe011afc76d0 Oct 28 12:12:49 BRAS3 kernel: code segment =3D base 0x0, limit 0xfffff, type 0x1b Oct 28 12:12:49 BRAS3 kernel: =3D DPL 0, pres 1, long 1, def32 0, gran 1 Oct 28 12:12:49 BRAS3 kernel: processor eflags =3D interrupt enabled, resu= me, IOPL =3D 0 Oct 28 12:12:49 BRAS3 kernel: current process =3D 12 (irq266: vmx= 1) Oct 28 12:12:49 BRAS3 kernel: trap number =3D 12 Oct 28 12:12:49 BRAS3 kernel: panic: page fault Oct 28 12:12:49 BRAS3 kernel: cpuid =3D 1 Oct 28 12:12:49 BRAS3 kernel: KDB: stack backtrace: Oct 28 12:12:49 BRAS3 kernel: #0 0xffffffff80b24077 at kdb_backtrace+0x67 Oct 28 12:12:49 BRAS3 kernel: #1 0xffffffff80ad93e2 at vpanic+0x182 Oct 28 12:12:49 BRAS3 kernel: #2 0xffffffff80ad9253 at panic+0x43 Oct 28 12:12:49 BRAS3 kernel: #3 0xffffffff80fa0d31 at trap_fatal+0x351 Oct 28 12:12:49 BRAS3 kernel: #4 0xffffffff80fa0f23 at trap_pfault+0x1e3 Oct 28 12:12:49 BRAS3 kernel: #5 0xffffffff80fa04cc at trap+0x26c Oct 28 12:12:49 BRAS3 kernel: #6 0xffffffff80f84141 at calltrap+0x8 Oct 28 12:12:49 BRAS3 kernel: #7 0xffffffff8263752e at ng_apply_item+0x14e Oct 28 12:12:49 BRAS3 kernel: #8 0xffffffff826371a3 at ng_snd_item+0x383 Oct 28 12:12:49 BRAS3 kernel: #9 0xffffffff82652c50 at ng_iface_send+0xc0 Oct 28 12:12:49 BRAS3 kernel: #10 0xffffffff826527ce at ng_iface_output+0x1= 2e Oct 28 12:12:49 BRAS3 kernel: #11 0xffffffff80c5d2ba at ip_tryforward+0x6ba Oct 28 12:12:49 BRAS3 kernel: #12 0xffffffff80c5f475 at ip_input+0x355 Oct 28 12:12:49 BRAS3 kernel: #13 0xffffffff80bfa095 at netisr_dispatch_src+0xa5 Oct 28 12:12:49 BRAS3 kernel: #14 0xffffffff80be2afa at ether_demux+0x12a Oct 28 12:12:49 BRAS3 kernel: #15 0xffffffff80be3752 at ether_nh_input+0x322 Oct 28 12:12:49 BRAS3 kernel: #16 0xffffffff80bfa095 at netisr_dispatch_src+0xa5 Oct 28 12:12:49 BRAS3 kernel: #17 0xffffffff80be2d76 at ether_input+0x26 PS: bugzilla don't have FreeBSD 11.0-RELEASE version. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Oct 29 03:20:11 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0DF0AC26C9C for ; Sat, 29 Oct 2016 03:20:11 +0000 (UTC) (envelope-from bounce-md_30008215.581411dd.v1-7d1e96890e4746f4a913dc8d4f3f25d4@mandrillapp.com) Received: from mail133-15.atl131.mandrillapp.com (mail133-15.atl131.mandrillapp.com [198.2.133.15]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C37A361C for ; Sat, 29 Oct 2016 03:20:10 +0000 (UTC) (envelope-from bounce-md_30008215.581411dd.v1-7d1e96890e4746f4a913dc8d4f3f25d4@mandrillapp.com) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=mandrill; d=estheticnet.com; h=From:Subject:To:List-Unsubscribe:Message-Id:Date:MIME-Version:Content-Type; i=dermotherap@estheticnet.com; bh=3vRzEUgl7YOXbL84NNVjK5l0lMg=; b=VBcm7BeWoK1+LZTDhmF3JsT0qoaDPKUgDfGCA4rX/NIP4DUH4vuSjxobNLCsp+jNJxT+us6mHSy5 9lGR6+bRYK+pUAjEXFSTVCHZNRqMoR38dQixI+sdy1fU46d+BCAojrRmXinkGrunN3xY39kf+UW2 AMCpVTwMacU/AelHhzA= Received: from pmta02.mandrill.prod.atl01.rsglab.com (127.0.0.1) by mail133-15.atl131.mandrillapp.com id h2gamk1sar8f for ; Sat, 29 Oct 2016 03:05:01 +0000 (envelope-from ) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mandrillapp.com; i=@mandrillapp.com; q=dns/txt; s=mandrill; t=1477710301; h=From : Subject : To : List-Unsubscribe : Message-Id : Date : MIME-Version : Content-Type : From : Subject : Date : X-Mandrill-User : List-Unsubscribe; bh=44elP3DmC8TRgr2hhIV28xX1GsOPkniYigj2t74MGmY=; b=Ik5I/8s4FjTUrnlBYBY3V0hz37xE15JhZZZ3/Avs/p2E3l1B0btM970CGqhUuXwsFGcyTc N8NJvj62mPI4oN4L2RPws3nUTzBeJx51pqA/I+pWO0d+43u6W4NKgcltETiu6AqMdkmJh290 tqTN7oAyE46bx0AT7p3uAEnWCPzy8= From: Dermotherap Subject: Mesotherapy Gun [Distribution Opportunity] Received: from [199.175.50.206] by mandrillapp.com id 7d1e96890e4746f4a913dc8d4f3f25d4; Sat, 29 Oct 2016 03:05:01 +0000 X-Mid: ZnJlZWJzZC1idWdzQGZyZWVic2Qub3JnICwgYzEyNyAsIG0yMzkgLCBzMTI1 X-Mailer: ACEM X-Sender: To: Message-Id: <20161027210039.12016.1291953236.swift@agsee.com> X-Report-Abuse: Please forward a copy of this message, including all headers, to abuse@mandrill.com X-Report-Abuse: You can also report abuse here: http://mandrillapp.com/contact/abuse?id=30008215.7d1e96890e4746f4a913dc8d4f3f25d4 X-Mandrill-User: md_30008215 Date: Sat, 29 Oct 2016 03:05:01 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2016 03:20:11 -0000 More information. Click here! (http://agsee.com/lt.php?c=3D127&m=3D239&nl=3D54&s=3D336e8734de899c5a8d14a9= 6f7e2515bf&lid=3D498&l=3D-http--estheticnet.com/dest/dermotherap-mesotherap= y-gun-distribution-europe/) =C2=A0 Pulsa aqu=C3=AD para desuscribirte (http://agsee.com/proc.php?nl=3D54&c=3D1= 27&m=3D239&s=3D336e8734de899c5a8d14a96f7e2515bf&act=3Dunsub) From owner-freebsd-bugs@freebsd.org Sat Oct 29 09:49:05 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 026C9C2595D for ; Sat, 29 Oct 2016 09:49:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E5DE09D6 for ; Sat, 29 Oct 2016 09:49:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9T9n4Z6057272 for ; Sat, 29 Oct 2016 09:49:04 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213876] 3ware tws driver: TWS_MAX_NUM_LUNS wrong value Date: Sat, 29 Oct 2016 09:49:05 +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.3-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: J.Catrysse@proximedia.be X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2016 09:49:05 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213876 Bug ID: 213876 Summary: 3ware tws driver: TWS_MAX_NUM_LUNS wrong value Product: Base System Version: 10.3-RELEASE Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: J.Catrysse@proximedia.be 3ware tws driver has TWS_MAX_NUM_LUNS set to 16 but this is not enough. I t= hink the maximum LUN's should be 255. I have the issue on my 3ware 9750-8i controller with a RAID array spanned i= nto 21 volumes. Only volume the first 16 volumes are detected. CAMCONTROL DEVLIST at scbus0 target 0 lun 0 (pass0,da0) at scbus0 target 0 lun 1 (pass1,da1) at scbus0 target 0 lun 2 (pass2,da2) at scbus0 target 0 lun 3 (pass3,da3) at scbus0 target 0 lun 4 (pass4,da4) at scbus0 target 0 lun 5 (pass5,da5) at scbus0 target 0 lun 6 (pass6,da6) at scbus0 target 0 lun 7 (pass7,da7) at scbus0 target 0 lun 8 (pass8,da8) at scbus0 target 0 lun 9 (pass9,da9) at scbus0 target 0 lun a (pass10,da10) at scbus0 target 0 lun b (pass11,da11) at scbus0 target 0 lun c (pass12,da12) at scbus0 target 0 lun d (pass13,da13) at scbus0 target 0 lun e (pass14,da14) at scbus0 target 0 lun f (pass15,da15) DMESG (probe0:tws0:0:0:10): INQUIRY. CDB: 12 00 00 00 24 00 (probe0:tws0:0:0:10): CAM status: Invalid Lun (probe0:tws0:0:0:10): Error 22, Unretryable error (probe0:tws0:0:0:11): INQUIRY. CDB: 12 00 00 00 24 00 (probe0:tws0:0:0:11): CAM status: Invalid Lun (probe0:tws0:0:0:11): Error 22, Unretryable error (probe0:tws0:0:0:12): INQUIRY. CDB: 12 00 00 00 24 00 (probe0:tws0:0:0:12): CAM status: Invalid Lun (probe0:tws0:0:0:12): Error 22, Unretryable error (probe0:tws0:0:0:13): INQUIRY. CDB: 12 00 00 00 24 00 (probe0:tws0:0:0:13): CAM status: Invalid Lun (probe0:tws0:0:0:13): Error 22, Unretryable error (probe0:tws0:0:0:14): INQUIRY. CDB: 12 00 00 00 24 00 (probe0:tws0:0:0:14): CAM status: Invalid Lun (probe0:tws0:0:0:14): Error 22, Unretryable error In tws(4) driver sources I see: if (ccb_h->target_lun >=3D TWS_MAX_NUM_LUNS) { ... ccb_h->status |=3D CAM_LUN_INVALID; } Where TWS_MAX_NUM_LUNS is 16. So it is clear why it does not work. The only question is whether a higher value could provoke issues on other controller= s. I changed the value to 32 (to be safe) and it works like a charm. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Oct 29 13:48:23 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 85091C26E3E for ; Sat, 29 Oct 2016 13:48:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 73210867 for ; Sat, 29 Oct 2016 13:48:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9TDmNtj007095 for ; Sat, 29 Oct 2016 13:48:23 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 200592] panic: solaris assert: zilog_is_dirty(zilog) || spa_freeze_txg(zilog->zl_spa) != UINT64_MAX, file: /release/usr/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zil.c, line: 1060 Date: Sat, 29 Oct 2016 13:48:23 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: avg@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2016 13:48:23 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D200592 Andriy Gapon changed: What |Removed |Added ---------------------------------------------------------------------------- Status|New |Open --- Comment #3 from Andriy Gapon --- It seems that this illumos issue is related to this bug: https://www.illumos.org/issues/3821 There is a pull request here: https://github.com/openzfs/openzfs/pull/208 So, if anyone is able to reproduce the problem or runs into it from time to time, then it would be nice to test the change. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Oct 29 13:48:45 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C448EC26E8A for ; Sat, 29 Oct 2016 13:48:45 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B2C5E8CF for ; Sat, 29 Oct 2016 13:48:45 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9TDmj3V007597 for ; Sat, 29 Oct 2016 13:48:45 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 200592] panic: solaris assert: zilog_is_dirty(zilog) || spa_freeze_txg(zilog->zl_spa) != UINT64_MAX, file: /release/usr/src/sys/modules/zfs/../../cddl/contrib/opensolaris/uts/common/fs/zfs/zil.c, line: 1060 Date: Sat, 29 Oct 2016 13:48:45 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: avg@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-fs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2016 13:48:45 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D200592 Andriy Gapon changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-bugs@FreeBSD.org |freebsd-fs@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Oct 29 16:17:37 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D8F6DC2652B for ; Sat, 29 Oct 2016 16:17:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C8B53813 for ; Sat, 29 Oct 2016 16:17:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9TGHbAv049107 for ; Sat, 29 Oct 2016 16:17:37 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213858] Vagrant image freebsd/FreeBSD-11.0-RELEASE-p1 missing sudo Date: Sat, 29 Oct 2016 16:17:37 +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: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: jwhulette@gmail.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2016 16:17:37 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213858 --- Comment #3 from Wes Hulette --- The same vagrant file works fine with vboxmanage --version 5.1.6r110634 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-bugs@freebsd.org Sat Oct 29 20:00:42 2016 Return-Path: Delivered-To: freebsd-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EE3CCC25141 for ; Sat, 29 Oct 2016 20:00:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D260AF64 for ; Sat, 29 Oct 2016 20:00:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u9TK0gVj072786 for ; Sat, 29 Oct 2016 20:00:42 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 213896] when starting vimage jails the kernel crashes Date: Sat, 29 Oct 2016 20:00:42 +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-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: nospam@ofloo.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Oct 2016 20:00:43 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D213896 Bug ID: 213896 Summary: when starting vimage jails the kernel crashes Product: Base System Version: 11.0-RELEASE Hardware: amd64 OS: Any Status: New Severity: Affects Only Me Priority: --- Component: kern Assignee: freebsd-bugs@FreeBSD.org Reporter: nospam@ofloo.net CC: freebsd-amd64@FreeBSD.org CC: freebsd-amd64@FreeBSD.org Created attachment 176290 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D176290&action= =3Dedit screenshot of the crash Upgraded from FreeBSD 10.3-RELEASE-p10 to FreeBSD 11-RELEASE-p2 used generic configuration file with options below: options IPFIREWALL options IPFIREWALL_VERBOSE options IPFIREWALL_DEFAULT_TO_ACCEPT options DUMMYNET options IPDIVERT options CONSPEED=3D115200 options HZ=3D1000 options VIMAGE the installkernel ended with --- afterinstall --- kldxref /boot/kernel kldxref: unknown metadata record 4 in file atacard.ko kldxref: unknown metadata record 4 in file atp.ko kldxref: unknown metadata record 4 in file atp.ko kldxref: unknown metadata record 4 in file cmx.ko kldxref: unknown metadata record 4 in file fdc.ko kldxref: unknown metadata record 4 in file if_an.ko kldxref: unknown metadata record 4 in file if_aue.ko kldxref: unknown metadata record 4 in file if_axe.ko kldxref: unknown metadata record 4 in file if_axge.ko kldxref: unknown metadata record 4 in file if_cdce.ko kldxref: unknown metadata record 4 in file if_cdce.ko kldxref: unknown metadata record 4 in file if_cdce.ko kldxref: unknown metadata record 4 in file if_cs.ko kldxref: unknown metadata record 4 in file if_cue.ko kldxref: unknown metadata record 4 in file if_ed.ko kldxref: unknown metadata record 4 in file if_ed.ko kldxref: unknown metadata record 4 in file if_ed.ko kldxref: unknown metadata record 4 in file if_ep.ko kldxref: unknown metadata record 4 in file if_fe.ko kldxref: unknown metadata record 4 in file if_ipheth.ko kldxref: unknown metadata record 4 in file if_kue.ko kldxref: unknown metadata record 4 in file if_mos.ko kldxref: unknown metadata record 4 in file if_rsu.ko kldxref: unknown metadata record 4 in file if_rue.ko kldxref: unknown metadata record 4 in file if_rum.ko kldxref: unknown metadata record 4 in file if_run.ko kldxref: unknown metadata record 4 in file if_smsc.ko kldxref: unknown metadata record 4 in file if_sn.ko kldxref: unknown metadata record 4 in file if_uath.ko kldxref: unknown metadata record 4 in file if_udav.ko kldxref: unknown metadata record 4 in file if_upgt.ko kldxref: unknown metadata record 4 in file if_ural.ko kldxref: unknown metadata record 4 in file if_urndis.ko kldxref: unknown metadata record 4 in file if_urtw.ko kldxref: unknown metadata record 4 in file if_urtwn.ko kldxref: unknown metadata record 4 in file if_wi.ko kldxref: unknown metadata record 4 in file if_xe.ko kldxref: unknown metadata record 4 in file if_zyd.ko kldxref: unknown metadata record 4 in file kernel kldxref: unknown metadata record 4 in file kernel kldxref: unknown metadata record 4 in file kernel kldxref: unknown metadata record 4 in file kernel kldxref: unknown metadata record 4 in file kernel kldxref: unknown metadata record 4 in file kernel kldxref: unknown metadata record 4 in file kernel kldxref: unknown metadata record 4 in file kernel kldxref: unknown metadata record 4 in file ng_bt3c.ko kldxref: unknown metadata record 4 in file ng_ubt.ko kldxref: unknown metadata record 4 in file snd_uaudio.ko kldxref: unknown metadata record 4 in file u3g.ko kldxref: unknown metadata record 4 in file uark.ko kldxref: unknown metadata record 4 in file uart.ko kldxref: unknown metadata record 4 in file ubsa.ko kldxref: unknown metadata record 4 in file ubtbcmfw.ko kldxref: unknown metadata record 4 in file uchcom.ko kldxref: unknown metadata record 4 in file ucycom.ko kldxref: unknown metadata record 4 in file udbp.ko kldxref: unknown metadata record 4 in file uep.ko kldxref: unknown metadata record 4 in file ufm.ko kldxref: unknown metadata record 4 in file ufoma.ko kldxref: unknown metadata record 4 in file uftdi.ko kldxref: unknown metadata record 4 in file ugensa.ko kldxref: unknown metadata record 4 in file ugold.ko kldxref: unknown metadata record 4 in file uhid.ko kldxref: unknown metadata record 4 in file uhso.ko kldxref: unknown metadata record 4 in file uipaq.ko kldxref: unknown metadata record 4 in file ukbd.ko kldxref: unknown metadata record 4 in file uled.ko kldxref: unknown metadata record 4 in file ulpt.ko kldxref: unknown metadata record 4 in file umass.ko kldxref: unknown metadata record 4 in file umcs.ko kldxref: unknown metadata record 4 in file umct.ko kldxref: unknown metadata record 4 in file umodem.ko kldxref: unknown metadata record 4 in file umodem.ko kldxref: unknown metadata record 4 in file umoscom.ko kldxref: unknown metadata record 4 in file ums.ko kldxref: unknown metadata record 4 in file uplcom.ko kldxref: unknown metadata record 4 in file urio.ko kldxref: unknown metadata record 4 in file usie.ko kldxref: unknown metadata record 4 in file uslcom.ko kldxref: unknown metadata record 4 in file uvisor.ko kldxref: unknown metadata record 4 in file uvscom.ko kldxref: unknown metadata record 4 in file wsp.ko --=20 You are receiving this mail because: You are the assignee for the bug.=