From owner-freebsd-current@freebsd.org Mon Sep 28 03:06:14 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 686349CF088 for ; Mon, 28 Sep 2015 03:06:14 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 59F6D168; Mon, 28 Sep 2015 03:06:14 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 773CE1E7B; Mon, 28 Sep 2015 03:06:08 +0000 (UTC) Date: Mon, 28 Sep 2015 03:05:38 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: adrian@FreeBSD.org, allanjude@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <681281407.77.1443409565098.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_amd64_gcc4.9 - Build #562 - Failure MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_amd64_gcc4.9 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Sep 2015 03:06:14 -0000 FreeBSD_HEAD_amd64_gcc4.9 - Build #562 - Failure: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.= 9/562/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.9/= 562/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.9/5= 62/console Change summaries: 288320 by adrian: include opt_wlan.h . Tsk adrian. 288319 by adrian: if_otus fixes; add fast-frames support. Fast-frames: * include opt_wlan.h ; tsk to not doing it earlier; * add a tx pending tracking counter for seeing how deep the hardware TX queue is; * add the frame aging code from if_ath; * add fast-frames capability to the driver setup. Bugs: * free the buffers (and node references) before detaching net80211 state. This prevents a use-after-free in the node free path where we've destroyed net80211 underneath it. 288318 by adrian: Migrate the fast-frames transmit support away from using the txa_private field and into a separate fast-frames staging pointer in ieee80211_node. The A-MPDU TX path allows txa_private to be used by drivers. So it will clash with any attempt to use fast-frames. Now, fast-frames is not really anything special - it's just a custom ethernet frame type that contains two MSDUs into one MPDU. So all the NIC has to support doing is transmitti= ng up to a 4KiB frame with an arbitrary ethertype and bam! Fast-frames. However, using txa_private means we can /either/ do fast-frames or A-MPDU T= X, so fast frames has been turned off in the Atheros HAL for 11n chipsets. This is a bit silly - it actually means that 802.11 performance to/from 11abg Atheros chips is actually better than between an 11abg atheros device and an 11n Atheros device. So: * create a new mbuf staging queue for fast frames. It only queues a single frame in the staging queue (and there's a top-level ic staging queue used for expiry/tracking) so it's just an mbuf pointer per TID. * Still use the ampdu TX packet counter to determine whether to do aggregation or not. It'll double count if we start doing both A-MPDU TX and fast frames, but that's not all that important right now. * Initialise the pps tracker so ticks isn't zero. This ensures that fast-frames actually gets used - without it, the ticks math overflows and the pps math always sets txa_pps=3D0. This is the same bug that plagued A-MPDU TX starting logic. This actually allows fast-frames transmit to occur between the AR9331 (in 11n HT/20 mode) and AR9170 (if_otus) in 11bg mode. Now, this is a great big no-op on atheros 11n hardware, so don't worry. It may mean you start seeing more reliable fast-frames transmission on 11abg hardware which may expose some more amusing bugs. TODO: * further testing and debugging of all of this before flipping on fast-frames in if_ath (for 11n) and if_otus. 288317 by adrian: Comments, mostly to remind myself of what's going on and why. 288315 by adrian: Abstract out the ampdu TX pps initialisation code so it can be reused in the superg fast-frames code. This harks back to an earlier commit (r280349) where I found that initialising the pps code with ticks=3D0 would cause hilariously bad hz ticks wraparound failures, leading to never actually aggregating traffic. This is still true for the superg path and so I have to do the same thing there. This is a big no-op; a subsequent commit will flip this on so it works with the fast-frames transmit path. Tested: * AR9170, otus(4) - STA mode, 11bg operation * AR9331, AP mode 288313 by allanjude: Fix whitespace error in ls(1) detected by igor Approved by:=09bcr (mentor) Sponsored by:=09EuroBSDCon DevSummit 288312 by allanjude: Use one fewer made up words in the ls(1) man page PR:=09=09203337 Submitted by:=09Mike Dame Approved by:=09bcr (mentor) Sponsored by:=09EuroBSDCon DevSummit The end of the build log: [...truncated 175682 lines...] /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:779:34: required from 'std::__1::basic_ostring= stream<_CharT, _Traits, _Allocator>::basic_ostringstream(std::__1::ios_base= ::openmode) [with _CharT =3D char; _Traits =3D std::__1::char_traits;= _Allocator =3D std::__1::allocator; std::__1::ios_base::openmode =3D= unsigned int]' /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/detail/env_test.cpp:4= 1:5: required from here /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:1435:30: warning: enumeral and non-enumeral type = in conditional expression {return (__is_long() ? __get_long_cap() : __min_cap) - 1;} ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string: In instantiation of 'static std::__1::basic_stri= ng<_CharT, _Traits, _Allocator>::size_type std::__1::basic_string<_CharT, _= Traits, _Allocator>::__recommend(std::__1::basic_string<_CharT, _Traits, _A= llocator>::size_type) [with _CharT =3D char; _Traits =3D std::__1::char_tra= its; _Allocator =3D std::__1::allocator; std::__1::basic_string= <_CharT, _Traits, _Allocator>::size_type =3D long unsigned int]': /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:2212:43: required from 'typename std::__1::enab= le_if::value, void>::type s= td::__1::basic_string<_CharT, _Traits, _Allocator>::__init(_ForwardIterator= , _ForwardIterator) [with _ForwardIterator =3D char*; _CharT =3D char; _Tra= its =3D std::__1::char_traits; _Allocator =3D std::__1::allocator; typename std::__1::enable_if::value, void>::type =3D void]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:2241:27: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator>::basic_string(_InputIterator, _InputIterator, = const allocator_type&) [with _InputIterator =3D char*; _CharT =3D char; _Tr= aits =3D std::__1::char_traits; _Allocator =3D std::__1::allocator; std::__1::basic_string<_CharT, _Traits, _Allocator>::allocator_type = =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:444:72: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator> std::__1::basic_stringbuf<_CharT, _Traits, _Al= locator>::str() const [with _CharT =3D char; _Traits =3D std::__1::char_tra= its; _Allocator =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:845:22: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator> std::__1::basic_ostringstream<_CharT, _Traits,= _Allocator>::str() const [with _CharT =3D char; _Traits =3D std::__1::char= _traits; _Allocator =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/detail/env_test.cpp:4= 1:5: required from here /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:1775:34: warning: enumeral and non-enumeral type = in conditional expression {return (__s < __min_cap ? __min_cap : ^ --- usr.sbin.all__D --- --- atm_sys.So --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -fpic -DPIC -O2 -pipe -I/= builds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin/bsnmpd/modules/snmp_atm/../../../= ../contrib/ngatm/snmp_atm -I. -std=3Dgnu99 -fstack-protector -Wsystem-heade= rs -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmis= sing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -= Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline= -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sig= n -c /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin/bsnmpd/modules/snmp_atm/a= tm_sys.c -o atm_sys.So --- lib.all__D --- /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string: In instantiation of 'static std::__1::basic_stri= ng<_CharT, _Traits, _Allocator>::size_type std::__1::basic_string<_CharT, _= Traits, _Allocator>::__align_it(std::__1::basic_string<_CharT, _Traits, _Al= locator>::size_type) [with typename std::__1::basic_string<_CharT, _Traits,= _Allocator>::__alloc_traits::size_type __a =3D 16ul; _CharT =3D char; _Tra= its =3D std::__1::char_traits; _Allocator =3D std::__1::allocator; std::__1::basic_string<_CharT, _Traits, _Allocator>::size_type =3D long= unsigned int]': /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:1776:28: required from 'static std::__1::basic_= string<_CharT, _Traits, _Allocator>::size_type std::__1::basic_string<_Char= T, _Traits, _Allocator>::__recommend(std::__1::basic_string<_CharT, _Traits= , _Allocator>::size_type) [with _CharT =3D char; _Traits =3D std::__1::char= _traits; _Allocator =3D std::__1::allocator; std::__1::basic_st= ring<_CharT, _Traits, _Allocator>::size_type =3D long unsigned int]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:2212:43: required from 'typename std::__1::enab= le_if::value, void>::type s= td::__1::basic_string<_CharT, _Traits, _Allocator>::__init(_ForwardIterator= , _ForwardIterator) [with _ForwardIterator =3D char*; _CharT =3D char; _Tra= its =3D std::__1::char_traits; _Allocator =3D std::__1::allocator; typename std::__1::enable_if::value, void>::type =3D void]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:2241:27: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator>::basic_string(_InputIterator, _InputIterator, = const allocator_type&) [with _InputIterator =3D char*; _CharT =3D char; _Tr= aits =3D std::__1::char_traits; _Allocator =3D std::__1::allocator; std::__1::basic_string<_CharT, _Traits, _Allocator>::allocator_type = =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:444:72: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator> std::__1::basic_stringbuf<_CharT, _Traits, _Al= locator>::str() const [with _CharT =3D char; _Traits =3D std::__1::char_tra= its; _Allocator =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:845:22: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator> std::__1::basic_ostringstream<_CharT, _Traits,= _Allocator>::str() const [with _CharT =3D char; _Traits =3D std::__1::char= _traits; _Allocator =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/detail/env_test.cpp:4= 1:5: required from here /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:1771:35: warning: suggest parentheses around '+' = in operand of '&' [-Wparentheses] {return __s + (__a-1) & ~(__a-1);} ^ --- application_test --- In file included from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/__mutex_base:16:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/mutex:176, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/__locale:18, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/ios:216, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/iostream:38, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.hpp:33, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.cpp:26: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/system_error:345:1: warning: type attributes ignored aft= er type is already defined [-Wattributes] }; ^ In file included from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/mutex:176:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/__locale:18, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/ios:216, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/iostream:38, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.hpp:33, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.cpp:26: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/__mutex_base:264:1: warning: type attributes ignored aft= er type is already defined [-Wattributes] }; ^ --- usr.sbin.all__D --- --- atm_tree.So --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -fpic -DPIC -O2 -pipe -I/= builds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin/bsnmpd/modules/snmp_atm/../../../= ../contrib/ngatm/snmp_atm -I. -std=3Dgnu99 -fstack-protector -Wsystem-heade= rs -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmis= sing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -= Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline= -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sig= n -c atm_tree.c -o atm_tree.So --- lib.all__D --- In file included from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/iostream:38:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.hpp:33, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.cpp:26: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/ios:387:1: warning: type attributes ignored after type i= s already defined [-Wattributes] }; ^ --- usr.sbin.all__D --- --- snmp_atm.3.gz --- sed -e 's%@MODPATH@%/usr/lib/%g'=09=09 -e 's%@DEFPATH@%/usr/share/snmp/defs= /%g'=09=09 -e 's%@MIBSPATH@%/usr/share/snmp/mibs/%g' < /builds/FreeBSD_HEAD= _amd64_gcc4.9/usr.sbin/bsnmpd/modules/snmp_atm/../../../../contrib/ngatm/sn= mp_atm/snmp_atm.3 | gzip -cn > snmp_atm.3.gz --- snmp_atm.so.6 --- building shared library snmp_atm.so.6 /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -fstack-protector -shared -= Wl,-x -Wl,--fatal-warnings -Wl,--warn-shared-textrel -o snmp_atm.so.6 -Wl,= -soname,snmp_atm.so.6 `NM=3D'/usr/local/x86_64-freebsd/bin/nm' NMFLAGS=3D'= ' lorder snmp_atm.So atm_sys.So atm_tree.So | tsort -q`=20 --- lib.all__D --- In file included from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/cstdlib:85:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.hpp:32, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.cpp:26: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/locale:2845:1: warning: type attributes ignored after ty= pe is already defined [-Wattributes] _LIBCPP_EXTERN_TEMPLATE2(class _LIBCPP_TYPE_VIS moneypunct_byname) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/locale:2846:1: warning: type attributes ignored after ty= pe is already defined [-Wattributes] _LIBCPP_EXTERN_TEMPLATE2(class _LIBCPP_TYPE_VIS moneypunct_byname) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/locale:2847:1: warning: type attributes ignored after ty= pe is already defined [-Wattributes] _LIBCPP_EXTERN_TEMPLATE2(class _LIBCPP_TYPE_VIS moneypunct_byname) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/locale:2848:1: warning: type attributes ignored after ty= pe is already defined [-Wattributes] _LIBCPP_EXTERN_TEMPLATE2(class _LIBCPP_TYPE_VIS moneypunct_byname) ^ --- usr.sbin.all__D --- =3D=3D=3D> usr.sbin/bsnmpd/modules/snmp_bridge (all) --- lib.all__D --- In file included from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/ostream:142:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/istream:163, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/iostream:40, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.hpp:33, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.cpp:26: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/bitset:636:54: warning: attributes ignored on template i= nstantiation [-Wattributes] template struct _LIBCPP_TYPE_VIS_ONLY hash >; ^ --- usr.sbin.all__D --- --- bridge_snmp.So --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -fpic -DPIC -O2 -pipe -DS= NMPTREE_TYPES -I. -std=3Dgnu99 -fstack-protector -Wsystem-headers -Wall -Wn= o-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototy= pes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wsh= adow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-ex= terns -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /buil= ds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_snm= p.c -o bridge_snmp.So --- bridge_if.So --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -fpic -DPIC -O2 -pipe -DS= NMPTREE_TYPES -I. -std=3Dgnu99 -fstack-protector -Wsystem-headers -Wall -Wn= o-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototy= pes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wsh= adow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-ex= terns -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /buil= ds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_if.= c -o bridge_if.So --- lib.all__D --- --- env_test --- --- env_test --- /usr/local/bin/x86_64-portbld-freebsd10.1-g++ -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -I/builds/FreeBSD_HEAD_amd64= _gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1 -std=3D= gnu++11 -L/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_g= cc4.9/tmp/../lib/libc++ --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/b= uilds/FreeBSD_HEAD_amd64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -p= ipe -DHAVE_CONFIG_H -DATF_C_TESTS_BASE=3D'"/usr/tests/lib/atf/libatf-c"' -D= ATF_INCLUDEDIR=3D'"/usr/include"' -I/builds/FreeBSD_HEAD_amd64_gcc4.9/contr= ib/atf -fstack-protector -Wsystem-headers -Wall -Wno-format-y2k -W -Wno-unu= sed-parameter -Wpointer-arith -Wno-uninitialized -o env_test env_test.o = test_helpers.o -lprivateatf-c++ -lprivateatf-c -lprivateatf-c test_helpers.o: file not recognized: File truncated collect2: error: ld returned 1 exit status --- application_test --- In file included from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/__locale:15:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/ios:216, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/iostream:38, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.hpp:33, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.cpp:26: --- env_test --- *** [env_test] Error code 1 make[8]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++/te= sts/detail 1 error make[8]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++/te= sts/detail --- application_test --- /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string: In instantiation of 'std::__1::basic_string<_Cha= rT, _Traits, _Allocator>::size_type std::__1::basic_string<_CharT, _Traits,= _Allocator>::capacity() const [with _CharT =3D char; _Traits =3D std::__1:= :char_traits; _Allocator =3D std::__1::allocator; std::__1::bas= ic_string<_CharT, _Traits, _Allocator>::size_type =3D long unsigned int]': /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:468:9: required from 'void std::__1::basic_str= ingbuf<_CharT, _Traits, _Allocator>::str(const string_type&) [with _CharT = =3D char; _Traits =3D std::__1::char_traits; _Allocator =3D std::__1:= :allocator; std::__1::basic_stringbuf<_CharT, _Traits, _Allocator>::s= tring_type =3D std::__1::basic_string, st= d::__1::allocator >]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:244:22: required from 'std::__1::basic_stringb= uf<_CharT, _Traits, _Allocator>::basic_stringbuf(std::__1::ios_base::openmo= de) [with _CharT =3D char; _Traits =3D std::__1::char_traits; _Alloca= tor =3D std::__1::allocator; std::__1::ios_base::openmode =3D unsigne= d int]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:779:34: required from 'std::__1::basic_ostring= stream<_CharT, _Traits, _Allocator>::basic_ostringstream(std::__1::ios_base= ::openmode) [with _CharT =3D char; _Traits =3D std::__1::char_traits;= _Allocator =3D std::__1::allocator; std::__1::ios_base::openmode =3D= unsigned int]' /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/detail/test_helpers.c= pp:76:5: required from here /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:1435:30: warning: enumeral and non-enumeral type = in conditional expression {return (__is_long() ? __get_long_cap() : __min_cap) - 1;} ^ --- env_test --- *** [env_test] Error code 2 make[7]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++/te= sts/detail --- application_test --- /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string: In instantiation of 'static std::__1::basic_stri= ng<_CharT, _Traits, _Allocator>::size_type std::__1::basic_string<_CharT, _= Traits, _Allocator>::__recommend(std::__1::basic_string<_CharT, _Traits, _A= llocator>::size_type) [with _CharT =3D char; _Traits =3D std::__1::char_tra= its; _Allocator =3D std::__1::allocator; std::__1::basic_string= <_CharT, _Traits, _Allocator>::size_type =3D long unsigned int]': /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:2212:43: required from 'typename std::__1::enab= le_if::value, void>::type s= td::__1::basic_string<_CharT, _Traits, _Allocator>::__init(_ForwardIterator= , _ForwardIterator) [with _ForwardIterator =3D char*; _CharT =3D char; _Tra= its =3D std::__1::char_traits; _Allocator =3D std::__1::allocator; typename std::__1::enable_if::value, void>::type =3D void]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:2241:27: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator>::basic_string(_InputIterator, _InputIterator, = const allocator_type&) [with _InputIterator =3D char*; _CharT =3D char; _Tr= aits =3D std::__1::char_traits; _Allocator =3D std::__1::allocator; std::__1::basic_string<_CharT, _Traits, _Allocator>::allocator_type = =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:444:72: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator> std::__1::basic_stringbuf<_CharT, _Traits, _Al= locator>::str() const [with _CharT =3D char; _Traits =3D std::__1::char_tra= its; _Allocator =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:845:22: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator> std::__1::basic_ostringstream<_CharT, _Traits,= _Allocator>::str() const [with _CharT =3D char; _Traits =3D std::__1::char= _traits; _Allocator =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/detail/test_helpers.c= pp:76:5: required from here /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:1775:34: warning: enumeral and non-enumeral type = in conditional expression {return (__s < __min_cap ? __min_cap : ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string: In instantiation of 'static std::__1::basic_stri= ng<_CharT, _Traits, _Allocator>::size_type std::__1::basic_string<_CharT, _= Traits, _Allocator>::__align_it(std::__1::basic_string<_CharT, _Traits, _Al= locator>::size_type) [with typename std::__1::basic_string<_CharT, _Traits,= _Allocator>::__alloc_traits::size_type __a =3D 16ul; _CharT =3D char; _Tra= its =3D std::__1::char_traits; _Allocator =3D std::__1::allocator; std::__1::basic_string<_CharT, _Traits, _Allocator>::size_type =3D long= unsigned int]': /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:1776:28: required from 'static std::__1::basic_= string<_CharT, _Traits, _Allocator>::size_type std::__1::basic_string<_Char= T, _Traits, _Allocator>::__recommend(std::__1::basic_string<_CharT, _Traits= , _Allocator>::size_type) [with _CharT =3D char; _Traits =3D std::__1::char= _traits; _Allocator =3D std::__1::allocator; std::__1::basic_st= ring<_CharT, _Traits, _Allocator>::size_type =3D long unsigned int]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:2212:43: required from 'typename std::__1::enab= le_if::value, void>::type s= td::__1::basic_string<_CharT, _Traits, _Allocator>::__init(_ForwardIterator= , _ForwardIterator) [with _ForwardIterator =3D char*; _CharT =3D char; _Tra= its =3D std::__1::char_traits; _Allocator =3D std::__1::allocator; typename std::__1::enable_if::value, void>::type =3D void]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:2241:27: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator>::basic_string(_InputIterator, _InputIterator, = const allocator_type&) [with _InputIterator =3D char*; _CharT =3D char; _Tr= aits =3D std::__1::char_traits; _Allocator =3D std::__1::allocator; std::__1::basic_string<_CharT, _Traits, _Allocator>::allocator_type = =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:444:72: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator> std::__1::basic_stringbuf<_CharT, _Traits, _Al= locator>::str() const [with _CharT =3D char; _Traits =3D std::__1::char_tra= its; _Allocator =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:845:22: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator> std::__1::basic_ostringstream<_CharT, _Traits,= _Allocator>::str() const [with _CharT =3D char; _Traits =3D std::__1::char= _traits; _Allocator =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/detail/test_helpers.c= pp:76:5: required from here /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:1771:35: warning: suggest parentheses around '+' = in operand of '&' [-Wparentheses] {return __s + (__a-1) & ~(__a-1);} ^ --- usr.sbin.all__D --- A failure has been detected in another branch of the parallel make make[6]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin/bsnmpd/modul= es/snmp_bridge *** [_sub.all] Error code 2 make[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin/bsnmpd/modul= es 1 error make[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin/bsnmpd/modul= es *** [_sub.all] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin/bsnmpd 1 error make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin/bsnmpd *** [all_subdir_bsnmpd] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin 1 error make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin *** [usr.sbin.all__D] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 --- lib.all__D --- A failure has been detected in another branch of the parallel make make[8]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++/te= sts/detail *** [application_test] Error code 2 make[7]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++/te= sts/detail 2 errors make[7]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++/te= sts/detail *** [_sub.all] Error code 2 make[6]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++/te= sts 1 error make[6]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++/te= sts *** [_sub.all] Error code 2 make[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++ 1 error make[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++ *** [_sub.all] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf 1 error make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf *** [all_subdir_atf] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib 1 error make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib *** [lib.all__D] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 --- usr.bin.all__D --- A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/clang/tblgen *** [all_subdir_tblgen] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/clang 1 error make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/clang *** [all_subdir_clang] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin 1 error make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin *** [usr.bin.all__D] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 3 errors make[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 *** [everything] Error code 2 make[1]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 1 error make[1]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 *** [buildworld] Error code 2 make: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 1 error make: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 Build step 'Execute shell' marked build as failure [WARNINGS] Skipping publisher since build result is FAILURE IRC notifier plugin: Sending notification to: #freebsd-commits Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Mon Sep 28 06:52:36 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E411FA0AB5A for ; Mon, 28 Sep 2015 06:52:36 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id D57EF1D4E; Mon, 28 Sep 2015 06:52:36 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id D5ECD1F05; Mon, 28 Sep 2015 06:52:34 +0000 (UTC) Date: Mon, 28 Sep 2015 06:52:12 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: ngie@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <899816024.79.1443423153412.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <681281407.77.1443409565098.JavaMail.jenkins@jenkins-9.freebsd.org> References: <681281407.77.1443409565098.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_amd64_gcc4.9 - Build #563 - Fixed MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_amd64_gcc4.9 X-Jenkins-Result: SUCCESS Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Sep 2015 06:52:37 -0000 FreeBSD_HEAD_amd64_gcc4.9 - Build #563 - Fixed: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.9/563/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.9/563/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.9/563/console Change summaries: 288330 by ngie: Add initial testcases for bin/ls MFC after: 1 week Sponsored by: EMC / Isilon Storage Division 288328 by ngie: Delete stray svn:mergeinfo From owner-freebsd-current@freebsd.org Mon Sep 28 09:57:26 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DDBD6A0B848 for ; Mon, 28 Sep 2015 09:57:26 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id D12EA1DB7; Mon, 28 Sep 2015 09:57:26 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id C14DB1F4F; Mon, 28 Sep 2015 09:57:26 +0000 (UTC) Date: Mon, 28 Sep 2015 09:57:25 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <1910304733.81.1443434245710.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD-tests - Build #1496 - Unstable MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD-tests X-Jenkins-Result: UNSTABLE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Sep 2015 09:57:27 -0000 FreeBSD_HEAD-tests - Build #1496 - Unstable: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1496/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1496/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1496/console Change summaries: No changes The failed test cases: 1 tests failed. FAILED: test-report.xml. Error Message: From owner-freebsd-current@freebsd.org Mon Sep 28 11:21:34 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5900AA02B9E for ; Mon, 28 Sep 2015 11:21:34 +0000 (UTC) (envelope-from freebsd@grem.de) Received: from mail.grem.de (outcast.grem.de [213.239.217.27]) by mx1.freebsd.org (Postfix) with SMTP id 854EB1279 for ; Mon, 28 Sep 2015 11:21:32 +0000 (UTC) (envelope-from freebsd@grem.de) Received: (qmail 87251 invoked by uid 89); 28 Sep 2015 11:14:44 -0000 Received: from unknown (HELO bsd64.grem.de) (mg@grem.de@194.97.158.66) by mail.grem.de with ESMTPA; 28 Sep 2015 11:14:44 -0000 Date: Mon, 28 Sep 2015 13:14:39 +0200 From: Michael Gmelin To: freebsd-current@freebsd.org Subject: Re: Call for FreeBSD 2015Q3 (July-September) Status Reports Message-ID: <20150928131439.1b52a43a@bsd64.grem.de> In-Reply-To: References: X-Mailer: Claws Mail 3.12.0 (GTK+ 2.24.28; amd64-portbld-freebsd10.2) X-Face: $wrgCtfdVw_H9WAY?S&9+/F"!41z'L$uo*WzT8miX?kZ~W~Lr5W7v?j0Sde\mwB&/ypo^}> +a'4xMc^^KroE~+v^&^#[B">soBo1y6(TW6#UZiC]o>C6`ej+i Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAJFBMVEWJBwe5BQDl LASZU0/LTEWEfHbyj0Txi32+sKrp1Mv944X8/fm1rS+cAAAACXBIWXMAAAsTAAAL EwEAmpwYAAAAB3RJTUUH3wESCxwC7OBhbgAAACFpVFh0Q29tbWVudAAAAAAAQ3Jl YXRlZCB3aXRoIFRoZSBHSU1QbbCXAAAAAghJREFUOMu11DFvEzEUAGCfEhBVFzuq AKkLd0O6VrIQsLXVSZXoWE5N1K3DobBBA9fQpRWc8OkWouaIjedWKiyREOKs+3PY fvalCNjgLVHeF7/3bMtBzV8C/VsQ8tecEgCcDgrzjekwKZ7TwsJZd/ywEKwwP+ZM 8P3drTsAwWn2mpWuDDuYiK1bFs6De0KUUFw0tWxm+D4AIhuuvZqtyWYeO7jQ4Aea 7jUqI+ixhQoHex4WshEvSXdood7stlv4oSuFOC4tqGcr0NjEqXgV4mMJO38nld4+ xKNxRDon7khyKVqY7YR4d+Cg0OMrkWXZOM7YDkEfKiilCn1qYv4mighZiynuHHOA Wq9QJq+BIES7lMFUtcikMnkDGHUoncA+uHgrP0ctIEqfwLHzeSo+eUA66AqzwN6n 2ZHJhw6Qh/PoyC/QENyEyC/AyNjq74Bs+3UH0xYwzDUC4B97HgLocg1QLYgDDO1v f3UX9Y307Ew4AHh67YAFFsxEpkXwpXY3eIgMhAAE3R19L919nNnuD2wlPcDE3UeT L2ytEICQib9BXgS2fU8PrD82ToYO1OEmMSnYTjSqSv9wdC0tPYC+rQRQD9ESnldF CyqfmiYW+tlALt8gH2xrMdC/youbjzPXEun+/ReXsMCDyve3dZc09fn2Oas8oXGc Jj6/fOeK5UmSMPmf/jL+GD8BEj0k/Fn6IO4AAAAASUVORK5CYII= MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; boundary="Sig_/DAX8hA1IJsBNWyA=XL95i_x"; protocol="application/pgp-signature" X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Sep 2015 11:21:34 -0000 --Sig_/DAX8hA1IJsBNWyA=XL95i_x Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Hi Ed, Please find attached the status update for the FreeBSD on Acer C720 project (which is basically done now). Feel free to fix my English. Cheers, Michael On Wed, 9 Sep 2015 16:37:44 -0400 Ed Maste wrote: > Dear FreeBSD Community, >=20 > The deadline for the next FreeBSD Quarterly Status update is October > 7, 2015, for work done in July through September. >=20 > Status report submissions do not have to be very long. They may be > about anything happening in the FreeBSD project and community, and > provide a great way to inform FreeBSD users and developers about what > you're working on. Submission of reports is not restricted to > committers. Anyone doing anything interesting and FreeBSD-related > can -- and should -- write one! >=20 > The preferred and easiest submission method is to use the XML > generator [1] with the results emailed to the status report team at > monthly at freebsd.org . There is also an XML template [2] which can > be filled out manually and attached if preferred. For the expected > content and style, please study our guidelines on how to write a good > status report [3]. You can also review previous issues [4][5] for > ideas on the style and format. >=20 > We are looking forward to all of your 2015Q3 reports! >=20 > Thanks, > Ed (on behalf of monthly@) >=20 >=20 > [1] http://www.freebsd.org/cgi/monthly.cgi > [2] http://www.freebsd.org/news/status/report-sample.xml > [3] http://www.freebsd.org/news/status/howto.html > [4] http://www.freebsd.org/news/status/report-2015-01-2015-03.html > [5] http://www.freebsd.org/news/status/report-2015-04-2015-06.html > _______________________________________________ > freebsd-current@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to > "freebsd-current-unsubscribe@freebsd.org" --=20 Michael Gmelin --Sig_/DAX8hA1IJsBNWyA=XL95i_x Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQF8BAEBCgBmBQJWCSEfXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXRFODQyNDA4MjEyRDI3NjdBRTI5RUZDQTQ2 ODk3RjhDMTZCRkFGRjlGAAoJEGiX+MFr+v+fv80H/igADkiij7gguLJjWviaFgy+ +Ekiunv0jEl3fqFQbSZ3dJpXD7OI6+uCy4NfJTWjFWRLKziWC7u/5PWpxN/OvSHs vVgKaNxacnns1Lpb/2i6AikXfMCrgpQqDhMBH37JZhiexyk5C5W8cBluzJPvaPh9 cy8Zkw+cyrWCysxcWUwVC2q34GADDS+Jh0QimT4yyyIhUvbSqcZVmSN3AJGn7usi RoHOQIQzuY4EBI8bCE5VUEZrE0Np+bGC6Wte4xCOLLonbqTT2xEC5WogOSRvAMyh A0wR6p+6NXmABTySCx4tKWS7OqYSLwcJMNCEpA/Ad9QnNelURrhacpinu3l4oFA= =0YSx -----END PGP SIGNATURE----- --Sig_/DAX8hA1IJsBNWyA=XL95i_x-- From owner-freebsd-current@freebsd.org Mon Sep 28 13:30:40 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D2431A0A51A for ; Mon, 28 Sep 2015 13:30:40 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id C06081A2B; Mon, 28 Sep 2015 13:30:40 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 671C51FC5; Mon, 28 Sep 2015 13:30:38 +0000 (UTC) Date: Mon, 28 Sep 2015 13:30:36 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <1509647565.84.1443447037587.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1910304733.81.1443434245710.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1910304733.81.1443434245710.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD-tests - Build #1497 - Still Unstable MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD-tests X-Jenkins-Result: UNSTABLE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Sep 2015 13:30:40 -0000 FreeBSD_HEAD-tests - Build #1497 - Still Unstable: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1497/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1497/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1497/console Change summaries: No changes The failed test cases: 1 tests failed. FAILED: test-report.xml. Error Message: From owner-freebsd-current@freebsd.org Mon Sep 28 13:57:30 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B8A42A0B809 for ; Mon, 28 Sep 2015 13:57:30 +0000 (UTC) (envelope-from mikej@mikej.com) Received: from mx2.paymentallianceintl.com (mx2.paymentallianceintl.com [216.26.158.171]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx2.paymentallianceintl.com", Issuer "Go Daddy Secure Certification Authority" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6D0E11C60 for ; Mon, 28 Sep 2015 13:57:29 +0000 (UTC) (envelope-from mikej@mikej.com) Received: from firewall.mikej.com (162-230-214-65.lightspeed.lsvlky.sbcglobal.net [162.230.214.65]) by mx2.paymentallianceintl.com (8.15.1/8.15.1) with ESMTPS id t8SDYUjx048613 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Mon, 28 Sep 2015 09:34:31 -0400 (EDT) (envelope-from mikej@mikej.com) X-Authentication-Warning: mx2.paymentallianceintl.com: Host 162-230-214-65.lightspeed.lsvlky.sbcglobal.net [162.230.214.65] claimed to be firewall.mikej.com Received: from mail.mikej.com (firewall.mikej.com [192.168.6.63]) by firewall.mikej.com (8.15.2/8.14.9) with ESMTP id t8SDYSfO006566 for ; Mon, 28 Sep 2015 09:34:28 -0400 (EDT) (envelope-from mikej@mikej.com) X-Authentication-Warning: firewall.mikej.com: Host firewall.mikej.com [192.168.6.63] claimed to be mail.mikej.com MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Mon, 28 Sep 2015 09:34:27 -0400 From: Michael Jung To: freebsd-current@freebsd.org Subject: two different solaris asserts in r288019 Message-ID: <38ee1fb571b3c0800c2111765c7c9f8d@mail.mikej.com> X-Sender: mikej@mikej.com User-Agent: Roundcube Webmail/1.1.3 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Sep 2015 13:57:30 -0000 This is my poudriere build box that has been running current for a very long time. It was recently upgraded to r288019 and since then I have been getting these panics. One panic I could not find reported, maybe additional information here. I followed the thread here http://lists.freebsd.org/pipermail/freebsd-fs/2015-August/021856.html but haven't found any movement. Regards, --mikej Dump header from device: /dev/da2p1 Architecture: amd64 Architecture Version: 2 Dump Length: 3271299072 Blocksize: 512 Dumptime: Thu Sep 24 17:10:33 2015 Hostname: bsd11 Magic: FreeBSD Kernel Dump Version String: FreeBSD 11.0-CURRENT #0 r288019: Sun Sep 20 17:16:46 EDT 2015 mikej@bsd11:/usr/obj/usr/src/sys/GENERIC Panic String: solaris assert: avl_is_empty(&dn->dn_dbufs), file: /usr/src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode_sync.c, line: 495 Dump Parity: 3609444522 Bounds: 1 Dump Status: good https://charon.gopai.com/info.1 https://charon.gopai.com/core.txt.1 https://charon.gopai.com/vmcore.1 Dump header from device: /dev/da2p1 Architecture: amd64 Architecture Version: 2 Dump Length: 3141214208 Blocksize: 512 Dumptime: Mon Sep 28 08:19:47 2015 Hostname: bsd11 Magic: FreeBSD Kernel Dump Version String: FreeBSD 11.0-CURRENT #0 r288019: Sun Sep 20 17:16:46 EDT 2015 mikej@bsd11:/usr/obj/usr/src/sys/GENERIC Panic String: solaris assert: (dn->dn_phys->dn_nlevels == 0 && db->db_level == 0) || dn->dn_phys->dn_nlevels > db->db_level || dn->dn_next_nlevels[txgoff] > db->db_level || dn->dn_next_nlevels[(tx->tx_txg- Dump Parity: 1563774101 Bounds: 2 Dump Status: good https://charon.gopai.com/info.2 https://charon.gopai.com/core.txt.2 https://charon.gopai.com/vmcore.2 From owner-freebsd-current@freebsd.org Mon Sep 28 17:21:24 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E6960A0AE16 for ; Mon, 28 Sep 2015 17:21:24 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: from mail-pa0-x230.google.com (mail-pa0-x230.google.com [IPv6:2607:f8b0:400e:c03::230]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B899E1D29; Mon, 28 Sep 2015 17:21:24 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: by pacfv12 with SMTP id fv12so183634394pac.2; Mon, 28 Sep 2015 10:21:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=P82YDMXhZl5sF+B6ZkE/ignnGqLsmJJHqeSsk4byFJw=; b=yh+Wa21O3pjbPLyP8pWKeZSshv/VzghhjUS2UbIatfNWoU2Kp14N7s4ZGpD8hhkToo REbbUOgMCf1o+z2GdiNkYShP/d2GPiJpbhrgGyg9KD1b9DdFoco6IVS9HkkjU52Mx+Ip jEr8e5+QmLlAip8Y4ERr8/MfdUu6v/nv4t6k+or8rJNqvP3W7odLYDjUhSKxrY4TPNKL MwZE2o3UiGueyJyzeaQFh0jghSPfsMhf+lHT9Gc7qTOJARg+Qh0vrGx+AJ+Wz/KriPeX TItSyoxuA4RplEaSDlr/cPwLF+0EHjZJ5iFakmr4OBYUYXiB9d3JEjP6SqsLum3dcqD/ jlZA== X-Received: by 10.68.69.47 with SMTP id b15mr26861414pbu.139.1443460884324; Mon, 28 Sep 2015 10:21:24 -0700 (PDT) Received: from [192.168.20.11] (c-24-16-212-205.hsd1.wa.comcast.net. [24.16.212.205]) by smtp.gmail.com with ESMTPSA id zf5sm20493983pbc.36.2015.09.28.10.21.23 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 28 Sep 2015 10:21:23 -0700 (PDT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (1.0) Subject: Re: FreeBSD_HEAD-tests - Build #1497 - Still Unstable From: Garrett Cooper X-Mailer: iPhone Mail (13A404) In-Reply-To: <1509647565.84.1443447037587.JavaMail.jenkins@jenkins-9.freebsd.org> Date: Mon, 28 Sep 2015 10:21:33 -0700 Cc: freebsd-current@FreeBSD.org Content-Transfer-Encoding: quoted-printable Message-Id: References: <1910304733.81.1443434245710.JavaMail.jenkins@jenkins-9.freebsd.org> <1509647565.84.1443447037587.JavaMail.jenkins@jenkins-9.freebsd.org> To: jenkins-admin@FreeBSD.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Sep 2015 17:21:25 -0000 > On Sep 28, 2015, at 06:30, jenkins-admin@FreeBSD.org wrote: >=20 > FreeBSD_HEAD-tests - Build #1497 - Still Unstable: >=20 > Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1497= / > Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1497/c= hanges > Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1497/co= nsole >=20 > Change summaries: >=20 > No changes >=20 >=20 > The failed test cases: >=20 > 1 tests failed. > FAILED: test-report.xml. >=20 > Error Message: The kyua tests passed. It just ran into an LOR at the end that is probably c= ausing issues or something..= From owner-freebsd-current@freebsd.org Mon Sep 28 18:45:06 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B6A8AA0A876 for ; Mon, 28 Sep 2015 18:45:06 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id A56091B6C; Mon, 28 Sep 2015 18:45:06 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id A4A43C1; Mon, 28 Sep 2015 18:45:04 +0000 (UTC) Date: Mon, 28 Sep 2015 18:44:59 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <1149832992.86.1443465901811.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1509647565.84.1443447037587.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1509647565.84.1443447037587.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD-tests - Build #1498 - Still Unstable MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD-tests X-Jenkins-Result: UNSTABLE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Sep 2015 18:45:06 -0000 FreeBSD_HEAD-tests - Build #1498 - Still Unstable: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1498/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1498/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1498/console Change summaries: No changes The failed test cases: 1 tests failed. FAILED: test-report.xml. Error Message: From owner-freebsd-current@freebsd.org Mon Sep 28 21:32:56 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D9F3CA0A5D0 for ; Mon, 28 Sep 2015 21:32:56 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id BB7221DAF; Mon, 28 Sep 2015 21:32:56 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id DA234137; Mon, 28 Sep 2015 21:32:55 +0000 (UTC) Date: Mon, 28 Sep 2015 21:32:42 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: gjb@FreeBSD.org, delphij@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <1650285540.92.1443475972782.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_amd64_gcc4.9 - Build #567 - Failure MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_amd64_gcc4.9 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Sep 2015 21:32:56 -0000 FreeBSD_HEAD_amd64_gcc4.9 - Build #567 - Failure: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.= 9/567/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.9/= 567/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.9/5= 67/console Change summaries: 288347 by gjb: Append VMFORMATS and VMSIZE to RELEASE_RMAKEFLAGS only if WITH_VMIMAGES is set. MFC after:=093 days X-MFC-With:=09r288341, r288345 Sponsored by:=09The FreeBSD Foundation 288345 by gjb: In followup to r288341, ensure VMFORMATS and VMSIZE are not set to empty values, which would result in nonintuitive build errors. MFC after:=093 days X-MFC-With:=09r288341 PR:=09=09203420 (related to) Sponsored by:=09The FreeBSD Foundation 288344 by delphij: Use _PATH_DEVNULL instead of direct hardcoding. MFC after:=092 weeks 288341 by gjb: Honor VMFORMATS and VMSIZE if set in release.conf. PR:=09=09203420 Submitted by:=09luca pizzamiglio gmail com MFC after:=093 days Sponsored by:=09The FreeBSD Foundation The end of the build log: [...truncated 160312 lines...] _LIBCPP_EXTERN_TEMPLATE2(class _LIBCPP_TYPE_VIS moneypunct_byname) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/locale:2847:1: warning: type attributes ignored after ty= pe is already defined [-Wattributes] _LIBCPP_EXTERN_TEMPLATE2(class _LIBCPP_TYPE_VIS moneypunct_byname) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/locale:2848:1: warning: type attributes ignored after ty= pe is already defined [-Wattributes] _LIBCPP_EXTERN_TEMPLATE2(class _LIBCPP_TYPE_VIS moneypunct_byname) ^ --- atf_c++_test --- In file included from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/__mutex_base:16:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/mutex:176, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/__locale:18, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/ios:216, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/iostream:38, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.hpp:33, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.cpp:26: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/system_error:345:1: warning: type attributes ignored aft= er type is already defined [-Wattributes] }; ^ --- build_test --- In file included from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/ostream:142:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/istream:163, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/iostream:40, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /build_test.cpp:29: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/bitset:636:54: warning: attributes ignored on template i= nstantiation [-Wattributes] template struct _LIBCPP_TYPE_VIS_ONLY hash >; ^ --- atf_c++_test --- In file included from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/mutex:176:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/__locale:18, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/ios:216, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/iostream:38, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.hpp:33, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.cpp:26: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/__mutex_base:264:1: warning: type attributes ignored aft= er type is already defined [-Wattributes] }; ^ In file included from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/iostream:38:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.hpp:33, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.cpp:26: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/ios:387:1: warning: type attributes ignored after type i= s already defined [-Wattributes] }; ^ In file included from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/cstdlib:85:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.hpp:32, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.cpp:26: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/locale:2845:1: warning: type attributes ignored after ty= pe is already defined [-Wattributes] _LIBCPP_EXTERN_TEMPLATE2(class _LIBCPP_TYPE_VIS moneypunct_byname) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/locale:2846:1: warning: type attributes ignored after ty= pe is already defined [-Wattributes] _LIBCPP_EXTERN_TEMPLATE2(class _LIBCPP_TYPE_VIS moneypunct_byname) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/locale:2847:1: warning: type attributes ignored after ty= pe is already defined [-Wattributes] _LIBCPP_EXTERN_TEMPLATE2(class _LIBCPP_TYPE_VIS moneypunct_byname) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/locale:2848:1: warning: type attributes ignored after ty= pe is already defined [-Wattributes] _LIBCPP_EXTERN_TEMPLATE2(class _LIBCPP_TYPE_VIS moneypunct_byname) ^ In file included from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/ostream:142:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/istream:163, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/iostream:40, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.hpp:33, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.cpp:26: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/bitset:636:54: warning: attributes ignored on template i= nstantiation [-Wattributes] template struct _LIBCPP_TYPE_VIS_ONLY hash >; ^ --- build_test --- In file included from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /build.hpp:29:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /build_test.cpp:26: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string: In instantiation of 'std::__1::basic_string<_Cha= rT, _Traits, _Allocator>::size_type std::__1::basic_string<_CharT, _Traits,= _Allocator>::capacity() const [with _CharT =3D char; _Traits =3D std::__1:= :char_traits; _Allocator =3D std::__1::allocator; std::__1::bas= ic_string<_CharT, _Traits, _Allocator>::size_type =3D long unsigned int]': /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:468:9: required from 'void std::__1::basic_str= ingbuf<_CharT, _Traits, _Allocator>::str(const string_type&) [with _CharT = =3D char; _Traits =3D std::__1::char_traits; _Allocator =3D std::__1:= :allocator; std::__1::basic_stringbuf<_CharT, _Traits, _Allocator>::s= tring_type =3D std::__1::basic_string, st= d::__1::allocator >]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:244:22: required from 'std::__1::basic_stringb= uf<_CharT, _Traits, _Allocator>::basic_stringbuf(std::__1::ios_base::openmo= de) [with _CharT =3D char; _Traits =3D std::__1::char_traits; _Alloca= tor =3D std::__1::allocator; std::__1::ios_base::openmode =3D unsigne= d int]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:779:34: required from 'std::__1::basic_ostring= stream<_CharT, _Traits, _Allocator>::basic_ostringstream(std::__1::ios_base= ::openmode) [with _CharT =3D char; _Traits =3D std::__1::char_traits;= _Allocator =3D std::__1::allocator; std::__1::ios_base::openmode =3D= unsigned int]' /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/build_test.cpp:119:9:= required from here /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:1435:30: warning: enumeral and non-enumeral type = in conditional expression {return (__is_long() ? __get_long_cap() : __min_cap) - 1;} ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string: In instantiation of 'static std::__1::basic_stri= ng<_CharT, _Traits, _Allocator>::size_type std::__1::basic_string<_CharT, _= Traits, _Allocator>::__recommend(std::__1::basic_string<_CharT, _Traits, _A= llocator>::size_type) [with _CharT =3D char; _Traits =3D std::__1::char_tra= its; _Allocator =3D std::__1::allocator; std::__1::basic_string= <_CharT, _Traits, _Allocator>::size_type =3D long unsigned int]': /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:2212:43: required from 'typename std::__1::enab= le_if::value, void>::type s= td::__1::basic_string<_CharT, _Traits, _Allocator>::__init(_ForwardIterator= , _ForwardIterator) [with _ForwardIterator =3D char*; _CharT =3D char; _Tra= its =3D std::__1::char_traits; _Allocator =3D std::__1::allocator; typename std::__1::enable_if::value, void>::type =3D void]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:2241:27: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator>::basic_string(_InputIterator, _InputIterator, = const allocator_type&) [with _InputIterator =3D char*; _CharT =3D char; _Tr= aits =3D std::__1::char_traits; _Allocator =3D std::__1::allocator; std::__1::basic_string<_CharT, _Traits, _Allocator>::allocator_type = =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:444:72: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator> std::__1::basic_stringbuf<_CharT, _Traits, _Al= locator>::str() const [with _CharT =3D char; _Traits =3D std::__1::char_tra= its; _Allocator =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:845:22: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator> std::__1::basic_ostringstream<_CharT, _Traits,= _Allocator>::str() const [with _CharT =3D char; _Traits =3D std::__1::char= _traits; _Allocator =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/build_test.cpp:119:9:= required from here /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:1775:34: warning: enumeral and non-enumeral type = in conditional expression {return (__s < __min_cap ? __min_cap : ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string: In instantiation of 'static std::__1::basic_stri= ng<_CharT, _Traits, _Allocator>::size_type std::__1::basic_string<_CharT, _= Traits, _Allocator>::__align_it(std::__1::basic_string<_CharT, _Traits, _Al= locator>::size_type) [with typename std::__1::basic_string<_CharT, _Traits,= _Allocator>::__alloc_traits::size_type __a =3D 16ul; _CharT =3D char; _Tra= its =3D std::__1::char_traits; _Allocator =3D std::__1::allocator; std::__1::basic_string<_CharT, _Traits, _Allocator>::size_type =3D long= unsigned int]': /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:1776:28: required from 'static std::__1::basic_= string<_CharT, _Traits, _Allocator>::size_type std::__1::basic_string<_Char= T, _Traits, _Allocator>::__recommend(std::__1::basic_string<_CharT, _Traits= , _Allocator>::size_type) [with _CharT =3D char; _Traits =3D std::__1::char= _traits; _Allocator =3D std::__1::allocator; std::__1::basic_st= ring<_CharT, _Traits, _Allocator>::size_type =3D long unsigned int]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:2212:43: required from 'typename std::__1::enab= le_if::value, void>::type s= td::__1::basic_string<_CharT, _Traits, _Allocator>::__init(_ForwardIterator= , _ForwardIterator) [with _ForwardIterator =3D char*; _CharT =3D char; _Tra= its =3D std::__1::char_traits; _Allocator =3D std::__1::allocator; typename std::__1::enable_if::value, void>::type =3D void]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:2241:27: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator>::basic_string(_InputIterator, _InputIterator, = const allocator_type&) [with _InputIterator =3D char*; _CharT =3D char; _Tr= aits =3D std::__1::char_traits; _Allocator =3D std::__1::allocator; std::__1::basic_string<_CharT, _Traits, _Allocator>::allocator_type = =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:444:72: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator> std::__1::basic_stringbuf<_CharT, _Traits, _Al= locator>::str() const [with _CharT =3D char; _Traits =3D std::__1::char_tra= its; _Allocator =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:845:22: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator> std::__1::basic_ostringstream<_CharT, _Traits,= _Allocator>::str() const [with _CharT =3D char; _Traits =3D std::__1::char= _traits; _Allocator =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/build_test.cpp:119:9:= required from here /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:1771:35: warning: suggest parentheses around '+' = in operand of '&' [-Wparentheses] {return __s + (__a-1) & ~(__a-1);} ^ --- secure.all__D --- --- sftp-common.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -I/builds/FreeBS= D_HEAD_amd64_gcc4.9/secure/usr.sbin/sshd/../../../crypto/openssh -include s= sh_namespace.h -DHAVE_LDNS=3D1 -DUSE_BSM_AUDIT -DHAVE_GETAUDIT_ADDR -includ= e krb5_config.h -std=3Dgnu99 -fstack-protector -Wno-pointer-sign -c /buil= ds/FreeBSD_HEAD_amd64_gcc4.9/secure/usr.sbin/sshd/../../../crypto/openssh/s= ftp-common.c -o sftp-common.o --- roaming_common.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -I/builds/FreeBS= D_HEAD_amd64_gcc4.9/secure/usr.sbin/sshd/../../../crypto/openssh -include s= sh_namespace.h -DHAVE_LDNS=3D1 -DUSE_BSM_AUDIT -DHAVE_GETAUDIT_ADDR -includ= e krb5_config.h -std=3Dgnu99 -fstack-protector -Wno-pointer-sign -c /buil= ds/FreeBSD_HEAD_amd64_gcc4.9/secure/usr.sbin/sshd/../../../crypto/openssh/r= oaming_common.c -o roaming_common.o --- lib.all__D --- --- atf_c++_test --- In file included from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/__locale:15:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/ios:216, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/iostream:38, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.hpp:33, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.cpp:26: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string: In instantiation of 'std::__1::basic_string<_Cha= rT, _Traits, _Allocator>::size_type std::__1::basic_string<_CharT, _Traits,= _Allocator>::capacity() const [with _CharT =3D char; _Traits =3D std::__1:= :char_traits; _Allocator =3D std::__1::allocator; std::__1::bas= ic_string<_CharT, _Traits, _Allocator>::size_type =3D long unsigned int]': /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:468:9: required from 'void std::__1::basic_str= ingbuf<_CharT, _Traits, _Allocator>::str(const string_type&) [with _CharT = =3D char; _Traits =3D std::__1::char_traits; _Allocator =3D std::__1:= :allocator; std::__1::basic_stringbuf<_CharT, _Traits, _Allocator>::s= tring_type =3D std::__1::basic_string, st= d::__1::allocator >]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:244:22: required from 'std::__1::basic_stringb= uf<_CharT, _Traits, _Allocator>::basic_stringbuf(std::__1::ios_base::openmo= de) [with _CharT =3D char; _Traits =3D std::__1::char_traits; _Alloca= tor =3D std::__1::allocator; std::__1::ios_base::openmode =3D unsigne= d int]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:779:34: required from 'std::__1::basic_ostring= stream<_CharT, _Traits, _Allocator>::basic_ostringstream(std::__1::ios_base= ::openmode) [with _CharT =3D char; _Traits =3D std::__1::char_traits;= _Allocator =3D std::__1::allocator; std::__1::ios_base::openmode =3D= unsigned int]' /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/detail/test_helpers.c= pp:76:5: required from here /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:1435:30: warning: enumeral and non-enumeral type = in conditional expression {return (__is_long() ? __get_long_cap() : __min_cap) - 1;} ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string: In instantiation of 'static std::__1::basic_stri= ng<_CharT, _Traits, _Allocator>::size_type std::__1::basic_string<_CharT, _= Traits, _Allocator>::__recommend(std::__1::basic_string<_CharT, _Traits, _A= llocator>::size_type) [with _CharT =3D char; _Traits =3D std::__1::char_tra= its; _Allocator =3D std::__1::allocator; std::__1::basic_string= <_CharT, _Traits, _Allocator>::size_type =3D long unsigned int]': /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:2212:43: required from 'typename std::__1::enab= le_if::value, void>::type s= td::__1::basic_string<_CharT, _Traits, _Allocator>::__init(_ForwardIterator= , _ForwardIterator) [with _ForwardIterator =3D char*; _CharT =3D char; _Tra= its =3D std::__1::char_traits; _Allocator =3D std::__1::allocator; typename std::__1::enable_if::value, void>::type =3D void]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:2241:27: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator>::basic_string(_InputIterator, _InputIterator, = const allocator_type&) [with _InputIterator =3D char*; _CharT =3D char; _Tr= aits =3D std::__1::char_traits; _Allocator =3D std::__1::allocator; std::__1::basic_string<_CharT, _Traits, _Allocator>::allocator_type = =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:444:72: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator> std::__1::basic_stringbuf<_CharT, _Traits, _Al= locator>::str() const [with _CharT =3D char; _Traits =3D std::__1::char_tra= its; _Allocator =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:845:22: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator> std::__1::basic_ostringstream<_CharT, _Traits,= _Allocator>::str() const [with _CharT =3D char; _Traits =3D std::__1::char= _traits; _Allocator =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/detail/test_helpers.c= pp:76:5: required from here /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:1775:34: warning: enumeral and non-enumeral type = in conditional expression {return (__s < __min_cap ? __min_cap : ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string: In instantiation of 'static std::__1::basic_stri= ng<_CharT, _Traits, _Allocator>::size_type std::__1::basic_string<_CharT, _= Traits, _Allocator>::__align_it(std::__1::basic_string<_CharT, _Traits, _Al= locator>::size_type) [with typename std::__1::basic_string<_CharT, _Traits,= _Allocator>::__alloc_traits::size_type __a =3D 16ul; _CharT =3D char; _Tra= its =3D std::__1::char_traits; _Allocator =3D std::__1::allocator; std::__1::basic_string<_CharT, _Traits, _Allocator>::size_type =3D long= unsigned int]': /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:1776:28: required from 'static std::__1::basic_= string<_CharT, _Traits, _Allocator>::size_type std::__1::basic_string<_Char= T, _Traits, _Allocator>::__recommend(std::__1::basic_string<_CharT, _Traits= , _Allocator>::size_type) [with _CharT =3D char; _Traits =3D std::__1::char= _traits; _Allocator =3D std::__1::allocator; std::__1::basic_st= ring<_CharT, _Traits, _Allocator>::size_type =3D long unsigned int]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:2212:43: required from 'typename std::__1::enab= le_if::value, void>::type s= td::__1::basic_string<_CharT, _Traits, _Allocator>::__init(_ForwardIterator= , _ForwardIterator) [with _ForwardIterator =3D char*; _CharT =3D char; _Tra= its =3D std::__1::char_traits; _Allocator =3D std::__1::allocator; typename std::__1::enable_if::value, void>::type =3D void]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:2241:27: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator>::basic_string(_InputIterator, _InputIterator, = const allocator_type&) [with _InputIterator =3D char*; _CharT =3D char; _Tr= aits =3D std::__1::char_traits; _Allocator =3D std::__1::allocator; std::__1::basic_string<_CharT, _Traits, _Allocator>::allocator_type = =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:444:72: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator> std::__1::basic_stringbuf<_CharT, _Traits, _Al= locator>::str() const [with _CharT =3D char; _Traits =3D std::__1::char_tra= its; _Allocator =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:845:22: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator> std::__1::basic_ostringstream<_CharT, _Traits,= _Allocator>::str() const [with _CharT =3D char; _Traits =3D std::__1::char= _traits; _Allocator =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/detail/test_helpers.c= pp:76:5: required from here /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:1771:35: warning: suggest parentheses around '+' = in operand of '&' [-Wparentheses] {return __s + (__a-1) & ~(__a-1);} ^ --- secure.all__D --- --- roaming_serv.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -I/builds/FreeBS= D_HEAD_amd64_gcc4.9/secure/usr.sbin/sshd/../../../crypto/openssh -include s= sh_namespace.h -DHAVE_LDNS=3D1 -DUSE_BSM_AUDIT -DHAVE_GETAUDIT_ADDR -includ= e krb5_config.h -std=3Dgnu99 -fstack-protector -Wno-pointer-sign -c /buil= ds/FreeBSD_HEAD_amd64_gcc4.9/secure/usr.sbin/sshd/../../../crypto/openssh/r= oaming_serv.c -o roaming_serv.o --- sandbox-null.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -I/builds/FreeBS= D_HEAD_amd64_gcc4.9/secure/usr.sbin/sshd/../../../crypto/openssh -include s= sh_namespace.h -DHAVE_LDNS=3D1 -DUSE_BSM_AUDIT -DHAVE_GETAUDIT_ADDR -includ= e krb5_config.h -std=3Dgnu99 -fstack-protector -Wno-pointer-sign -c /buil= ds/FreeBSD_HEAD_amd64_gcc4.9/secure/usr.sbin/sshd/../../../crypto/openssh/s= andbox-null.c -o sandbox-null.o --- lib.all__D --- --- build_test --- --- build_test --- /usr/local/bin/x86_64-portbld-freebsd10.1-g++ -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -I/builds/FreeBSD_HEAD_amd64= _gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1 -std=3D= gnu++11 -L/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_g= cc4.9/tmp/../lib/libc++ --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/b= uilds/FreeBSD_HEAD_amd64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -p= ipe -DHAVE_CONFIG_H -DATF_C_TESTS_BASE=3D'"/usr/tests/lib/atf/libatf-c"' -D= ATF_INCLUDEDIR=3D'"/usr/include"' -I/builds/FreeBSD_HEAD_amd64_gcc4.9/contr= ib/atf -fstack-protector -Wsystem-headers -Wall -Wno-format-y2k -W -Wno-unu= sed-parameter -Wpointer-arith -Wno-uninitialized -o build_test build_tes= t.o test_helpers.o -lprivateatf-c++ -lprivateatf-c -lprivateatf-c test_helpers.o: file not recognized: File truncated --- secure.all__D --- --- sandbox-rlimit.o --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -pipe -I/builds/FreeBS= D_HEAD_amd64_gcc4.9/secure/usr.sbin/sshd/../../../crypto/openssh -include s= sh_namespace.h -DHAVE_LDNS=3D1 -DUSE_BSM_AUDIT -DHAVE_GETAUDIT_ADDR -includ= e krb5_config.h -std=3Dgnu99 -fstack-protector -Wno-pointer-sign -c /buil= ds/FreeBSD_HEAD_amd64_gcc4.9/secure/usr.sbin/sshd/../../../crypto/openssh/s= andbox-rlimit.c -o sandbox-rlimit.o --- lib.all__D --- collect2: error: ld returned 1 exit status *** [build_test] Error code 1 make[7]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++/te= sts 1 error make[7]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++/te= sts *** [build_test] Error code 2 make[6]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++/te= sts --- secure.all__D --- A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/secure/usr.sbin/sshd *** [_sub.all] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/secure/usr.sbin 1 error make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/secure/usr.sbin *** [_sub.all] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/secure 1 error make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/secure *** [secure.all__D] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 --- lib.all__D --- --- atf_c++_test --- A failure has been detected in another branch of the parallel make make[7]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++/te= sts *** [atf_c++_test] Error code 2 make[6]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++/te= sts 2 errors make[6]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++/te= sts *** [_sub.all] Error code 2 make[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++ 1 error make[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++ *** [_sub.all] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf 1 error make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf *** [all_subdir_atf] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib 1 error make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib *** [lib.all__D] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 --- usr.bin.all__D --- A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/clang/clang-t= blgen *** [all_subdir_clang-tblgen] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/clang 1 error make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/clang *** [all_subdir_clang] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin 1 error make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin *** [usr.bin.all__D] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 3 errors make[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 *** [everything] Error code 2 make[1]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 1 error make[1]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 *** [buildworld] Error code 2 make: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 1 error make: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 Build step 'Execute shell' marked build as failure [WARNINGS] Skipping publisher since build result is FAILURE IRC notifier plugin: Sending notification to: #freebsd-commits Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Mon Sep 28 21:43:53 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 06BBAA0AED0 for ; Mon, 28 Sep 2015 21:43:53 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id EA1771330; Mon, 28 Sep 2015 21:43:52 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 0FB0B138; Mon, 28 Sep 2015 21:43:52 +0000 (UTC) Date: Mon, 28 Sep 2015 21:43:52 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <1389883180.94.1443476632442.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1149832992.86.1443465901811.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1149832992.86.1443465901811.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD-tests - Build #1499 - Still Unstable MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD-tests X-Jenkins-Result: UNSTABLE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Sep 2015 21:43:53 -0000 FreeBSD_HEAD-tests - Build #1499 - Still Unstable: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1499/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1499/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1499/console Change summaries: No changes The failed test cases: 1 tests failed. FAILED: test-report.xml. Error Message: From owner-freebsd-current@freebsd.org Tue Sep 29 01:50:05 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 190E3A0BD69 for ; Tue, 29 Sep 2015 01:50:05 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 072D411A5; Tue, 29 Sep 2015 01:50:05 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id BEB651D4; Tue, 29 Sep 2015 01:50:01 +0000 (UTC) Date: Tue, 29 Sep 2015 01:49:47 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: mav@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <104586569.96.1443491400470.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1650285540.92.1443475972782.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1650285540.92.1443475972782.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_amd64_gcc4.9 - Build #568 - Fixed MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_amd64_gcc4.9 X-Jenkins-Result: SUCCESS Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Sep 2015 01:50:05 -0000 FreeBSD_HEAD_amd64_gcc4.9 - Build #568 - Fixed: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.9/568/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.9/568/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.9/568/console Change summaries: 288348 by mav: Umplement media load/eject support for removable devices. In case of block backend eject really closes the backing store, while load tries to open it back. Failed store open is reported as no media. From owner-freebsd-current@freebsd.org Tue Sep 29 01:56:46 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CA869A0A50E for ; Tue, 29 Sep 2015 01:56:46 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id BC08D1631; Tue, 29 Sep 2015 01:56:46 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id F1AFE1D5; Tue, 29 Sep 2015 01:56:46 +0000 (UTC) Date: Tue, 29 Sep 2015 01:56:46 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <779226476.98.1443491806802.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1389883180.94.1443476632442.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1389883180.94.1443476632442.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD-tests - Build #1500 - Still Unstable MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD-tests X-Jenkins-Result: UNSTABLE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Sep 2015 01:56:46 -0000 FreeBSD_HEAD-tests - Build #1500 - Still Unstable: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1500/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1500/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1500/console Change summaries: No changes The failed test cases: 1 tests failed. FAILED: test-report.xml. Error Message: From owner-freebsd-current@freebsd.org Tue Sep 29 01:58:15 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A2A4BA0A699 for ; Tue, 29 Sep 2015 01:58:15 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: from mail-qg0-x233.google.com (mail-qg0-x233.google.com [IPv6:2607:f8b0:400d:c04::233]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 61FAB197A; Tue, 29 Sep 2015 01:58:15 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: by qgx61 with SMTP id 61so137412963qgx.3; Mon, 28 Sep 2015 18:58:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=bmHiuYJEABHVIqGD4H3uE7DVuT1oBAeAhjfGrCr/Qbw=; b=Ii0XEcu6Hc3szV6PvzZv8EhggldS5JuLyoRaItFEifL577YR8yDg7kVOkf8soW/UV1 KBg7PvNDk0NNJDXfuiqJFgKynWd7sk13XNadDd3sXq2W5PWa+At02agX0IVdIyaZ/JAC KD4fClERpK5Yf84wGXTNssGuKH10PL1ehnTmv+JlXYL6vhyj7DpY85mOJSZMpiVahbyD 2PbfQCmdoPKb70SJ5FnETlCmnhz34jLlH4We1lMDf2sgiHtx/l3vX+irOuhI2UoVythU wE6zmTmfO4LinnSi5k5gwN4KPHH4NYrIXr3X16k+rnTdVXYhJC4n81S1DuydTUa5A0DG GkfQ== MIME-Version: 1.0 X-Received: by 10.140.144.8 with SMTP id 8mr26844804qhq.54.1443491894487; Mon, 28 Sep 2015 18:58:14 -0700 (PDT) Received: by 10.140.94.44 with HTTP; Mon, 28 Sep 2015 18:58:14 -0700 (PDT) In-Reply-To: References: <1910304733.81.1443434245710.JavaMail.jenkins@jenkins-9.freebsd.org> <1509647565.84.1443447037587.JavaMail.jenkins@jenkins-9.freebsd.org> Date: Mon, 28 Sep 2015 18:58:14 -0700 Message-ID: Subject: Re: FreeBSD_HEAD-tests - Build #1497 - Still Unstable From: NGie Cooper To: "jenkins-admin@freebsd.org" Cc: FreeBSD Current Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Sep 2015 01:58:15 -0000 On Mon, Sep 28, 2015 at 10:21 AM, Garrett Cooper wrote: > >> On Sep 28, 2015, at 06:30, jenkins-admin@FreeBSD.org wrote: >> >> FreeBSD_HEAD-tests - Build #1497 - Still Unstable: >> >> Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1497/ >> Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1497/changes >> Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1497/console >> >> Change summaries: >> >> No changes >> >> >> The failed test cases: >> >> 1 tests failed. >> FAILED: test-report.xml. >> >> Error Message: > > The kyua tests passed. It just ran into an LOR at the end that is probably causing issues or something.. Nope. It's because one of the tests I added uses non-printable characters and the converter script isn't escaping the character properly: https://jenkins.freebsd.org/job/FreeBSD_HEAD-tests/1499/testReport/test-report/xml/_init_/ Craig and co: could you please fix this? Thanks. From owner-freebsd-current@freebsd.org Tue Sep 29 10:52:30 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ABD85A0BF02 for ; Tue, 29 Sep 2015 10:52:30 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 9D69317DC; Tue, 29 Sep 2015 10:52:30 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id BD18C2FC; Tue, 29 Sep 2015 10:52:29 +0000 (UTC) Date: Tue, 29 Sep 2015 10:52:25 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <1807001153.100.1443523948115.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <779226476.98.1443491806802.JavaMail.jenkins@jenkins-9.freebsd.org> References: <779226476.98.1443491806802.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD-tests - Build #1501 - Still Unstable MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD-tests X-Jenkins-Result: UNSTABLE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Sep 2015 10:52:30 -0000 FreeBSD_HEAD-tests - Build #1501 - Still Unstable: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1501/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1501/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1501/console Change summaries: No changes The failed test cases: 1 tests failed. FAILED: test-report.xml. Error Message: From owner-freebsd-current@freebsd.org Tue Sep 29 13:05:44 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 255BCA0C8AD for ; Tue, 29 Sep 2015 13:05:44 +0000 (UTC) (envelope-from david@catwhisker.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 0B3E11AA0 for ; Tue, 29 Sep 2015 13:05:44 +0000 (UTC) (envelope-from david@catwhisker.org) Received: by mailman.ysv.freebsd.org (Postfix) id 085FEA0C8AB; Tue, 29 Sep 2015 13:05:44 +0000 (UTC) Delivered-To: current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E1E91A0C8A9; Tue, 29 Sep 2015 13:05:43 +0000 (UTC) (envelope-from david@catwhisker.org) Received: from albert.catwhisker.org (mx.catwhisker.org [198.144.209.73]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BE8FD1A9C; Tue, 29 Sep 2015 13:05:42 +0000 (UTC) (envelope-from david@catwhisker.org) Received: from albert.catwhisker.org (localhost [127.0.0.1]) by albert.catwhisker.org (8.15.2/8.15.2) with ESMTP id t8TD5Yw0029633; Tue, 29 Sep 2015 06:05:34 -0700 (PDT) (envelope-from david@albert.catwhisker.org) Received: (from david@localhost) by albert.catwhisker.org (8.15.2/8.15.2/Submit) id t8TD5YBN029632; Tue, 29 Sep 2015 06:05:34 -0700 (PDT) (envelope-from david) Date: Tue, 29 Sep 2015 06:05:34 -0700 From: David Wolfskill To: current@freebsd.org, net@freebsd.org Subject: head/amd64 @r288358: panic: lock (sleep mutex) iwn0_com_lock not locked @ /usr/src/sys/dev/iwn/if_iwn.c:5356 Message-ID: <20150929130534.GI1125@albert.catwhisker.org> Mail-Followup-To: David Wolfskill , current@freebsd.org, net@freebsd.org MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="mlnxvmnLyWgus2CN" Content-Disposition: inline User-Agent: Mutt/1.5.24 (2015-08-30) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Sep 2015 13:05:44 -0000 --mlnxvmnLyWgus2CN Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable No known/observed issues with: FreeBSD localhost 11.0-CURRENT FreeBSD 11.0-CURRENT #197 r288335M/288335:1= 100079: Mon Sep 28 04:14:47 PDT 2015 root@localhost:/common/S4/obj/usr/= src/sys/CANARY amd64 on my laptop, but: FreeBSD localhost 11.0-CURRENT FreeBSD 11.0-CURRENT #198 r288358M/288358:1= 100079: Tue Sep 29 04:46:49 PDT 2015 root@localhost:/common/S4/obj/usr/= src/sys/CANARY amd64 was OK up to the point of attempting to establish a link using the wlan0 interface (the underlying hardware for which is iwn on the laptop). I was able to get a crash dump, and am presently copying it to (along with the core.txt, which has already made it over). (I am 3 time zones east of home, and will be spending the bulk of the day returning home -- and thus, without ability to respond to email for a while). Here's an excerpt from the core.txt.5: localhost dumped core - see /var/crash/vmcore.5 Tue Sep 29 05:14:30 PDT 2015 FreeBSD localhost 11.0-CURRENT FreeBSD 11.0-CURRENT #198 r288358M/288358:1= 100079: Tue Sep 29 04:46:49 PDT 2015 root@localhost:/common/S4/obj/usr/= src/sys/CANARY amd64 panic: lock (sleep mutex) iwn0_com_lock not locked @ /usr/src/sys/dev/iwn/i= f_iwn.c:5356 GNU gdb 6.1.1 [FreeBSD] =2E.. Unread portion of the kernel message buffer: d: ACPI: SSDT 0xFFFFF80006E30800 0005AA (v01 PmRef ApIst 00003000 INTL 201= 20711) ACPI: Dynamic OEM Table Load: ACPI: SSDT 0xFFFFF800067F6A00 000119 (v01 PmRef ApCst 00003000 INTL 201= 20711) random: harvesting attach, 8 bytes (4 bits) from cpu1 cpu2: Processor \_PR_.CPU2 (ACPI ID 3) -> APIC ID 4 cpu2: on acpi0 random: harvesting attach, 8 bytes (4 bits) from cpu2 cpu3: Processor \_PR_.CPU3 (ACPI ID 4) -> APIC ID 6 cpu3: on acpi0 random: harvesting attach, 8 bytes (4 bits) from cpu3 cpu4: Processor \_PR_.CPU4 (ACPI ID 5) -> APIC ID 1 cpu4: on acpi0 random: harvesting attach, 8 bytes (4 bits) from cpu4 cpu5: Processor \_PR_.CPU5 (ACPI ID 6) -> APIC ID 3 cpu5: on acpi0 random: harvesting attach, 8 bytes (4 bits) from cpu5 cpu6: Processor \_PR_.CPU6 (ACPI ID 7) -> APIC ID 5 cpu6: on acpi0 random: harvesting attach, 8 bytes (4 bits) from cpu6 cpu7: Processor \_PR_.CPU7 (ACPI ID 8) -> APIC ID 7 cpu7: on acpi0 random: harvesting attach, 8 bytes (4 bits) from cpu7 hpet0: iomem 0xfed00000-0xfed003ff on acpi0 hpet0: vendor 0x8086, rev 0x1, 14318180Hz 64bit, 8 timers, legacy route hpet0: t0: irqs 0x00f00000 (0), MSI, 64bit, periodic hpet0: t1: irqs 0x00f00000 (0), MSI hpet0: t2: irqs 0x00f00800 (0), MSI hpet0: t3: irqs 0x00f01000 (0), MSI hpet0: t4: irqs 0x00000000 (0), MSI hpet0: t5: irqs 0x00000000 (0), MSI hpet0: t6: irqs 0x00000000 (0), MSI hpet0: t7: irqs 0x00000000 (0), MSI Timecounter "HPET" frequency 14318180 Hz quality 950 msi: routing MSI-X IRQ 256 to local APIC 0 vector 49 msi: routing MSI-X IRQ 257 to local APIC 0 vector 50 msi: routing MSI-X IRQ 258 to local APIC 0 vector 51 msi: routing MSI-X IRQ 259 to local APIC 0 vector 52 msi: routing MSI-X IRQ 260 to local APIC 0 vector 53 msi: routing MSI-X IRQ 261 to local APIC 0 vector 54 msi: routing MSI-X IRQ 262 to local APIC 0 vector 55 msi: routing MSI-X IRQ 263 to local APIC 0 vector 56 Event timer "HPET" frequency 14318180 Hz quality 550 random: harvesting attach, 8 bytes (4 bits) from hpet0 atrtc0: port 0x70-0x77 irq 8 on acpi0 atrtc0: Warning: Couldn't map I/O. atrtc0: registered as a time-of-day clock (resolution 1000000us, adjustment= 0.500000000s) ioapic0: routing intpin 8 (ISA IRQ 8) to lapic 0 vector 57 Event timer "RTC" frequency 32768 Hz quality 0 random: harvesting attach, 8 bytes (4 bits) from atrtc0 attimer0: port 0x40-0x43,0x50-0x53 irq 0 on acpi0 Timecounter "i8254" frequency 1193182 Hz quality 0 ioapic0: routing intpin 2 (ISA IRQ 0) to lapic 0 vector 58 Event timer "i8254" frequency 1193182 Hz quality 100 random: harvesting attach, 8 bytes (4 bits) from attimer0 ACPI timer: 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 -> 10 Timecounter "ACPI-fast" frequency 3579545 Hz quality 900 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x1808-0x180b on acpi0 random: harvesting attach, 8 bytes (4 bits) from acpi_timer0 acpi_ec0: port 0x930,0x934 on acpi0 random: harvesting attach, 8 bytes (4 bits) from acpi_ec0 pci_link0: Index IRQ Rtd Ref IRQs Initial Probe 0 11 N 0 3 4 5 6 10 11 12 14 15 Validation 0 11 N 0 3 4 5 6 10 11 12 14 15 After Disable 0 255 N 0 3 4 5 6 10 11 12 14 15 random: harvesting attach, 8 bytes (4 bits) from pci_link0 pci_link1: Index IRQ Rtd Ref IRQs Initial Probe 0 10 N 0 3 4 5 6 10 11 12 14 15 Validation 0 10 N 0 3 4 5 6 10 11 12 14 15 After Disable 0 255 N 0 3 4 5 6 10 11 12 14 15 random: harvesting attach, 8 bytes (4 bits) from pci_link1 pci_link2: Index IRQ Rtd Ref IRQs Initial Probe 0 10 N 0 3 4 5 6 10 11 12 14 15 Validation 0 10 N 0 3 4 5 6 10 11 12 14 15 After Disable 0 255 N 0 3 4 5 6 10 11 12 14 15 random: harvesting attach, 8 bytes (4 bits) from pci_link2 pci_link3: Index IRQ Rtd Ref IRQs Initial Probe 0 5 N 0 3 4 5 6 10 11 12 14 15 Validation 0 5 N 0 3 4 5 6 10 11 12 14 15 After Disable 0 255 N 0 3 4 5 6 10 11 12 14 15 random: harvesting attach, 8 bytes (4 bits) from pci_link3 pci_link4: Index IRQ Rtd Ref IRQs Initial Probe 0 3 N 0 3 4 5 6 10 11 12 14 15 Validation 0 3 N 0 3 4 5 6 10 11 12 14 15 After Disable 0 255 N 0 3 4 5 6 10 11 12 14 15 random: harvesting attach, 8 bytes (4 bits) from pci_link4 pci_link5: Index IRQ Rtd Ref IRQs Initial Probe 0 5 N 0 3 4 5 6 10 11 12 14 15 Validation 0 5 N 0 3 4 5 6 10 11 12 14 15 After Disable 0 255 N 0 3 4 5 6 10 11 12 14 15 random: harvesting attach, 8 bytes (4 bits) from pci_link5 pci_link6: Index IRQ Rtd Ref IRQs Initial Probe 0 11 N 0 3 4 5 6 10 11 12 14 15 Validation 0 11 N 0 3 4 5 6 10 11 12 14 15 After Disable 0 255 N 0 3 4 5 6 10 11 12 14 15 random: harvesting attach, 8 bytes (4 bits) from pci_link6 pci_link7: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 3 4 5 6 10 11 12 14 15 Validation 0 255 N 0 3 4 5 6 10 11 12 14 15 After Disable 0 255 N 0 3 4 5 6 10 11 12 14 15 random: harvesting attach, 8 bytes (4 bits) from pci_link7 pcib0: port 0xcf8-0xcff on acpi0 pcib0: decoding 5 range 0-0x3e pcib0: decoding 4 range 0-0xcf7 pcib0: decoding 4 range 0xd00-0xffff pcib0: decoding 3 range 0xa0000-0xbffff pcib0: decoding 3 range 0xdc000-0xdffff pcib0: decoding 3 range 0xe0000-0xe3fff pcib0: decoding 3 range 0xe4000-0xe7fff pcib0: decoding 3 range 0xd0000000-0xfeafffff pci0: on pcib0 pci0: domain=3D0, physical bus=3D0 found-> vendor=3D0x8086, dev=3D0x0c04, revid=3D0x06 domain=3D0, bus=3D0, slot=3D0, func=3D0 class=3D06-00-00, hdrtype=3D0x00, mfdev=3D0 cmdreg=3D0x0006, statreg=3D0x2090, cachelnsz=3D0 (dwords) lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) found-> vendor=3D0x8086, dev=3D0x0c01, revid=3D0x06 domain=3D0, bus=3D0, slot=3D1, func=3D0 class=3D06-04-00, hdrtype=3D0x01, mfdev=3D1 cmdreg=3D0x0007, statreg=3D0x0010, cachelnsz=3D16 (dwords) lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) intpin=3Da, irq=3D11 powerspec 3 supports D0 D3 current D0 MSI supports 1 message pcib0: matched entry for 0.1.INTA pcib0: slot 1 INTA hardwired to IRQ 16 secbus=3D1, subbus=3D1 found-> vendor=3D0x8086, dev=3D0x8c31, revid=3D0x04 domain=3D0, bus=3D0, slot=3D20, func=3D0 class=3D0c-03-30, hdrtype=3D0x00, mfdev=3D0 cmdreg=3D0x0006, statreg=3D0x0290, cachelnsz=3D0 (dwords) lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) intpin=3Da, irq=3D11 powerspec 2 supports D0 D3 current D0 MSI supports 8 messages, 64 bit map[10]: type Memory, range 64, base 0xf7120000, size 16, enabled pcib0: allocated type 3 (0xf7120000-0xf712ffff) for rid 10 of pci0:0:20:0 pcib0: matched entry for 0.20.INTA pcib0: slot 20 INTA hardwired to IRQ 16 found-> vendor=3D0x8086, dev=3D0x8c3a, revid=3D0x04 domain=3D0, bus=3D0, slot=3D22, func=3D0 class=3D07-80-00, hdrtype=3D0x00, mfdev=3D1 cmdreg=3D0x0006, statreg=3D0x0010, cachelnsz=3D0 (dwords) lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) intpin=3Da, irq=3D11 powerspec 3 supports D0 D3 current D0 MSI supports 1 message, 64 bit map[10]: type Memory, range 64, base 0xf713c000, size 4, enabled pcib0: allocated type 3 (0xf713c000-0xf713c00f) for rid 10 of pci0:0:22:0 pcib0: matched entry for 0.22.INTA pcib0: slot 22 INTA hardwired to IRQ 16 found-> vendor=3D0x8086, dev=3D0x153a, revid=3D0x04 domain=3D0, bus=3D0, slot=3D25, func=3D0 class=3D02-00-00, hdrtype=3D0x00, mfdev=3D0 cmdreg=3D0x0007, statreg=3D0x0010, cachelnsz=3D0 (dwords) lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) intpin=3Da, irq=3D3 powerspec 2 supports D0 D3 current D0 MSI supports 1 message, 64 bit map[10]: type Memory, range 32, base 0xf7100000, size 17, enabled pcib0: allocated type 3 (0xf7100000-0xf711ffff) for rid 10 of pci0:0:25:0 map[14]: type Memory, range 32, base 0xf7139000, size 12, enabled pcib0: allocated type 3 (0xf7139000-0xf7139fff) for rid 14 of pci0:0:25:0 map[18]: type I/O Port, range 32, base 0xf040, size 5, enabled pcib0: allocated type 4 (0xf040-0xf05f) for rid 18 of pci0:0:25:0 pcib0: matched entry for 0.25.INTA pcib0: slot 25 INTA hardwired to IRQ 20 found-> vendor=3D0x8086, dev=3D0x8c2d, revid=3D0x04 domain=3D0, bus=3D0, slot=3D26, func=3D0 class=3D0c-03-20, hdrtype=3D0x00, mfdev=3D0 cmdreg=3D0x0006, statreg=3D0x0290, cachelnsz=3D0 (dwords) lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) intpin=3Da, irq=3D11 powerspec 2 supports D0 D3 current D0 map[10]: type Memory, range 32, base 0xf7138000, size 10, enabled pcib0: allocated type 3 (0xf7138000-0xf71383ff) for rid 10 of pci0:0:26:0 pcib0: matched entry for 0.26.INTA pcib0: slot 26 INTA hardwired to IRQ 16 ehci early: SMM active, request owner change found-> vendor=3D0x8086, dev=3D0x8c20, revid=3D0x04 domain=3D0, bus=3D0, slot=3D27, func=3D0 class=3D04-03-00, hdrtype=3D0x00, mfdev=3D0 cmdreg=3D0x0006, statreg=3D0x0010, cachelnsz=3D16 (dwords) lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) intpin=3Da, irq=3D11 powerspec 2 supports D0 D3 current D0 MSI supports 1 message, 64 bit map[10]: type Memory, range 64, base 0xf7130000, size 14, enabled pcib0: allocated type 3 (0xf7130000-0xf7133fff) for rid 10 of pci0:0:27:0 pcib0: matched entry for 0.27.INTA pcib0: slot 27 INTA hardwired to IRQ 22 found-> vendor=3D0x8086, dev=3D0x8c10, revid=3D0xd4 domain=3D0, bus=3D0, slot=3D28, func=3D0 class=3D06-04-00, hdrtype=3D0x01, mfdev=3D1 cmdreg=3D0x0007, statreg=3D0x0010, cachelnsz=3D16 (dwords) lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) intpin=3Da, irq=3D11 powerspec 3 supports D0 D3 current D0 MSI supports 1 message pcib0: matched entry for 0.28.INTA pcib0: slot 28 INTA hardwired to IRQ 16 secbus=3D2, subbus=3D2 found-> vendor=3D0x8086, dev=3D0x8c14, revid=3D0xd4 domain=3D0, bus=3D0, slot=3D28, func=3D2 class=3D06-04-00, hdrtype=3D0x01, mfdev=3D1 cmdreg=3D0x0007, statreg=3D0x0010, cachelnsz=3D16 (dwords) lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) intpin=3Dc, irq=3D10 powerspec 3 supports D0 D3 current D0 MSI supports 1 message pcib0: matched entry for 0.28.INTC pcib0: slot 28 INTC hardwired to IRQ 18 secbus=3D3, subbus=3D3 found-> vendor=3D0x8086, dev=3D0x8c16, revid=3D0xd4 domain=3D0, bus=3D0, slot=3D28, func=3D3 class=3D06-04-00, hdrtype=3D0x01, mfdev=3D1 cmdreg=3D0x0007, statreg=3D0x0010, cachelnsz=3D16 (dwords) lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) intpin=3Dd, irq=3D5 powerspec 3 supports D0 D3 current D0 MSI supports 1 message pcib0: matched entry for 0.28.INTD pcib0: slot 28 INTD hardwired to IRQ 19 secbus=3D4, subbus=3D7 found-> vendor=3D0x8086, dev=3D0x8c18, revid=3D0xd4 domain=3D0, bus=3D0, slot=3D28, func=3D4 class=3D06-04-00, hdrtype=3D0x01, mfdev=3D1 cmdreg=3D0x0007, statreg=3D0x0010, cachelnsz=3D16 (dwords) lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) intpin=3Da, irq=3D11 powerspec 3 supports D0 D3 current D0 MSI supports 1 message pcib0: matched entry for 0.28.INTA pcib0: slot 28 INTA hardwired to IRQ 16 secbus=3D8, subbus=3D8 found-> vendor=3D0x8086, dev=3D0x8c1c, revid=3D0xd4 domain=3D0, bus=3D0, slot=3D28, func=3D6 class=3D06-04-00, hdrtype=3D0x01, mfdev=3D1 cmdreg=3D0x0007, statreg=3D0x0010, cachelnsz=3D16 (dwords) lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) intpin=3Dc, irq=3D10 powerspec 3 supports D0 D3 current D0 MSI supports 1 message pcib0: matched entry for 0.28.INTC pcib0: slot 28 INTC hardwired to IRQ 18 secbus=3D9, subbus=3D16 found-> vendor=3D0x8086, dev=3D0x8c1e, revid=3D0xd4 domain=3D0, bus=3D0, slot=3D28, func=3D7 class=3D06-04-00, hdrtype=3D0x01, mfdev=3D1 cmdreg=3D0x0007, statreg=3D0x0010, cachelnsz=3D16 (dwords) lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) intpin=3Dd, irq=3D5 powerspec 3 supports D0 D3 current D0 MSI supports 1 message pcib0: matched entry for 0.28.INTD pcib0: slot 28 INTD hardwired to IRQ 19 secbus=3D17, subbus=3D17 found-> vendor=3D0x8086, dev=3D0x8c26, revid=3D0x04 domain=3D0, bus=3D0, slot=3D29, func=3D0 class=3D0c-03-20, hdrtype=3D0x00, mfdev=3D0 cmdreg=3D0x0006, statreg=3D0x0290, cachelnsz=3D0 (dwords) lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) intpin=3Da, irq=3D5 powerspec 2 supports D0 D3 current D0 map[10]: type Memory, range 32, base 0xf7137000, size 10, enabled pcib0: allocated type 3 (0xf7137000-0xf71373ff) for rid 10 of pci0:0:29:0 pcib0: matched entry for 0.29.INTA pcib0: slot 29 INTA hardwired to IRQ 21 ehci early: SMM active, request owner change found-> vendor=3D0x8086, dev=3D0x8c4f, revid=3D0x04 domain=3D0, bus=3D0, slot=3D31, func=3D0 class=3D06-01-00, hdrtype=3D0x00, mfdev=3D1 cmdreg=3D0x0007, statreg=3D0x0210, cachelnsz=3D0 (dwords) lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) found-> vendor=3D0x8086, dev=3D0x282a, revid=3D0x04 domain=3D0, bus=3D0, slot=3D31, func=3D2 class=3D01-04-00, hdrtype=3D0x00, mfdev=3D0 cmdreg=3D0x0007, statreg=3D0x02b0, cachelnsz=3D0 (dwords) lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) intpin=3Db, irq=3D5 powerspec 3 supports D0 D3 current D0 MSI supports 1 message map[10]: type I/O Port, range 32, base 0xf090, size 3, enabled pcib0: allocated type 4 (0xf090-0xf097) for rid 10 of pci0:0:31:2 map[14]: type I/O Port, range 32, base 0xf080, size 2, enabled pcib0: allocated type 4 (0xf080-0xf083) for rid 14 of pci0:0:31:2 map[18]: type I/O Port, range 32, base 0xf070, size 3, enabled pcib0: allocated type 4 (0xf070-0xf077) for rid 18 of pci0:0:31:2 map[1c]: type I/O Port, range 32, base 0xf060, size 2, enabled pcib0: allocated type 4 (0xf060-0xf063) for rid 1c of pci0:0:31:2 map[20]: type I/O Port, range 32, base 0xf020, size 5, enabled pcib0: allocated type 4 (0xf020-0xf03f) for rid 20 of pci0:0:31:2 map[24]: type Memory, range 32, base 0xf7136000, size 11, enabled pcib0: allocated type 3 (0xf7136000-0xf71367ff) for rid 24 of pci0:0:31:2 pcib0: matched entry for 0.31.INTB pcib0: slot 31 INTB hardwired to IRQ 19 found-> vendor=3D0x8086, dev=3D0x8c22, revid=3D0x04 domain=3D0, bus=3D0, slot=3D31, func=3D3 class=3D0c-05-00, hdrtype=3D0x00, mfdev=3D0 cmdreg=3D0x0003, statreg=3D0x0280, cachelnsz=3D0 (dwords) lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) intpin=3Dc, irq=3D10 map[10]: type Memory, range 64, base 0xf7135000, size 8, enabled pcib0: allocated type 3 (0xf7135000-0xf71350ff) for rid 10 of pci0:0:31:3 map[20]: type I/O Port, range 32, base 0xf000, size 5, enabled pcib0: allocated type 4 (0xf000-0xf01f) for rid 20 of pci0:0:31:3 pcib0: matched entry for 0.31.INTC pcib0: slot 31 INTC hardwired to IRQ 18 random: harvesting attach, 8 bytes (4 bits) from hostb0 pcib1: irq 16 at device 1.0 on pci0 pcib0: allocated type 4 (0xe000-0xefff) for rid 1c of pcib1 pcib0: allocated type 3 (0xf4000000-0xf50fffff) for rid 20 of pcib1 pcib0: allocated type 3 (0xe0000000-0xf1ffffff) for rid 24 of pcib1 pcib1: domain 0 pcib1: secondary bus 1 pcib1: subordinate bus 1 pcib1: I/O decode 0xe000-0xefff pcib1: memory decode 0xf4000000-0xf50fffff pcib1: prefetched decode 0xe0000000-0xf1ffffff pcib1: special decode VGA pci1: on pcib1 pcib1: allocated bus range (1-1) for rid 0 of pci1 pci1: domain=3D0, physical bus=3D1 found-> vendor=3D0x10de, dev=3D0x0ff6, revid=3D0xa1 domain=3D0, bus=3D1, slot=3D0, func=3D0 class=3D03-00-00, hdrtype=3D0x00, mfdev=3D1 cmdreg=3D0x0007, statreg=3D0x0010, cachelnsz=3D16 (dwords) lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) intpin=3Da, irq=3D11 powerspec 3 supports D0 D3 current D0 MSI supports 1 message, 64 bit map[10]: type Memory, range 32, base 0xf4000000, size 24, enabled pcib1: allocated memory range (0xf4000000-0xf4ffffff) for rid 10 of pci0:1:= 0:0 map[14]: type Prefetchable Memory, range 64, base 0xe0000000, size = 28, enabled pcib1: allocated prefetch range (0xe0000000-0xefffffff) for rid 14 of pci0:= 1:0:0 map[1c]: type Prefetchable Memory, range 64, base 0xf0000000, size = 25, enabled pcib1: allocated prefetch range (0xf0000000-0xf1ffffff) for rid 1c of pci0:= 1:0:0 map[24]: type I/O Port, range 32, base 0xe000, size 7, enabled pcib1: allocated I/O port range (0xe000-0xe07f) for rid 24 of pci0:1:0:0 pcib1: matched entry for 1.0.INTA pcib1: slot 0 INTA hardwired to IRQ 16 found-> vendor=3D0x10de, dev=3D0x0e1b, revid=3D0xa1 domain=3D0, bus=3D1, slot=3D0, func=3D1 class=3D04-03-00, hdrtype=3D0x00, mfdev=3D1 cmdreg=3D0x0006, statreg=3D0x0010, cachelnsz=3D16 (dwords) lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) intpin=3Db, irq=3D10 powerspec 3 supports D0 D3 current D0 MSI supports 1 message, 64 bit map[10]: type Memory, range 32, base 0xf5080000, size 14, enabled pcib1: allocated memory range (0xf5080000-0xf5083fff) for rid 10 of pci0:1:= 0:1 pcib1: matched entry for 1.0.INTB pcib1: slot 0 INTB hardwired to IRQ 17 vgapci0: port 0xe000-0xe07f mem 0xf4000000-0xf4fff= fff,0xe0000000-0xefffffff,0xf0000000-0xf1ffffff irq 16 at device 0.0 on pci1 nvidia0: on vgapci0 vgapci0: child nvidia0 requested pci_enable_io vgapci0: attempting to allocate 1 MSI vectors (1 supported) msi: routing MSI IRQ 264 to local APIC 0 vector 59 vgapci0: using IRQ 264 for MSI vgapci0: child nvidia0 requested pci_enable_io random: harvesting attach, 8 bytes (4 bits) from nvidia0 vgapci0: Boot video device random: harvesting attach, 8 bytes (4 bits) from vgapci0 hdac0: mem 0xf5080000-0xf5083fff irq 17 at= device 0.1 on pci1 hdac0: PCI card vendor: 0x1028, device: 0x05cc hdac0: HDA Driver Revision: 20120126_0002 hdac0: Config options: on=3D0x00000000 off=3D0x00000000 hdac0: attempting to allocate 1 MSI vectors (1 supported) msi: routing MSI IRQ 265 to local APIC 0 vector 60 hdac0: using IRQ 265 for MSI hdac0: Caps: OSS 4, ISS 4, BSS 0, NSDO 4, 64bit, CORB 256, RIRB 256 random: harvesting attach, 8 bytes (4 bits) from hdac0 random: harvesting attach, 8 bytes (4 bits) from pci1 random: harvesting attach, 8 bytes (4 bits) from pcib1 xhci0: mem 0xf7120000-0xf712ffff irq = 16 at device 20.0 on pci0 xhci0: 32 bytes context size, 64-bit DMA xhci0: attempting to allocate 1 MSI vectors (8 supported) msi: routing MSI IRQ 266 to local APIC 0 vector 61 xhci0: using IRQ 266 for MSI xhci0: MSI enabled xhci0: Port routing mask set to 0xffffffff usbus0 on xhci0 xhci0: usbpf: Attached random: harvesting attach, 8 bytes (4 bits) from usbus0 random: harvesting attach, 8 bytes (4 bits) from xhci0 pci0: at device 22.0 (no driver attached) em0: port 0xf040-0xf05f mem 0x= f7100000-0xf711ffff,0xf7139000-0xf7139fff irq 20 at device 25.0 on pci0 em0: attempting to allocate 1 MSI vectors (1 supported) msi: routing MSI IRQ 267 to local APIC 0 vector 62 em0: using IRQ 267 for MSI em0: Using an MSI interrupt em0: bpf attached em0: Ethernet address: 34:e6:d7:3c:4a:93 em0: netmap queues/slots: TX 1/1024, RX 1/1024 random: harvesting attach, 8 bytes (4 bits) from em0 ehci0: mem 0xf7138000-0xf71383f= f irq 16 at device 26.0 on pci0 ioapic0: routing intpin 16 (PCI IRQ 16) to lapic 0 vector 63 usbus1: EHCI version 1.0 usbus1 on ehci0 ehci0: usbpf: Attached random: harvesting attach, 8 bytes (4 bits) from usbus1 random: harvesting attach, 8 bytes (4 bits) from ehci0 hdac1: mem 0xf7130000-0xf7133fff irq 22 a= t device 27.0 on pci0 hdac1: PCI card vendor: 0x1028, device: 0x05cc hdac1: HDA Driver Revision: 20120126_0002 hdac1: Config options: on=3D0x00000000 off=3D0x00000000 hdac1: attempting to allocate 1 MSI vectors (1 supported) msi: routing MSI IRQ 268 to local APIC 0 vector 64 hdac1: using IRQ 268 for MSI hdac1: Caps: OSS 4, ISS 4, BSS 0, NSDO 1, 64bit, CORB 256, RIRB 256 random: harvesting attach, 8 bytes (4 bits) from hdac1 pcib2: irq 16 at device 28.0 on pci0 pcib2: domain 0 pcib2: secondary bus 2 pcib2: subordinate bus 2 pci2: on pcib2 pcib2: allocated bus range (2-2) for rid 0 of pci2 pci2: domain=3D0, physical bus=3D2 random: harvesting attach, 8 bytes (4 bits) from pci2 random: harvesting attach, 8 bytes (4 bits) from pcib2 pcib3: irq 18 at device 28.2 on pci0 pcib0: allocated type 3 (0xf7000000-0xf70fffff) for rid 20 of pcib3 pcib3: domain 0 pcib3: secondary bus 3 pcib3: subordinate bus 3 pcib3: memory decode 0xf7000000-0xf70fffff pci3: on pcib3 pcib3: allocated bus range (3-3) for rid 0 of pci3 pci3: domain=3D0, physical bus=3D3 found-> vendor=3D0x8086, dev=3D0x4232, revid=3D0x00 domain=3D0, bus=3D3, slot=3D0, func=3D0 class=3D02-80-00, hdrtype=3D0x00, mfdev=3D0 cmdreg=3D0x0006, statreg=3D0x0010, cachelnsz=3D16 (dwords) lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) intpin=3Da, irq=3D10 powerspec 3 supports D0 D3 current D0 MSI supports 1 message, 64 bit map[10]: type Memory, range 64, base 0xf7000000, size 13, enabled pcib3: allocated memory range (0xf7000000-0xf7001fff) for rid 10 of pci0:3:= 0:0 pcib3: matched entry for 3.0.INTA pcib3: slot 0 INTA hardwired to IRQ 18 iwn0: mem 0xf7000000-0xf7001fff irq 18 at device 0.0= on pci3 iwn0: attempting to allocate 1 MSI vectors (1 supported) msi: routing MSI IRQ 269 to local APIC 0 vector 65 iwn0: using IRQ 269 for MSI iwn0: MIMO 1T2R, MoW, address 00:24:d6:7a:03:ce iwn0: 11a rates: 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps iwn0: 11b rates: 1Mbps 2Mbps 5.5Mbps 11Mbps iwn0: 11g rates: 1Mbps 2Mbps 5.5Mbps 11Mbps 6Mbps 9Mbps 12Mbps 18Mbps 24Mbp= s 36Mbps 48Mbps 54Mbps iwn0: 1T2R iwn0: 11na MCS 20MHz iwn0: MCS 0-7: 6.5Mbps - 65Mbps iwn0: 11na MCS 20MHz SGI iwn0: MCS 0-7: 7Mbps - 72Mbps iwn0: 11na MCS 40MHz: iwn0: MCS 0-7: 13.5Mbps - 135Mbps iwn0: 11na MCS 40MHz SGI: iwn0: MCS 0-7: 15Mbps - 150Mbps iwn0: 11ng MCS 20MHz iwn0: MCS 0-7: 6.5Mbps - 65Mbps iwn0: 11ng MCS 20MHz SGI iwn0: MCS 0-7: 7Mbps - 72Mbps iwn0: 11ng MCS 40MHz: iwn0: MCS 0-7: 13.5Mbps - 135Mbps iwn0: 11ng MCS 40MHz SGI: iwn0: MCS 0-7: 15Mbps - 150Mbps random: harvesting attach, 8 bytes (4 bits) from iwn0 random: harvesting attach, 8 bytes (4 bits) from pci3 random: harvesting attach, 8 bytes (4 bits) from pcib3 pcib4: irq 19 at device 28.3 on pci0 pcib0: allocated type 4 (0xd000-0xdfff) for rid 1c of pcib4 pcib0: allocated type 3 (0xf6500000-0xf6efffff) for rid 20 of pcib4 pcib0: allocated type 3 (0xf3500000-0xf3efffff) for rid 24 of pcib4 pcib4: domain 0 pcib4: secondary bus 4 pcib4: subordinate bus 7 pcib4: I/O decode 0xd000-0xdfff pcib4: memory decode 0xf6500000-0xf6efffff pcib4: prefetched decode 0xf3500000-0xf3efffff pci4: on pcib4 pcib4: allocated bus range (4-4) for rid 0 of pci4 pci4: domain=3D0, physical bus=3D4 random: harvesting attach, 8 bytes (4 bits) from pci4 random: harvesting attach, 8 bytes (4 bits) from pcib4 pcib5: irq 16 at device 28.4 on pci0 pcib0: allocated type 4 (0xc000-0xcfff) for rid 1c of pcib5 pcib0: allocated type 3 (0xf5b00000-0xf64fffff) for rid 20 of pcib5 pcib0: allocated type 3 (0xf2b00000-0xf34fffff) for rid 24 of pcib5 pcib5: domain 0 pcib5: secondary bus 8 pcib5: subordinate bus 8 pcib5: I/O decode 0xc000-0xcfff pcib5: memory decode 0xf5b00000-0xf64fffff pcib5: prefetched decode 0xf2b00000-0xf34fffff pci5: on pcib5 pcib5: allocated bus range (8-8) for rid 0 of pci5 pci5: domain=3D0, physical bus=3D8 random: harvesting attach, 8 bytes (4 bits) from pci5 random: harvesting attach, 8 bytes (4 bits) from pcib5 pcib6: irq 18 at device 28.6 on pci0 pcib0: allocated type 4 (0xa000-0xbfff) for rid 1c of pcib6 pcib0: allocated type 3 (0xf5100000-0xf5afffff) for rid 20 of pcib6 pcib0: allocated type 3 (0xf2100000-0xf2afffff) for rid 24 of pcib6 pcib6: domain 0 pcib6: secondary bus 9 pcib6: subordinate bus 16 pcib6: I/O decode 0xa000-0xbfff pcib6: memory decode 0xf5100000-0xf5afffff pcib6: prefetched decode 0xf2100000-0xf2afffff pci6: on pcib6 pcib6: allocated bus range (9-9) for rid 0 of pci6 pci6: domain=3D0, physical bus=3D9 random: harvesting attach, 8 bytes (4 bits) from pci6 random: harvesting attach, 8 bytes (4 bits) from pcib6 pcib7: irq 19 at device 28.7 on pci0 pcib0: allocated type 3 (0xf6f00000-0xf6ffffff) for rid 20 of pcib7 pcib7: domain 0 pcib7: secondary bus 17 pcib7: subordinate bus 17 pcib7: memory decode 0xf6f00000-0xf6ffffff pci7: on pcib7 pcib7: allocated bus range (17-17) for rid 0 of pci7 pci7: domain=3D0, physical bus=3D17 found-> vendor=3D0x1217, dev=3D0x8520, revid=3D0x01 domain=3D0, bus=3D17, slot=3D0, func=3D0 class=3D08-05-01, hdrtype=3D0x00, mfdev=3D0 cmdreg=3D0x0006, statreg=3D0x0010, cachelnsz=3D16 (dwords) lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns) intpin=3Da, irq=3D5 powerspec 3 supports D0 D3 current D0 MSI supports 1 message, 64 bit, vector masks map[10]: type Memory, range 32, base 0xf6f01000, size 12, enabled pcib7: allocated memory range (0xf6f01000-0xf6f01fff) for rid 10 of pci0:17= :0:0 map[14]: type Memory, range 32, base 0xf6f00000, size 11, enabled pcib7: allocated memory range (0xf6f00000-0xf6f007ff) for rid 14 of pci0:17= :0:0 pcib7: matched entry for 17.0.INTA pcib7: slot 0 INTA hardwired to IRQ 19 sdhci_pci0: mem 0xf6f01000-0xf6f01fff,0xf6f00000-0xf6f007f= f irq 19 at device 0.0 on pci7 sdhci_pci0: attempting to allocate 1 MSI vectors (1 supported) msi: routing MSI IRQ 270 to local APIC 0 vector 66 sdhci_pci0: using IRQ 270 for MSI sdhci_pci0: Hardware doesn't specify timeout clock frequency, setting BROKE= N_TIMEOUT quirk. sdhci_pci0-slot0: 50MHz HS 1bit 3.3V 1.8V DMA sdhci_pci0-slot0: =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D REGISTER DUMP = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D sdhci_pci0-slot0: Sys addr: 0x00000000 | Version: 0x00000603 sdhci_pci0-slot0: Blk size: 0x00000000 | Blk cnt: 0x00000000 sdhci_pci0-slot0: Argument: 0x00000000 | Trn mode: 0x00000000 sdhci_pci0-slot0: Present: 0x00080000 | Host ctl: 0x00000000 sdhci_pci0-slot0: Power: 0x00000000 | Blk gap: 0x00000000 sdhci_pci0-slot0: Wake-up: 0x00000000 | Clock: 0x00000002 sdhci_pci0-slot0: Timeout: 0x00000000 | Int stat: 0x00000000 sdhci_pci0-slot0: Int enab: 0x01ff00fb | Sig enab: 0x01ff00fb sdhci_pci0-slot0: AC12 err: 0x00000000 | Slot int: 0x00000000 sdhci_pci0-slot0: Caps: 0x25fe3280 | Max curr: 0x005800c8 sdhci_pci0-slot0: =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 sdhci_pci0: 1 slot(s) allocated random: harvesting attach, 8 bytes (4 bits) from sdhci_pci0 random: harvesting attach, 8 bytes (4 bits) from pci7 random: harvesting attach, 8 bytes (4 bits) from pcib7 ehci1: mem 0xf7137000-0xf71373f= f irq 21 at device 29.0 on pci0 ioapic0: routing intpin 21 (PCI IRQ 21) to lapic 0 vector 67 usbus2: EHCI version 1.0 usbus2 on ehci1 ehci1: usbpf: Attached random: harvesting attach, 8 bytes (4 bits) from usbus2 random: harvesting attach, 8 bytes (4 bits) from ehci1 isab0: at device 31.0 on pci0 isa0: on isab0 random: harvesting attach, 8 bytes (4 bits) from isa0 random: harvesting attach, 8 bytes (4 bits) from isab0 ahci0: port 0xf090-0xf097,0xf080-0xf083,= 0xf070-0xf077,0xf060-0xf063,0xf020-0xf03f mem 0xf7136000-0xf71367ff irq 19 = at device 31.2 on pci0 ahci0: attempting to allocate 1 MSI vectors (1 supported) msi: routing MSI IRQ 271 to local APIC 0 vector 68 ahci0: using IRQ 271 for MSI ahci0: AHCI v1.30 with 5 6Gbps ports, Port Multiplier not supported ahci0: Caps: 64bit NCQ MPS SS ALP AL CLO 6Gbps PMD SSC PSC 32cmd EM eSATA 5= ports ahci0: Caps2: APST ahcich0: at channel 0 on ahci0 ahcich0: Caps: random: harvesting attach, 8 bytes (4 bits) from ahcich0 ahcich1: at channel 1 on ahci0 ahcich1: Caps: HPCP MPSP random: harvesting attach, 8 bytes (4 bits) from ahcich1 ahcich2: at channel 2 on ahci0 ahcich2: Caps: ESP random: harvesting attach, 8 bytes (4 bits) from ahcich2 ahcich3: at channel 3 on ahci0 ahcich3: Caps: ESP random: harvesting attach, 8 bytes (4 bits) from ahcich3 ahcich4: not probed (disabled) ahciem0: on ahci0 ahciem0: Caps: ALHD XMT SMB LED random: harvesting attach, 8 bytes (4 bits) from ahciem0 random: harvesting attach, 8 bytes (4 bits) from ahci0 ichsmb0: port 0xf000-0xf01f mem 0xf7135= 000-0xf71350ff irq 18 at device 31.3 on pci0 ioapic0: routing intpin 18 (PCI IRQ 18) to lapic 0 vector 69 smbus0: on ichsmb0 smb0: on smbus0 random: harvesting attach, 8 bytes (4 bits) from smb0 random: harvesting attach, 8 bytes (4 bits) from smbus0 random: harvesting attach, 8 bytes (4 bits) from ichsmb0 random: harvesting attach, 8 bytes (4 bits) from pci0 random: harvesting attach, 8 bytes (4 bits) from pcib0 acpi_lid0: on acpi0 random: harvesting attach, 8 bytes (4 bits) from acpi_lid0 acpi_button0: on acpi0 random: harvesting attach, 8 bytes (4 bits) from acpi_button0 acpi_button1: on acpi0 random: harvesting attach, 8 bytes (4 bits) from acpi_button1 acpi_acad0: on acpi0 random: harvesting attach, 8 bytes (4 bits) from acpi_acad0 battery0: on acpi0 random: harvesting attach, 8 bytes (4 bits) from battery0 battery1: on acpi0 random: harvesting attach, 8 bytes (4 bits) from battery1 acpi_tz0: on acpi0 random: harvesting attach, 8 bytes (4 bits) from acpi_tz0 random: harvesting attach, 8 bytes (4 bits) from atdma0 random: harvesting attach, 8 bytes (4 bits) from fpupnp0 atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 atkbd: the current kbd controller command byte 0065 atkbd: keyboard ID 0x41ab (2) <7>kbdc: RESET_KBD return code:00fa <7>kbdc: RESET_KBD status:00aa kbd0 at atkbd0 kbd0: atkbd0, AT 101/102 (2), config:0x0, flags:0x1d0000 ioapic0: routing intpin 1 (ISA IRQ 1) to lapic 0 vector 70 atkbd0: [GIANT-LOCKED] random: harvesting attach, 8 bytes (4 bits) from atkbd0 psm0: unable to allocate IRQ random: harvesting attach, 8 bytes (4 bits) from atkbdc0 psmcpnp0: irq 12 on acpi0 psm0: current command byte:0065 <7>kbdc: TEST_AUX_PORT status:0000 <7>kbdc: RESET_AUX return code:00fa <7>kbdc: RESET_AUX status:00aa <7>kbdc: RESET_AUX ID:0000 <7>kbdc: RESET_AUX return code:00fa <7>kbdc: RESET_AUX status:00aa <7>kbdc: RESET_AUX ID:0000 <7>psm: status 00 02 64 <7>psm: status 00 00 64 <7>psm: status 00 03 64 <7>psm: status 00 03 64 <7>psm: data 08 00 00 <7>psm: status 00 00 14 <7>psm: status 73 03 0a <7>psm: status 00 02 64 psm0: irq 12 on atkbdc0 ioapic0: routing intpin 12 (ISA IRQ 12) to lapic 0 vector 71 psm0: [GIANT-LOCKED] psm0: model GlidePoint, device ID 0-00, 2 buttons psm0: config:00004000, flags:00000008, packet size:3 psm0: syncmask:c0, syncbits:00 random: harvesting attach, 8 bytes (4 bits) from psm0 random: harvesting attach, 8 bytes (4 bits) from psmcpnp0 ppc1: using extended I/O port range ACPI: Enabled 2 GPEs in block 00 to 3F random: harvesting attach, 8 bytes (4 bits) from acpi0 random: harvesting attach, 8 bytes (4 bits) from apic0 acpi0: wakeup code va 0xfffffe060bb12000 pa 0x88000 random: harvesting attach, 8 bytes (4 bits) from nexus0 ahc_isa_identify 0: ioport 0xc00 alloc failed ahc_isa_identify 1: ioport 0x1c00 alloc failed ahc_isa_identify 2: ioport 0x2c00 alloc failed ahc_isa_identify 3: ioport 0x3c00 alloc failed ahc_isa_identify 4: ioport 0x4c00 alloc failed ahc_isa_identify 5: ioport 0x5c00 alloc failed ahc_isa_identify 6: ioport 0x6c00 alloc failed ahc_isa_identify 7: ioport 0x7c00 alloc failed ahc_isa_identify 8: ioport 0x8c00 alloc failed ahc_isa_identify 9: ioport 0x9c00 alloc failed ahc_isa_identify 10: ioport 0xac00 alloc failed ahc_isa_identify 11: ioport 0xbc00 alloc failed ahc_isa_identify 12: ioport 0xcc00 alloc failed ahc_isa_identify 13: ioport 0xdc00 alloc failed ahc_isa_identify 14: ioport 0xec00 alloc failed pcib0: allocated type 3 (0xb0000-0xb07ff) for rid 0 of orm0 pcib0: allocated type 3 (0xb0800-0xb0fff) for rid 0 of orm0 pcib0: allocated type 3 (0xb1000-0xb17ff) for rid 0 of orm0 pcib0: allocated type 3 (0xb1800-0xb1fff) for rid 0 of orm0 pcib0: allocated type 3 (0xb2000-0xb27ff) for rid 0 of orm0 pcib0: allocated type 3 (0xb2800-0xb2fff) for rid 0 of orm0 pcib0: allocated type 3 (0xb3000-0xb37ff) for rid 0 of orm0 pcib0: allocated type 3 (0xb3800-0xb3fff) for rid 0 of orm0 pcib0: allocated type 3 (0xb4000-0xb47ff) for rid 0 of orm0 pcib0: allocated type 3 (0xb4800-0xb4fff) for rid 0 of orm0 pcib0: allocated type 3 (0xb5000-0xb57ff) for rid 0 of orm0 pcib0: allocated type 3 (0xb5800-0xb5fff) for rid 0 of orm0 pcib0: allocated type 3 (0xb6000-0xb67ff) for rid 0 of orm0 pcib0: allocated type 3 (0xb6800-0xb6fff) for rid 0 of orm0 pcib0: allocated type 3 (0xb7000-0xb77ff) for rid 0 of orm0 pcib0: allocated type 3 (0xb7800-0xb7fff) for rid 0 of orm0 pcib0: allocated type 3 (0xb8000-0xb87ff) for rid 0 of orm0 pcib0: allocated type 3 (0xb8800-0xb8fff) for rid 0 of orm0 pcib0: allocated type 3 (0xb9000-0xb97ff) for rid 0 of orm0 pcib0: allocated type 3 (0xb9800-0xb9fff) for rid 0 of orm0 pcib0: allocated type 3 (0xba000-0xba7ff) for rid 0 of orm0 pcib0: allocated type 3 (0xba800-0xbafff) for rid 0 of orm0 pcib0: allocated type 3 (0xbb000-0xbb7ff) for rid 0 of orm0 pcib0: allocated type 3 (0xbb800-0xbbfff) for rid 0 of orm0 pcib0: allocated type 3 (0xbc000-0xbc7ff) for rid 0 of orm0 pcib0: allocated type 3 (0xbc800-0xbcfff) for rid 0 of orm0 pcib0: allocated type 3 (0xbd000-0xbd7ff) for rid 0 of orm0 pcib0: allocated type 3 (0xbd800-0xbdfff) for rid 0 of orm0 pcib0: allocated type 3 (0xbe000-0xbe7ff) for rid 0 of orm0 pcib0: allocated type 3 (0xbe800-0xbefff) for rid 0 of orm0 pcib0: allocated type 3 (0xbf000-0xbf7ff) for rid 0 of orm0 pcib0: allocated type 3 (0xbf800-0xbffff) for rid 0 of orm0 pcib0: allocated type 3 (0xdc000-0xdc7ff) for rid 0 of orm0 pcib0: allocated type 3 (0xdc800-0xdcfff) for rid 0 of orm0 pcib0: allocated type 3 (0xdd000-0xdd7ff) for rid 0 of orm0 pcib0: allocated type 3 (0xdd800-0xddfff) for rid 0 of orm0 pcib0: allocated type 3 (0xde000-0xde7ff) for rid 0 of orm0 pcib0: allocated type 3 (0xde800-0xdefff) for rid 0 of orm0 pcib0: allocated type 3 (0xdf000-0xdf7ff) for rid 0 of orm0 pcib0: allocated type 3 (0xdf800-0xdffff) for rid 0 of orm0 pcib0: allocated type 3 (0xe0000-0xe07ff) for rid 0 of orm0 pcib0: allocated type 3 (0xe0800-0xe0fff) for rid 0 of orm0 pcib0: allocated type 3 (0xe1000-0xe17ff) for rid 0 of orm0 pcib0: allocated type 3 (0xe1800-0xe1fff) for rid 0 of orm0 pcib0: allocated type 3 (0xe2000-0xe27ff) for rid 0 of orm0 pcib0: allocated type 3 (0xe2800-0xe2fff) for rid 0 of orm0 pcib0: allocated type 3 (0xe3000-0xe37ff) for rid 0 of orm0 pcib0: allocated type 3 (0xe3800-0xe3fff) for rid 0 of orm0 pcib0: allocated type 3 (0xe4000-0xe47ff) for rid 0 of orm0 pcib0: allocated type 3 (0xe4800-0xe4fff) for rid 0 of orm0 pcib0: allocated type 3 (0xe5000-0xe57ff) for rid 0 of orm0 pcib0: allocated type 3 (0xe5800-0xe5fff) for rid 0 of orm0 pcib0: allocated type 3 (0xe6000-0xe67ff) for rid 0 of orm0 pcib0: allocated type 3 (0xe6800-0xe6fff) for rid 0 of orm0 pcib0: allocated type 3 (0xe7000-0xe77ff) for rid 0 of orm0 pcib0: allocated type 3 (0xe7800-0xe7fff) for rid 0 of orm0 isa_probe_children: disabling PnP devices atkbdc: atkbdc0 already exists; skipping it atrtc: atrtc0 already exists; skipping it attimer: attimer0 already exists; skipping it sc: sc0 already exists; skipping it isa_probe_children: probing non-PnP devices sc0 failed to probe on isa0 vga0 failed to probe on isa0 pcib0: allocated type 4 (0x3f0-0x3f5) for rid 0 of fdc0 pcib0: allocated type 4 (0x3f7-0x3f7) for rid 1 of fdc0 fdc0 failed to probe at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 ppc0: cannot reserve I/O port range ppc0 failed to probe at irq 7 on isa0 pcib0: allocated type 4 (0x3f8-0x3f8) for rid 0 of uart0 uart0 failed to probe at port 0x3f8 irq 4 on isa0 pcib0: allocated type 4 (0x2f8-0x2f8) for rid 0 of uart1 uart1 failed to probe at port 0x2f8 irq 3 on isa0 wbwd0 failed to probe on isa0 isa_probe_children: probing PnP devices random: harvesting attach, 8 bytes (4 bits) from acpi_perf0 random: harvesting attach, 8 bytes (4 bits) from acpi_perf1 random: harvesting attach, 8 bytes (4 bits) from acpi_perf2 random: harvesting attach, 8 bytes (4 bits) from acpi_perf3 random: harvesting attach, 8 bytes (4 bits) from acpi_perf4 random: harvesting attach, 8 bytes (4 bits) from acpi_perf5 random: harvesting attach, 8 bytes (4 bits) from acpi_perf6 random: harvesting attach, 8 bytes (4 bits) from acpi_perf7 coretemp0: on cpu0 coretemp0: Setting TjMax=3D100 random: harvesting attach, 8 bytes (4 bits) from coretemp0 est0: on cpu0 random: harvesting attach, 8 bytes (4 bits) from cpufreq0 random: harvesting attach, 8 bytes (4 bits) from est0 coretemp1: on cpu1 coretemp1: Setting TjMax=3D100 random: harvesting attach, 8 bytes (4 bits) from coretemp1 est1: on cpu1 random: harvesting attach, 8 bytes (4 bits) from cpufreq1 random: harvesting attach, 8 bytes (4 bits) from est1 coretemp2: on cpu2 coretemp2: Setting TjMax=3D100 random: harvesting attach, 8 bytes (4 bits) from coretemp2 est2: on cpu2 random: harvesting attach, 8 bytes (4 bits) from cpufreq2 random: harvesting attach, 8 bytes (4 bits) from est2 coretemp3: on cpu3 coretemp3: Setting TjMax=3D100 random: harvesting attach, 8 bytes (4 bits) from coretemp3 est3: on cpu3 random: harvesting attach, 8 bytes (4 bits) from cpufreq3 random: harvesting attach, 8 bytes (4 bits) from est3 coretemp4: on cpu4 coretemp4: Setting TjMax=3D100 random: harvesting attach, 8 bytes (4 bits) from coretemp4 est4: on cpu4 random: harvesting attach, 8 bytes (4 bits) from cpufreq4 random: harvesting attach, 8 bytes (4 bits) from est4 coretemp5: on cpu5 coretemp5: Setting TjMax=3D100 random: harvesting attach, 8 bytes (4 bits) from coretemp5 est5: on cpu5 random: harvesting attach, 8 bytes (4 bits) from cpufreq5 random: harvesting attach, 8 bytes (4 bits) from est5 coretemp6: on cpu6 coretemp6: Setting TjMax=3D100 random: harvesting attach, 8 bytes (4 bits) from coretemp6 est6: on cpu6 random: harvesting attach, 8 bytes (4 bits) from cpufreq6 random: harvesting attach, 8 bytes (4 bits) from est6 coretemp7: on cpu7 coretemp7: Setting TjMax=3D100 random: harvesting attach, 8 bytes (4 bits) from coretemp7 est7: on cpu7 random: harvesting attach, 8 bytes (4 bits) from cpufreq7 random: harvesting attach, 8 bytes (4 bits) from est7 Device configuration finished. procfs registered lapic: Divisor 2, Frequency 49885587 Hz Timecounters tick every 1.000 msec vlan: initialized, using hash tables with chaining Linux ELF exec handler installed tcp_init: net.inet.tcp.tcbhashsize auto tuned to 65536 IPsec: Initialized Security Association Processing. ipfw2 (+ipv6) initialized, divert enabled, nat loadable, default to deny, l= ogging disabled DUMMYNET 0 with IPv6 initialized (100409) load_dn_sched dn_sched QFQ loaded load_dn_sched dn_sched RR loaded load_dn_sched dn_sched WF2Q+ loaded lo0: bpf attached load_dn_sched dn_sched FIFO loaded load_dn_sched dn_sched PRIO loaded hptrr: no controller detected. hptnr: no controller detected. hdacc0: at cad 0 on hdac0 hdaa0: at nid 1 on hdacc0 hdaa0: Subsystem ID: 0x102805cc hdaa0: NumGPIO=3D0 NumGPO=3D0 NumGPI=3D0 GPIWake=3D0 GPIUnsol=3D0 hdaa0: Original pins configuration: hdaa0: nid 0x as seq device conn jack loc color misc hdaa0: 4 585600f0 15 0 Digital-out None Digital 0x18 Unknown 0 hdaa0: 5 185600f0 15 0 Digital-out Jack Digital 0x18 Unknown 0 hdaa0: 6 585600f0 15 0 Digital-out None Digital 0x18 Unknown 0 hdaa0: 7 185600f0 15 0 Digital-out Jack Digital 0x18 Unknown 0 hdaa0: Patched pins configuration: hdaa0: nid 0x as seq device conn jack loc color misc hdaa0: 4 585600f0 15 0 Digital-out None Digital 0x18 Unknown 0 D= ISA hdaa0: 5 185600f0 15 0 Digital-out Jack Digital 0x18 Unknown 0 hdaa0: 6 585600f0 15 0 Digital-out None Digital 0x18 Unknown 0 D= ISA hdaa0: 7 185600f0 15 0 Digital-out Jack Digital 0x18 Unknown 0 hdaa0: 2 associations found: hdaa0: Association 0 (15) out: hdaa0: Pin nid=3D5 seq=3D0 hdaa0: Association 1 (15) out: hdaa0: Pin nid=3D7 seq=3D0 hdaa0: Tracing association 0 (15) hdaa0: Pin 5 traced to DAC 8 hdaa0: Association 0 (15) trace succeeded hdaa0: Tracing association 1 (15) hdaa0: Pin 7 traced to DAC 9 hdaa0: Association 1 (15) trace succeeded hdaa0: Looking for additional DAC for association 0 (15) hdaa0: Looking for additional DAC for association 1 (15) hdaa0: Tracing input monitor hdaa0: Tracing other input monitors hdaa0: Tracing beeper hdaa0: FG config/quirks: forcestereo ivref50 ivref80 ivref100 ivref pcm0: at nid 5 on hdaa0 pcm0: Playback: pcm0: Stream cap: 0x00000005 AC3 PCM pcm0: PCM cap: 0x000e07f0 16 20 24 bits, 32 44 48 88 96 176 192 KHz pcm0: DAC: 8 pcm0:=20 pcm0: nid=3D5 [pin: Digital-out (Jack)] pcm0: + <- nid=3D8 [audio output] [src: pcm] pcm0:=20 pcm0: Mixer "vol" -> "none": child=3D0x00000010 pcm0: Mixer "pcm": parent=3D"vol" pcm0: Soft PCM mixer ENABLED pcm0: Playback channel matrix is: unknown, assuming 7.1 (disconnected) random: harvesting attach, 8 bytes (4 bits) from pcm0 pcm1: at nid 7 on hdaa0 pcm1: Playback: pcm1: Stream cap: 0x00000005 AC3 PCM pcm1: PCM cap: 0x000e07f0 16 20 24 bits, 32 44 48 88 96 176 192 KHz pcm1: DAC: 9 pcm1:=20 pcm1: nid=3D7 [pin: Digital-out (Jack)] pcm1: + <- nid=3D9 [audio output] [src: pcm] pcm1:=20 pcm1: Mixer "vol" -> "none": child=3D0x00000010 pcm1: Mixer "pcm": parent=3D"vol" pcm1: Soft PCM mixer ENABLED pcm1: Playback channel matrix is: unknown, assuming 7.1 (disconnected) random: harvesting attach, 8 bytes (4 bits) from pcm1 random: harvesting attach, 8 bytes (4 bits) from hdaa0 random: harvesting attach, 8 bytes (4 bits) from hdacc0 hdacc1: at cad 0 on hdac1 hdaa1: at nid 1 on hdacc1 hdaa1: Subsystem ID: 0x102805cc hdaa1: NumGPIO=3D5 NumGPO=3D0 NumGPI=3D0 GPIWake=3D0 GPIUnsol=3D1 hdaa1: GPIO0: disabled hdaa1: GPIO1: disabled hdaa1: GPIO2: disabled hdaa1: GPIO3: disabled hdaa1: GPIO4: disabled hdaa1: Original pins configuration: hdaa1: nid 0x as seq device conn jack loc color misc hdaa1: 18 90a60140 4 0 Mic Fixed Digital Internal Unknown 1 hdaa1: 19 411111f0 15 0 Speaker None 1/8 Rear Black 1 hdaa1: 20 90170110 1 0 Speaker Fixed Analog Internal Unknown 1 hdaa1: 21 0221401f 1 15 Headphones Jack 1/8 Front Green 0 hdaa1: 22 01014020 2 0 Line-out Jack 1/8 Rear Green 0 hdaa1: 24 02a19031 3 1 Mic Jack 1/8 Front Pink 0 hdaa1: 25 01a1903e 3 14 Mic Jack 1/8 Rear Pink 0 hdaa1: 26 411111f0 15 0 Speaker None 1/8 Rear Black 1 hdaa1: 27 411111f0 15 0 Speaker None 1/8 Rear Black 1 hdaa1: 29 40700001 0 1 Modem-handset None Unknown 0x00 Unknown 0 hdaa1: 30 411111f0 15 0 Speaker None 1/8 Rear Black 1 hdaa1: Patching widget caps nid=3D29 0x00400400 -> 0x00700400 hdaa1: Patched pins configuration: hdaa1: nid 0x as seq device conn jack loc color misc hdaa1: 18 90a60140 4 0 Mic Fixed Digital Internal Unknown 1 hdaa1: 19 411111f0 15 0 Speaker None 1/8 Rear Black 1 D= ISA hdaa1: 20 90170110 1 0 Speaker Fixed Analog Internal Unknown 1 hdaa1: 21 0221401f 1 15 Headphones Jack 1/8 Front Green 0 hdaa1: 22 01014020 2 0 Line-out Jack 1/8 Rear Green 0 hdaa1: 24 02a19031 3 1 Mic Jack 1/8 Front Pink 0 hdaa1: 25 01a1903e 3 14 Mic Jack 1/8 Rear Pink 0 hdaa1: 26 411111f0 15 0 Speaker None 1/8 Rear Black 1 D= ISA hdaa1: 27 411111f0 15 0 Speaker None 1/8 Rear Black 1 D= ISA hdaa1: 30 411111f0 15 0 Speaker None 1/8 Rear Black 1 D= ISA hdaa1: 4 associations found: hdaa1: Association 0 (1) out: hdaa1: Pin nid=3D20 seq=3D0 hdaa1: Pin nid=3D21 seq=3D15 hdaa1: Association 1 (2) out: hdaa1: Pin nid=3D22 seq=3D0 hdaa1: Association 2 (3) in: hdaa1: Pin nid=3D24 seq=3D1 hdaa1: Pin nid=3D25 seq=3D14 hdaa1: Association 3 (4) in: hdaa1: Pin nid=3D18 seq=3D0 hdaa1: Tracing association 0 (1) hdaa1: Pin 20 traced to DAC 2 hdaa1: Pin 21 traced to DAC 2 and hpredir 0 hdaa1: Association 0 (1) trace succeeded hdaa1: Tracing association 1 (2) hdaa1: Pin 22 traced to DAC 3 hdaa1: Association 1 (2) trace succeeded hdaa1: Tracing association 2 (3) hdaa1: Pin 24 traced to ADC 8 hdaa1: Pin 25 traced to ADC 8 hdaa1: Association 2 (3) trace succeeded hdaa1: Tracing association 3 (4) hdaa1: Pin 18 traced to ADC 9 hdaa1: Association 3 (4) trace succeeded hdaa1: Looking for additional DAC for association 0 (1) hdaa1: Looking for additional DAC for association 1 (2) hdaa1: Looking for additional ADC for association 2 (3) hdaa1: Looking for additional ADC for association 3 (4) hdaa1: Tracing input monitor hdaa1: Tracing nid 11 to out hdaa1: nid 11 is input monitor hdaa1: Tracing other input monitors hdaa1: Tracing nid 18 to out hdaa1: Tracing nid 24 to out hdaa1: Tracing nid 25 to out hdaa1: Tracing beeper hdaa1: Headphones redirection for association 0 nid=3D21 using unsolicited = responses. hdaa1: Redirect output to: main hdaa1: FG config/quirks: forcestereo ivref50 ivref80 ivref100 ivref pcm2: at nid 20,21 and 24,25 on hdaa1 pcm2: Playback: pcm2: Stream cap: 0x00000001 PCM pcm2: PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz pcm2: DAC: 2 pcm2:=20 pcm2: nid=3D20 [pin: Speaker (Fixed)] pcm2: + <- nid=3D12 [audio mixer] [src: pcm, mix] pcm2: + <- nid=3D2 [audio output] [src: pcm] pcm2: + <- nid=3D11 [audio mixer] [src: mix] pcm2:=20 pcm2: nid=3D21 [pin: Headphones (Green Jack)] pcm2: + <- nid=3D12 [audio mixer] [src: pcm, mix] pcm2: + <- nid=3D2 [audio output] [src: pcm] pcm2: + <- nid=3D11 [audio mixer] [src: mix] pcm2:=20 pcm2: Record: pcm2: Stream cap: 0x00000001 PCM pcm2: PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz pcm2: ADC: 8 pcm2:=20 pcm2: nid=3D8 [audio input] pcm2: + <- nid=3D35 [audio selector] [src: speaker, line, mic, mix] pcm2: + <- nid=3D24 [pin: Mic (Pink Jack)] [src: mic] pcm2: + <- nid=3D25 [pin: Mic (Pink Jack)] [src: line] pcm2: + <- nid=3D29 [beep widget] [src: speaker] pcm2: + <- nid=3D11 [audio mixer] [src: mix] pcm2:=20 pcm2: Input Mix: pcm2:=20 pcm2: nid=3D11 [audio mixer] pcm2: + <- nid=3D24 [pin: Mic (Pink Jack)] [src: mic] pcm2: + <- nid=3D25 [pin: Mic (Pink Jack)] [src: line] pcm2: + <- nid=3D29 [beep widget] [src: speaker] pcm2:=20 pcm2: Master Volume (OSS: vol): -65/0dB pcm2: +- ctl 1 (nid 2 out): -65/0dB (88 steps) pcm2: +- ctl 10 (nid 12 in 0): mute pcm2: +- ctl 11 (nid 12 in 1): mute pcm2: +- ctl 18 (nid 20 in ): mute pcm2: +- ctl 19 (nid 21 in ): mute pcm2:=20 pcm2: PCM Volume (OSS: pcm): -65/0dB pcm2: +- ctl 1 (nid 2 out): -65/0dB (88 steps) pcm2: +- ctl 10 (nid 12 in 0): mute pcm2:=20 pcm2: Microphone Volume (OSS: mic): 0/30dB pcm2: +- ctl 3 (nid 8 in 0): -17/30dB (64 steps) + mute pcm2: +- ctl 5 (nid 11 in 0): -34/12dB (32 steps) + mute pcm2: +- ctl 22 (nid 24 out): 0/30dB (4 steps) pcm2:=20 pcm2: Line-in Volume (OSS: line): 0/36dB pcm2: +- ctl 3 (nid 8 in 0): -17/30dB (64 steps) + mute pcm2: +- ctl 6 (nid 11 in 1): -34/12dB (32 steps) + mute pcm2: +- ctl 23 (nid 25 out): 0/36dB (4 steps) pcm2:=20 pcm2: Speaker/Beep Volume (OSS: speaker): -17/12dB pcm2: +- ctl 3 (nid 8 in 0): -17/30dB (64 steps) + mute pcm2: +- ctl 9 (nid 11 in 4): -34/12dB (32 steps) + mute pcm2:=20 pcm2: Recording Level (OSS: rec): -17/30dB pcm2: +- ctl 3 (nid 8 in 0): -17/30dB (64 steps) + mute pcm2:=20 pcm2: Input Mix Level (OSS: mix): -17/30dB pcm2: +- ctl 3 (nid 8 in 0): -17/30dB (64 steps) + mute pcm2: +- ctl 11 (nid 12 in 1): mute pcm2:=20 pcm2: Input Monitoring Level (OSS: igain): 0/0dB pcm2: +- ctl 11 (nid 12 in 1): mute pcm2:=20 pcm2: Mixer "vol": pcm2: Mixer "pcm": pcm2: Mixer "speaker": pcm2: Mixer "line": pcm2: Mixer "mic": pcm2: Mixer "mix": pcm2: Mixer "rec": pcm2: Mixer "igain": pcm2: Mixer "ogain": pcm2: Playback channel set is: Front Left, Front Right,=20 pcm2: Playback channel matrix is: 2.0 (unknown) pcm2: Recording channel set is: Front Left, Front Right,=20 pcm2: Recording channel matrix is: 2.0 (disconnected) random: harvesting attach, 8 bytes (4 bits) from pcm2 pcm3: at nid 22 and 18 on hdaa1 pcm3: Playback: pcm3: Stream cap: 0x00000001 PCM pcm3: PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz pcm3: DAC: 3 pcm3:=20 pcm3: nid=3D22 [pin: Line-out (Green Jack)] pcm3: + <- nid=3D13 [audio mixer] [src: pcm, mix] pcm3: + <- nid=3D3 [audio output] [src: pcm] pcm3: + <- nid=3D11 [audio mixer] [src: mix] pcm3:=20 pcm3: Record: pcm3: Stream cap: 0x00000001 PCM pcm3: PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz pcm3: ADC: 9 pcm3:=20 pcm3: nid=3D9 [audio input] pcm3: + <- nid=3D34 [audio selector] [src: speaker, monitor] pcm3: + <- nid=3D29 [beep widget] [src: speaker] pcm3: + <- nid=3D18 [pin: Mic (Fixed)] [src: monitor] pcm3:=20 pcm3: Master Volume (OSS: vol): -65/0dB pcm3: +- ctl 2 (nid 3 out): -65/0dB (88 steps) pcm3: +- ctl 12 (nid 13 in 0): mute pcm3: +- ctl 13 (nid 13 in 1): mute pcm3: +- ctl 20 (nid 22 in ): mute pcm3:=20 pcm3: PCM Volume (OSS: pcm): -65/0dB pcm3: +- ctl 2 (nid 3 out): -65/0dB (88 steps) pcm3: +- ctl 12 (nid 13 in 0): mute pcm3:=20 pcm3: Microphone2 Volume (OSS: monitor): 0/36dB pcm3: +- ctl 4 (nid 9 in 0): -17/30dB (64 steps) + mute pcm3: +- ctl 16 (nid 18 out): 0/36dB (4 steps) pcm3:=20 pcm3: Speaker/Beep Volume (OSS: speaker) pcm3: +- ctl 4 (nid 9 in 0): -17/30dB (64 steps) + mute pcm3:=20 pcm3: Recording Level (OSS: rec): -17/30dB pcm3: +- ctl 4 (nid 9 in 0): -17/30dB (64 steps) + mute pcm3: +- ctl 16 (nid 18 out): 0/36dB (4 steps) pcm3:=20 pcm3: Input Mix Level (OSS: mix) pcm3: +- ctl 13 (nid 13 in 1): mute pcm3:=20 pcm3: Input Monitoring Level (OSS: igain): 0/0dB pcm3: +- ctl 13 (nid 13 in 1): mute pcm3:=20 pcm3: Mixer "vol": pcm3: Mixer "pcm": pcm3: Mixer "rec": pcm3: Mixer "igain": pcm3: Mixer "ogain": pcm3: Mixer "monitor": pcm3: Playback channel set is: Front Left, Front Right,=20 pcm3: Playback channel matrix is: 2.0 (disconnected) pcm3: Automatically set rec source to: monitor pcm3: Recording channel set is: Front Left, Front Right,=20 pcm3: Recording channel matrix is: 2.0 (unknown) random: harvesting attach, 8 bytes (4 bits) from pcm3 random: harvesting attach, 8 bytes (4 bits) from hdaa1 random: harvesting attach, 8 bytes (4 bits) from hdacc1 usbus0: 5.0Gbps Super Speed USB v3.0 usbus1: 480Mbps High Speed USB v2.0 usbus2: 480Mbps High Speed USB v2.0 ugen0.1: <0x8086> at usbus0 ugen1.1: at usbus1 uhub0: <0x8086 XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1> on usbus0 uhub1: on usbus1 ugen2.1: at usbus2 uhub2: on usbus2 ahcich0: AHCI reset... ahcich0: SATA connect time=3D900us status=3D00000123 ahcich0: AHCI reset: device found ahcich0: AHCI reset: device ready after 0ms ahcich1: AHCI reset... ahcich1: SATA connect time=3D1000us status=3D00000113 ahcich1: AHCI reset: device found ahcich1: AHCI reset: device ready after 0ms ahcich2: AHCI reset... ahcich2: SATA connect timeout time=3D10000us status=3D00000000 ahcich2: AHCI reset: device not found ahcich3: AHCI reset... ahcich3: SATA connect timeout time=3D10000us status=3D00000000 ahcich3: AHCI reset: device not found acpi_acad0: acline initialization start battery0: battery initialization start battery1: battery initialization start ada0 at ahcich0 bus 0 scbus0 target 0 lun 0 GEOM: new disk ada0 ada0: ATA8-ACS SATA 2.x device ada0: Serial Number W200TLZD ada0: 300.000MB/s transfers (SATA 2.x, UDMA5, PIO 8192bytes) ada0: Command Queueing enabled ada0: 715404MB (1465149168 512 byte sectors: 16H 63S/T 16383C) ada0: Previously was known as ad4 pass0 at ahcich0 bus 0 scbus0 target 0 lun 0 pass0: ATA8-ACS SATA 2.x device pass0: Serial Number W200TLZD pass0: 300.000MB/s transfers (SATA 2.x, UDMA5, PIO 8192bytes) pass0: Command Queueing enabled pass1 at ahcich1 bus 0 scbus1 target 0 lun 0 pass1: Removable CD-ROM SCSI device pass1: Serial Number K0121171240 pass1: 150.000MB/s transfers (SATA 1.x, UDMA5, ATAPI 12bytes, PIO 8192bytes) pass2 at ahciem0 bus 0 scbus4 target 0 lun 0 pass2: acpi_acad0: On Line SEMB S-E-S 2.00 device acpi_acad0: GEOM_PART: partition 1 on (ada0, MBR) is not aligned on 4096 by= tes GEOM_PART: partition 2 on (ada0, MBR) is not aligned on 4096 bytes GEOM_PART: partition 3 on (ada0, MBR) is not aligned on 4096 bytes acline initialization done, tried 1 times ses0 at ahciem0 bus 0 scbus4 target 0 lun 0 ses0: SEMB S-E-S 2.00 device ses0: SEMB SES Device ses0: Generation Code 0x0 has 1 SubEnclosures ses0: SubEnclosure ID 0, 1 Types With this ID, Descriptor Length 36, offse= t 8 ses0: WWN: 0 ses0: Type Desc[0]: Type 0x17, MaxElt 5, In Subenc 0, Text Length 0:=20 Netvsc initializing... done! lapic7: CMCI unmasked lapic6: CMCI unmasked lapic3: CMCI unmasked lapic2: CMCI unmasked lapic4: CMCI unmasked lapic5: CMCI unmasked SMP: AP CPU #1 Launched! cpu1 AP: ID: 0x00000001 VER: 0x01060015 LDR: 0x00000002 DFR: 0x00000000 x2API= C: 1 lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000011ff timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400 cmci: 0x000100f2 SMP: AP CPU #4 Launched! cpu4 AP: ID: 0x00000004 VER: 0x01060015 LDR: 0x00000010 DFR: 0x00000000 x2API= C: 1 lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000011ff timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400 cmci: 0x000000f2 SMP: AP CPU #7 Launched! cpu7 AP: ID: 0x00000007 VER: 0x01060015 LDR: 0x00000080 DFR: 0x00000000 x2API= C: 1 lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000011ff timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400 cmci: 0x000000f2 SMP: AP CPU #5 Launched! cpu5 AP: ID: 0x00000005 VER: 0x01060015 LDR: 0x00000020 DFR: 0x00000000 x2API= C: 1 lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000011ff timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400 cmci: 0x000000f2 SMP: AP CPU #3 Launched! cpu3 AP: ID: 0x00000003 VER: 0x01060015 LDR: 0x00000008 DFR: 0x00000000 x2API= C: 1 lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000011ff timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400 cmci: 0x000000f2 SMP: AP CPU #6 Launched! cpu6 AP: ID: 0x00000006 VER: 0x01060015 LDR: 0x00000040 DFR: 0x00000000 x2API= C: 1 lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000011ff timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400 cmci: 0x000000f2 SMP: AP CPU #2 Launched! cpu2 AP: ID: 0x00000002 VER: 0x01060015 LDR: 0x00000004 DFR: 0x00000000 x2API= C: 1 lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000011ff timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400 cmci: 0x000000f2 ioapic0: routing intpin 1 (ISA IRQ 1) to lapic 2 vector 48 ioapic0: routing intpin 9 (ISA IRQ 9) to lapic 4 vector 48 ioapic0: routing intpin 12 (ISA IRQ 12) to lapic 6 vector 48 ioapic0: routing intpin 18 (PCI IRQ 18) to lapic 2 vector 49 ioapic0: routing intpin 21 (PCI IRQ 21) to lapic 4 vector 49 msi: Assigning MSI-X IRQ 257 to local APIC 1 vector 48 Sleeping on "acmtx" with the following non-sleepable locks held: exclusive sleep mutex intr sources (intr sources) r =3D 0 (0xffffffff81b673= c0) locked @ /usr/src/sys/x86/x86/intr_machdep.c:540 KDB: stack backtrace: db_trace_self_wrapper() at 0xffffffff8037d1bb =3D db_trace_self_wrapper+0x2= b/frame 0xffffffff82c126f0 witness_warn() at 0xffffffff80a4489f =3D witness_warn+0x4af/frame 0xfffffff= f82c127c0 _sleep() at cd0 at ahcich1 bus 0 scbus1 target 0 lun 0 cd0: Removable CD-ROM SCSI device 0xcd0: Serial Number K0121171240 ffffffff809cd0: 150.000MB/s transfersf (1SATA 1.x, efUDMA5, dATAPI 12bytes,= PIO 8192bytes=3D)=20 _cd0: cd present [1 x 0 byte records] sleep+0x6d/frame 0xffffffff82c12860 AcpiOsAcquireMutex() at 0xffffffff8038b97f =3D AcpiOsAcquireMutex+0x17f/fra= me 0xffffffff82c128c0 AcpiUtAcquireMutex() at 0xffffffff803639ca =3D AcpiUtAcquireMutex+0x3a/fram= e 0xffffffff82c128f0 AcpiExEnterInterpreter() at 0xffffffff803517bb =3D AcpiExEnterInterpreter+0= xb/frame 0xffffffff82c12900 AcpiEvaluateObject() at 0xffffffff803588ad =3D AcpiEvaluateObject+0x24d/fra= me 0xffffffff82c12960 acpi_GetInteger() at 0xffffffff8038c4bd =3D acpi_GetInteger+0x3d/frame 0xff= ffffff82c129c0 dmar_find_hpet() at 0xffffffff80ecb3e1 =3D dmar_find_hpet+0x81/frame 0xffff= ffff82c12a00 iommu_map_msi_intr() at 0xffffffff80ed3d1d =3D iommu_map_msi_intr+0x2d/fram= e 0xffffffff82c12a50 msi_map() at 0xffffffff80ee9241 =3D msi_map+0x171/frame 0xffffffff82c12a90 hpet_remap_intr() at 0xffffffff80dc0095 =3D hpet_remap_intr+0xb5/frame 0xff= ffffff82c12ae0 msi_assign_cpu() at 0xffffffff80ee88f0 =3D msi_assign_cpu+0x1c0/frame 0xfff= fffff82c12b30 intr_shuffle_irqs() at 0xffffffff80edfb83 =3D intr_shuffle_irqs+0x73/frame = 0xffffffff82c12b50 mi_startup() at 0xffffffff8098a918 =3D mi_startup+0x118/frame 0xffffffff82c= 12b70 btext() at 0xffffffff802f902c =3D btext+0x2c lock order reversal: (Giant after non-sleepable) 1st 0xffffffff81b673c0 intr sources (intr sources) @ /usr/src/sys/x86/x86/= intr_machdep.c:540 2nd 0xffffffff81bbcb10 Giant (Giant) @ /usr/src/sys/kern/kern_synch.c:244 KDB: stack backtrace: db_trace_self_wrapper() at 0xffffffff8037d1bb =3D db_trace_self_wrapper+0x2= b/frame 0xffffffff82c126f0 witness_checkorder() at 0xffffffff80a434ca =3D witness_checkorder+0xe7a/fra= me 0xffffffff82c12770 __mtx_lock_flags() at 0xffffffff809ccc48 =3D __mtx_lock_flags+0xa8/frame 0x= ffffffff82c127c0 _sleep() at 0xffffffff809f226a =3D _sleep+0x3da/frame 0xffffffff82c12860 AcpiOsAcquireMutex() at 0xffffffff8038b97f =3D AcpiOsAcquireMutex+0x17f/fra= me 0xffffffff82c128c0 AcpiUtAcquireMutex() at 0xffffffff803639ca =3D AcpiUtAcquireMutex+0x3a/fram= e 0xffffffff82c128f0 AcpiExEnterInterpreter() at 0xffffffff803517bb =3D AcpiExEnterInterpreter+0= xb/frame 0xffffffff82c12900 AcpiEvaluateObject() at 0xffffffff803588ad =3D AcpiEvaluateObject+0x24d/fra= me 0xffffffff82c12960 acpi_GetInteger() at 0xffffffff8038c4bd =3D acpi_GetInteger+0x3d/frame 0xff= ffffff8 2c129c0 dmar_find_hpet() at 0xffffffff80ecb3e1 =3D dmar_find_hpet+0x81/frame 0xffff= ffff82c12a00 iommu_map_msi_intr() at 0xffffffff80ed3d1d =3D iommu_map_msi_intr+0x2d/fram= e 0xffffffff82c12a50 msi_map() at 0xffffffff80ee9241 =3D msi_map+0x171/frame 0xffffffff82c12a90 GEOM: new disk cd0 hpet_remap_intr() at 0xffffffff80dc0095 =3D hpet_remap_intr+0xb5/frame 0xff= ffffff82c12ae0 msi_assign_cpu() at 0xffffffff80ee88f0 =3D msi_assign_cpu+0x1c0/frame 0xfff= fffff82c12b30 intr_shuffle_irqs() at 0xffffffff80edfb83 =3D intr_shuffle_irqs+0x73/frame = 0xffffffff82c12b50 mi_startup() at 0xffffffff8098a918 =3D mi_startup+0x118/frame 0xffffffff82c= 12b70 btext() at 0xffffffff802f902c =3D btext+0x2c GEOM_PART: partition 1 on (diskid/DISK-W200TLZD, MBR) is not aligned on 409= 6 bytes GEOM_PART: partition 2 on (diskid/DISK-W200TLZD, MBR) is not aligned on 409= 6 bytes GEOM_PART: partition 3 on (diskid/DISK-W200TLZD, MBR) is not aligned on 409= 6 bytes Expensive timeout(9) function: 0xffffffff80883770(0xffffffff817648c8) 0.004= 70876 8 s msi: Assigning MSI-X IRQ 258 to local APIC 2 vector 50 Sleeping on "acmtx" with the following non-sleepable locks held: exclusive sleep mutex intr sources (intr sources) r =3D 0 (0xffffffff81b673= c0) locked @ /usr/src/sys/x86/x86/intr_machdep.c:540 KDB: stack backtrace: db_trace_self_wrapper() at 0xffffffff8037d1bb =3D db_trace_self_wrapper+0x2= b/frame 0xffffffff82c126b0 witness_warn() at 0xffffffff80a4489f =3D witness_warn+0x4af/frame 0xfffffff= f82c12780 _sleep() at 0xffffffff809f1efd =3D _sleep+0x6d/frame 0xffffffff82c12820 AcpiOsAcquireMutex() at 0xffffffff8038b97f =3D AcpiOsAcquireMutex+0x17f/fra= me 0xffffffff82c12880 AcpiUtAcquireMutex() at 0xffffffff803639ca =3D AcpiUtAcquireMutex+0x3a/fram= e 0xffffffff82c128b0 AcpiExEnterInterpreter() at 0xffffffff803517bb =3D AcpiExEnterInterpreter+0= xb/frame 0xffffffff82c128c0 AcpiNsEvaluate() at 0xffffffff8035539b =3D AcpiNsEvaluate+0x1cb/frame 0xfff= fffff82c12900 AcpiEvaluateObject() at 0xffffffff803587ca =3D AcpiEvaluateObject+0x16a/fra= me 0xffffffff82c12960 acpi_GetInteger() at 0xffffffff8038c4bd =3D acpi_GetInteger+0x3d/frame 0xff= ffffff8 2c129c0 dmar_find_hpet() at 0xffffffff80ecb3e1 =3D dmar_find_hpet+0x81/frame 0xffff= ffff82c12a00 iommu_map_msi_intr() at 0xffffffff80ed3d1d =3D iommu_map_msi_intr+0x2d/fram= e 0xffffffff82c12a50 msi_map() at 0xffffffff80ee9241 =3D msi_map+0x171/frame 0xffffffff82c12a90 hpet_remap_intr() at 0xffffffff80dc0095 =3D hpet_remap_intr+0xb5/frame 0xff= ffffff82c12ae0 msi_assign_cpu() at 0xffffffff80ee88f0 =3D msi_assign_cpu+0x1c0/frame 0xfff= fffff82c12b30 intr_shuffle_irqs() at 0xffffffff80edfb83 =3D intr_shuffle_irqs+0x73/frame = 0xffffffff82c12b50 mi_startup() at 0xffffffff8098a918 =3D mi_startup+0x118/frame 0xffffffff82c= 12b70 btext() at 0xffffffff802f902c =3D btext+0x2c msi: Assigning MSI-X IRQ 259 to local APIC 3 vector 48 msi: Assigning MSI-X IRQ 260 to local APIC 4 vector 50 msi: Assigning MSI-X IRQ 261 to local APIC 5 vector 48 msi: Assigning MSI-X IRQ 262 to local APIC 6 vector 49 msi: Assigning MSI-X IRQ 263 to local APIC 7 vector 48 msi: Assigning MSI IRQ 264 to local APIC 6 vector 50 msi: Assigning MSI IRQ 266 to local APIC 2 vector 51 msi: Assigning MSI IRQ 267 to local APIC 4 vector 51 msi: Assigning MSI IRQ 268 to local APIC 6 vector 51 msi: Assigning MSI IRQ 270 to local APIC 2 vector 52 msi: Assigning MSI IRQ 271 to local APIC 4 vector 52 SMP: passed TSC synchronization test TSC timecounter discards lower 1 bit(s) Timecounter "TSC-low" frequency 1396796100 Hz quality 1000 WARNING: WITNESS option enabled, expect reduced performance. WARNING: DIAGNOSTIC option enabled, expect reduced performance. battery0: battery initialization done, tried 1 times Root mount waiting for: usbus2 usbus1 usbus0 uhub1: 2 ports with 2 removable, self powered random: harvesting attach, 8 bytes (4 bits) from uhub1 uhub2: 2 ports with 2 removable, self powered random: harvesting attach, 8 bytes (4 bits) from uhub2 uhub0: 21 ports with 21 removable, self powered random: harvesting attach, 8 bytes (4 bits) from uhub0 ugen2.2: at usbus2 uhub3: on = usbus2 ugen1.2: at usbus1 uhub4: on = usbus1 Root mount waiting for: usbus2 usbus1 uhub4: 6 ports with 6 removable, self powered random: harvesting attach, 8 bytes (4 bits) from uhub4 uhub3: 8 ports with 8 removable, self powered random: harvesting attach, 8 bytes (4 bits) from uhub3 ugen2.3: at usbus2 ugen1.3: at usbus1 Trying to mount root from ufs:/dev/ada0s4a [rw]... WARNING: / was not properly dismounted start_init: trying /sbin/init <118>Setting hostuuid: 3482a31e-f7d5-11e4-beac-34e6d73c4a93. <118>Setting hostid: 0x7ed217e0. <118>Starting file system checks: <118>/dev/ada0s1a: 5398 files, 316995 used, 444252 free (1516 frags, 55342 = blocks, 0.2% fragmentation) <118>/dev/ada0s1d: 175475 files, 947886 used, 1335905 free (14809 frags, 16= 5137 blocks, 0.6% fragmentation) <118>/dev/ada0s2a: 5403 files, 317180 used, 444067 free (659 frags, 55426 b= locks, 0.1% fragmentation) <118>/dev/ada0s2d: 174957 files, 943282 used, 1340509 free (749 frags, 1674= 70 blocks, 0.0% fragmentation) <118>/dev/ada0s3a: 7218 files, 476323 used, 284924 free (364 frags, 35570 b= locks, 0.0% fragmentation) <118>/dev/ada0s3d: 205182 files, 1103572 used, 1180219 free (347 frags, 147= 484 b locks, 0.0% fragmentation) <118>/dev/ada0s4a: 5646 files, 299863 used, 461384 free (968 frags, 57552 b= locks, 0.1% fragmentation) <118>/dev/ada0s4d: 208393 files, 1295230 used, 988561 free (13225 frags, 12= 1917 blocks, 0.6% fragmentation) <118>/dev/ada0s4e: 10478 files, 1167526 used, 1368345 free (2025 frags, 170= 790 blocks, 0.1% fragmentation) battery1: battery initialization failed, giving up <118>/dev/ada0s4f: 1343217 files, 11547082 used, 20950605 free (11133 frags= , 2617434 blocks, 0.0% fragmentation) <118>/dev/ada0s4g: 1850789 files, 22060589 used, 10437098 free (250314 frag= s, 1273348 blocks, 0.8% fragmentation) <118>/dev/ada0s4h: 56713 files, 23911910 used, 8585777 free (209 frags, 107= 3196 blocks, 0.0% fragmentation) <118>/dev/ada0s4i: 545090 files, 3812474 used, 1264325 free (19925 frags, 1= 55550 blocks, 0.4% fragmentation) <118>Mounting local file systems: linprocfs registered <118>. <118>ELF ldconfig path: /lib /usr/lib /usr/lib/compat /usr/local/lib /usr/l= ocal/lib/compat/pkg /usr/local/lib/R/lib /usr/local/lib/compat /usr/local/l= ib/gcc48 /usr/local/lib/gegl-0.2 /usr/local/lib/graphviz /usr/local/lib/lib= xul /usr/local/lib/mysql /usr/local/lib/nss /usr/local/lib/pth /usr/local/l= ib/qt4 /usr/local/lib/virtualbox /usr/local/llvm35/lib /usr/local/llvm36/lib <118>32-bit compatibility ldconfig path: /usr/lib32 /usr/local/lib32 /usr/l= ocal/lib32/compat /usr/local/lib32/wine <118>Setting hostname: localhost. <118>Setting up harvesting:[UMA],[FS_ATIME],SWI,INTERRUPT,NET_NG,NET_ETHER,= NET_TUN,MOUSE,KEYBOARD,ATTACH,CACHED <118>Feeding entropy:. wlan0: bpf attached wlan0: bpf attached wlan0: Ethernet address: 00:24:d6:7a:03:ce <118>Created wlan(4) interfaces: wlan0. <118>Starting dhclient. <118>em0: no link .............. giving up <118>/etc/rc.d/dhclient: WARNING: failed to start dhclient <118>Starting wpa_supplicant. <118>Starting dhclient. <118>wlan0: no link ... iwn0: iwn_read_firmware: ucode rev=3D0x08530501 <118>. panic: lock (sleep mutex) iwn0_com_lock not locked @ /usr/src/sys/dev/iwn/i= f_iwn.c:5356 cpuid =3D 2 KDB: stack backtrace: db_trace_self_wrapper() at 0xffffffff8037d1bb =3D db_trace_self_wrapper+0x2= b/frame 0xfffffe060ad34850 vpanic() at 0xffffffff809e9119 =3D vpanic+0x189/frame 0xfffffe060ad348d0 kassert_panic() at 0xffffffff809e8f82 =3D kassert_panic+0x132/frame 0xfffff= e060ad34940 __mtx_unlock_flags() at 0xffffffff809cd161 =3D __mtx_unlock_flags+0x71/fram= e 0xfffffe060ad34980 iwn_updateedca() at 0xffffffff8058c9da =3D iwn_updateedca+0x15a/frame 0xfff= ffe060ad349e0 taskqueue_run_locked() at 0xffffffff80a36ad0 =3D taskqueue_run_locked+0xf0/= frame 0xfffffe060ad34a40 taskqueue_thread_loop() at 0xffffffff80a375f8 =3D taskqueue_thread_loop+0x8= 8/frame 0xfffffe060ad34a70 fork_exit() at 0xffffffff809af194 =3D fork_exit+0x84/frame 0xfffffe060ad34a= b0 fork_trampoline() at 0xffffffff80d9a9be =3D fork_trampoline+0xe/frame 0xfff= ffe060ad34ab0 --- trap 0, rip =3D 0, rsp =3D 0, rbp =3D 0 --- KDB: enter: panic Reading symbols from /boot/kernel/geom_eli.ko...Reading symbols from /usr/l= ib/debug//boot/kernel/geom_eli.ko.debug...done. done. Loaded symbols for ... =2E.. Loaded symbols for /boot/kernel/linprocfs.ko #0 doadump (textdump=3D0) at pcpu.h:221 221 pcpu.h: No such file or directory. in pcpu.h (kgdb) #0 doadump (textdump=3D0) at pcpu.h:221 #1 0xffffffff8037af3e in db_dump (dummy=3D, dummy2=3D= false,=20 dummy3=3D0, dummy4=3D0x0) at /usr/src/sys/ddb/db_command.c:533 #2 0xffffffff8037aab1 in db_command (cmd_table=3D0x0) at /usr/src/sys/ddb/db_command.c:440 #3 0xffffffff8037a744 in db_command_loop () at /usr/src/sys/ddb/db_command.c:493 #4 0xffffffff8037d2fb in db_trap (type=3D, code=3D0) at /usr/src/sys/ddb/db_main.c:251 #5 0xffffffff80a26264 in kdb_trap (type=3D3, code=3D0, tf=3D) at /usr/src/sys/kern/subr_kdb.c:654 #6 0xffffffff80dba2c3 in trap (frame=3D0xfffffe060ad34780) at /usr/src/sys/amd64/amd64/trap.c:549 #7 0xffffffff80d9a48a in calltrap () at /usr/src/sys/amd64/amd64/exception.S:234 #8 0xffffffff80a2593e in kdb_enter (why=3D0xffffffff812a93ee "panic",=20 msg=3D0xffffffff80a2bb90 "UH\211AWAVATSH\203PI\211A\211= H\213\004%\201H\211E\201<%x\201") at cpufunc.h:63 #9 0xffffffff809e9139 in vpanic (fmt=3D,=20 ap=3D) at /usr/src/sys/kern/kern_shutdown.c:746 #10 0xffffffff809e8f82 in kassert_panic (fmt=3D) at /usr/src/sys/kern/kern_shutdown.c:643 #11 0xffffffff809cd161 in __mtx_unlock_flags (c=3D0xfffffe03d7ed0070, opts= =3D0,=20 file=3D0xffffffff80fcedd8 "/usr/src/sys/dev/iwn/if_iwn.c", line=3D5356) at /usr/src/sys/kern/kern_mutex.c:245 #12 0xffffffff8058c9da in iwn_updateedca (ic=3D) at /usr/src/sys/dev/iwn/if_iwn.c:5356 #13 0xffffffff80a36ad0 in taskqueue_run_locked (queue=3D0xfffff80006f62300) at /usr/src/sys/kern/subr_taskqueue.c:430 #14 0xffffffff80a375f8 in taskqueue_thread_loop (arg=3D) at /usr/src/sys/kern/subr_taskqueue.c:683 #15 0xffffffff809af194 in fork_exit ( callout=3D0xffffffff80a37570 ,=20 arg=3D0xfffffe03d7ed0118, frame=3D0xfffffe060ad34ac0) at /usr/src/sys/kern/kern_fork.c:1006 #16 0xffffffff80d9a9be in fork_trampoline () at /usr/src/sys/amd64/amd64/exception.S:609 #17 0x0000000000000000 in ?? () Current language: auto; currently minimal (kgdb)=20 ------------------------------------------------------------------------ ps -axlww UID PID PPID CPU PRI NI VSZ RSS MWCHAN STAT TT TIME COMMAND 0 0 0 0 -16 0 0 0 swapin DLs - 0:00.00 [kernel] 0 1 0 0 20 0 5320 140 wait DLs - 0:00.00 [init] 0 2 0 0 -16 0 0 0 - DL - 0:00.00 [rand_harvestq] 0 3 0 0 -16 0 0 0 crypto_w DL - 0:00.00 [crypto] 0 4 0 0 -16 0 0 0 crypto_r DL - 0:00.00 [crypto return= s] 0 5 0 0 -16 0 0 0 - RL - 0:00.00 [cam] 0 6 0 0 -16 0 0 0 waiting_ DL - 0:00.00 [sctp_iterator] 0 7 0 0 -16 0 0 0 idle DL - 0:00.00 [enc_daemon0] 0 8 0 0 -16 0 0 0 psleep DL - 0:00.00 [pagedaemon] 0 9 0 0 -16 0 0 0 psleep DL - 0:00.00 [vmdaemon] 0 10 0 0 -16 0 0 0 audit_wo DL - 0:00.00 [audit] 0 11 0 0 155 0 0 0 - RL - 0:00.00 [idle] 0 12 0 0 -64 0 0 0 - WL - 0:00.00 [intr] 0 13 0 0 -8 0 0 0 - DL - 0:00.00 [geom] 0 14 0 0 -68 0 0 0 - DL - 0:00.00 [usb] 0 15 0 0 -16 0 0 0 tzpoll DL - 0:00.00 [acpi_thermal] 0 16 0 0 155 0 0 0 pgzero DL - 0:00.00 [pagezero] 0 17 0 0 -16 0 0 0 psleep DL - 0:00.00 [bufdaemon] 0 18 0 0 16 0 0 0 syncer DL - 0:00.00 [syncer] 0 19 0 0 -16 0 0 0 vlruwt DL - 0:00.00 [vnlru] 0 20 1 0 52 0 13056 2008 wait Ds+ - 0:00.00 [sh] 0 192 20 0 52 0 13056 2500 wait D+ - 0:00.00 [sh] 0 343 1 0 46 0 20036 6288 - Rs - 0:00.00 [wpa_supplican= t] 0 346 192 0 52 0 13064 3300 wait D+ - 0:00.00 [sh] 0 353 346 0 45 0 10532 2364 nanslp D+ - 0:00.00 [dhclient] ------------------------------------------------------------------------ [Above was the second try (which is why all the fsck output is present), and was a verbose boot.] As I type, vmcore.5 is about half-copied over. I need to relocate shortly, so I may end up starting the copy over. Peace, david --=20 David H. Wolfskill david@catwhisker.org Those who would murder in the name of God or prophet are blasphemous coward= s. See http://www.catwhisker.org/~david/publickey.gpg for my public key. --mlnxvmnLyWgus2CN Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQJ8BAEBCgBmBQJWCoyeXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ4RThEMDY4QTIxMjc1MDZFRDIzODYzRTc4 QTY3RjlDOERFRjQxOTNCAAoJEIpn+cje9Bk7yGMP/2BXyXD6nFjtADgOC6q4AdXj w17X11jmqQNghuXH+yCP2RT78Wa3Xhp6L6i+ENpzwwchn1U0lsdeYJuCponeiue7 VL4ZteFFW7EvmFSfEX9EtgWTzc262BwDiCZN+/Vt6bsQ76fwaH8OKYxz5QHvBIi6 cM1Fie7ZarapFTwaJtXe1ew/WbuVuMdC8KY7tMTKzWYonOWcPPGM4aJjKLH38XCq agtmJg7sZ30lxt8LNnx9EGukpXNeykeENIYRuvEOFCA7PY7bwLbh8KPtG97bISVk x9ukDKh7gJTz2/4aYCEisA996Rcmo5tq9FZWOb6JPbkp6UzRaIDe2oATZvNLzSdi H9t40ZpHyf2MqrgfYi0ZTezpyRSzIggiiqD4MwnX2j0xncWGvZ7VO1zPSMebF3ic O6nnPowz7R2sfyYdtgWbCLxEOA4goa4cPj6ojw6SHKkVNyfGfQl0iH4n+LyJaOXy GUw2XWHmuSHrA/TrXd5LF/Yn/In8HSqF9io7p/WVyWFX5DQqr882oTRp9buz0KqK 7fOLUjgnsT9WNlcW9lvQP/HmJ27OKe4C7aURuJG6nFEtL80V68rlijDbDjvw7bPY ZbROZfHWZJQmEehnw78HsS6WTZLc/wu2cokSLimUjLbF3468EL8FlI+MNMvdwO7A gjhvx/KFO7KuahJRMSgI =xD15 -----END PGP SIGNATURE----- --mlnxvmnLyWgus2CN-- From owner-freebsd-current@freebsd.org Tue Sep 29 15:03:03 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F14A9A0C645 for ; Tue, 29 Sep 2015 15:03:03 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id E3403194D; Tue, 29 Sep 2015 15:03:03 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 47850392; Tue, 29 Sep 2015 15:03:02 +0000 (UTC) Date: Tue, 29 Sep 2015 15:02:59 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <1297397903.102.1443538980997.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1807001153.100.1443523948115.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1807001153.100.1443523948115.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD-tests - Build #1502 - Still Unstable MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD-tests X-Jenkins-Result: UNSTABLE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Sep 2015 15:03:04 -0000 FreeBSD_HEAD-tests - Build #1502 - Still Unstable: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1502/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1502/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1502/console Change summaries: No changes The failed test cases: 1 tests failed. FAILED: test-report.xml. Error Message: From owner-freebsd-current@freebsd.org Tue Sep 29 18:46:29 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 258CAA0A1EB for ; Tue, 29 Sep 2015 18:46:29 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 17764125A; Tue, 29 Sep 2015 18:46:29 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id D8E38428; Tue, 29 Sep 2015 18:46:27 +0000 (UTC) Date: Tue, 29 Sep 2015 18:46:24 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <397115640.104.1443552385379.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1297397903.102.1443538980997.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1297397903.102.1443538980997.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD-tests - Build #1503 - Still Unstable MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD-tests X-Jenkins-Result: UNSTABLE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Sep 2015 18:46:29 -0000 FreeBSD_HEAD-tests - Build #1503 - Still Unstable: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1503/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1503/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1503/console Change summaries: No changes The failed test cases: 1 tests failed. FAILED: test-report.xml. Error Message: From owner-freebsd-current@freebsd.org Tue Sep 29 19:12:03 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8D412A0B963 for ; Tue, 29 Sep 2015 19:12:03 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 689F318B7 for ; Tue, 29 Sep 2015 19:12:03 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: by mailman.ysv.freebsd.org (Postfix) id 6759BA0B960; Tue, 29 Sep 2015 19:12:03 +0000 (UTC) Delivered-To: current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4E24BA0B95E; Tue, 29 Sep 2015 19:12:03 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-ig0-x22d.google.com (mail-ig0-x22d.google.com [IPv6:2607:f8b0:4001:c05::22d]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1100A18B5; Tue, 29 Sep 2015 19:12:03 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: by igbkq10 with SMTP id kq10so87949227igb.0; Tue, 29 Sep 2015 12:12:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; bh=jXSgqf8hm2g3iqldOVV1gzjI1QrJ/jKUSoFbTZ/dVLQ=; b=NFvEy0dZxQeICl5jqedp/KiPvYyqRvNdU+LnfU3Y62PS/QVRvGmtEbfH5+l5HZC/iV 31DIbOXdJmSs2pz4nV5B+c7xOuD0qnfkvhd5FqNrJ5w+zdIFMaSCFOO0j+eDIH18ApEe 5WzQnE2N8qD+t+1cCZx3XHVFJcfh6FqVMlWtPRDuMBWyeqwjqLDHWGWaL/hhB2bIdf7P chAxbyV4xpYghORuHbNiynr9rwVDrrUDbT6BNALyN8SmcPY1Pck6Is9TzjbR/Q4LkvN9 gPXrJFHXr7gEzASt/BrMvjFVKbSgQHYRr6W5ylaSPB2cKa0RlYly5IiS20Q5BQ9umAon lbsQ== MIME-Version: 1.0 X-Received: by 10.50.60.3 with SMTP id d3mr394092igr.37.1443553922173; Tue, 29 Sep 2015 12:12:02 -0700 (PDT) Received: by 10.36.46.15 with HTTP; Tue, 29 Sep 2015 12:12:02 -0700 (PDT) In-Reply-To: <20150929130534.GI1125@albert.catwhisker.org> References: <20150929130534.GI1125@albert.catwhisker.org> Date: Tue, 29 Sep 2015 12:12:02 -0700 Message-ID: Subject: Re: head/amd64 @r288358: panic: lock (sleep mutex) iwn0_com_lock not locked @ /usr/src/sys/dev/iwn/if_iwn.c:5356 From: Adrian Chadd To: David Wolfskill , "current@freebsd.org" , "net@freebsd.org" Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Sep 2015 19:12:03 -0000 hi (please subscribe and email freebsd-wireless@ these things, I'm more likely to notice!) It looks due to my recent taskqueue change for updateedca. I'll go fix that today. Thanks, -a On 29 September 2015 at 06:05, David Wolfskill wrote= : > No known/observed issues with: > FreeBSD localhost 11.0-CURRENT FreeBSD 11.0-CURRENT #197 r288335M/288335= :1100079: Mon Sep 28 04:14:47 PDT 2015 root@localhost:/common/S4/obj/us= r/src/sys/CANARY amd64 > > on my laptop, but: > FreeBSD localhost 11.0-CURRENT FreeBSD 11.0-CURRENT #198 r288358M/288358= :1100079: Tue Sep 29 04:46:49 PDT 2015 root@localhost:/common/S4/obj/us= r/src/sys/CANARY amd64 > > was OK up to the point of attempting to establish a link using the > wlan0 interface (the underlying hardware for which is iwn on the laptop). > > I was able to get a crash dump, and am presently copying it to > (along with the > core.txt, which has already made it over). (I am 3 time zones east > of home, and will be spending the bulk of the day returning home > -- and thus, without ability to respond to email for a while). > > Here's an excerpt from the core.txt.5: > > localhost dumped core - see /var/crash/vmcore.5 > > Tue Sep 29 05:14:30 PDT 2015 > > FreeBSD localhost 11.0-CURRENT FreeBSD 11.0-CURRENT #198 r288358M/288358= :1100079: Tue Sep 29 04:46:49 PDT 2015 root@localhost:/common/S4/obj/us= r/src/sys/CANARY amd64 > > panic: lock (sleep mutex) iwn0_com_lock not locked @ /usr/src/sys/dev/iwn= /if_iwn.c:5356 > > GNU gdb 6.1.1 [FreeBSD] > ... > Unread portion of the kernel message buffer: > d: > ACPI: SSDT 0xFFFFF80006E30800 0005AA (v01 PmRef ApIst 00003000 INTL 2= 0120711) > ACPI: Dynamic OEM Table Load: > ACPI: SSDT 0xFFFFF800067F6A00 000119 (v01 PmRef ApCst 00003000 INTL 2= 0120711) > random: harvesting attach, 8 bytes (4 bits) from cpu1 > cpu2: Processor \_PR_.CPU2 (ACPI ID 3) -> APIC ID 4 > cpu2: on acpi0 > random: harvesting attach, 8 bytes (4 bits) from cpu2 > cpu3: Processor \_PR_.CPU3 (ACPI ID 4) -> APIC ID 6 > cpu3: on acpi0 > random: harvesting attach, 8 bytes (4 bits) from cpu3 > cpu4: Processor \_PR_.CPU4 (ACPI ID 5) -> APIC ID 1 > cpu4: on acpi0 > random: harvesting attach, 8 bytes (4 bits) from cpu4 > cpu5: Processor \_PR_.CPU5 (ACPI ID 6) -> APIC ID 3 > cpu5: on acpi0 > random: harvesting attach, 8 bytes (4 bits) from cpu5 > cpu6: Processor \_PR_.CPU6 (ACPI ID 7) -> APIC ID 5 > cpu6: on acpi0 > random: harvesting attach, 8 bytes (4 bits) from cpu6 > cpu7: Processor \_PR_.CPU7 (ACPI ID 8) -> APIC ID 7 > cpu7: on acpi0 > random: harvesting attach, 8 bytes (4 bits) from cpu7 > hpet0: iomem 0xfed00000-0xfed003ff on acpi0 > hpet0: vendor 0x8086, rev 0x1, 14318180Hz 64bit, 8 timers, legacy route > hpet0: t0: irqs 0x00f00000 (0), MSI, 64bit, periodic > hpet0: t1: irqs 0x00f00000 (0), MSI > hpet0: t2: irqs 0x00f00800 (0), MSI > hpet0: t3: irqs 0x00f01000 (0), MSI > hpet0: t4: irqs 0x00000000 (0), MSI > hpet0: t5: irqs 0x00000000 (0), MSI > hpet0: t6: irqs 0x00000000 (0), MSI > hpet0: t7: irqs 0x00000000 (0), MSI > Timecounter "HPET" frequency 14318180 Hz quality 950 > msi: routing MSI-X IRQ 256 to local APIC 0 vector 49 > msi: routing MSI-X IRQ 257 to local APIC 0 vector 50 > msi: routing MSI-X IRQ 258 to local APIC 0 vector 51 > msi: routing MSI-X IRQ 259 to local APIC 0 vector 52 > msi: routing MSI-X IRQ 260 to local APIC 0 vector 53 > msi: routing MSI-X IRQ 261 to local APIC 0 vector 54 > msi: routing MSI-X IRQ 262 to local APIC 0 vector 55 > msi: routing MSI-X IRQ 263 to local APIC 0 vector 56 > Event timer "HPET" frequency 14318180 Hz quality 550 > random: harvesting attach, 8 bytes (4 bits) from hpet0 > atrtc0: port 0x70-0x77 irq 8 on acpi0 > atrtc0: Warning: Couldn't map I/O. > atrtc0: registered as a time-of-day clock (resolution 1000000us, adjustme= nt 0.500000000s) > ioapic0: routing intpin 8 (ISA IRQ 8) to lapic 0 vector 57 > Event timer "RTC" frequency 32768 Hz quality 0 > random: harvesting attach, 8 bytes (4 bits) from atrtc0 > attimer0: port 0x40-0x43,0x50-0x53 irq 0 on acpi0 > Timecounter "i8254" frequency 1193182 Hz quality 0 > ioapic0: routing intpin 2 (ISA IRQ 0) to lapic 0 vector 58 > Event timer "i8254" frequency 1193182 Hz quality 100 > random: harvesting attach, 8 bytes (4 bits) from attimer0 > ACPI timer: 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 -> 10 > Timecounter "ACPI-fast" frequency 3579545 Hz quality 900 > acpi_timer0: <24-bit timer at 3.579545MHz> port 0x1808-0x180b on acpi0 > random: harvesting attach, 8 bytes (4 bits) from acpi_timer0 > acpi_ec0: port 0x930,0x934 on acpi0 > random: harvesting attach, 8 bytes (4 bits) from acpi_ec0 > pci_link0: Index IRQ Rtd Ref IRQs > Initial Probe 0 11 N 0 3 4 5 6 10 11 12 14 15 > Validation 0 11 N 0 3 4 5 6 10 11 12 14 15 > After Disable 0 255 N 0 3 4 5 6 10 11 12 14 15 > random: harvesting attach, 8 bytes (4 bits) from pci_link0 > pci_link1: Index IRQ Rtd Ref IRQs > Initial Probe 0 10 N 0 3 4 5 6 10 11 12 14 15 > Validation 0 10 N 0 3 4 5 6 10 11 12 14 15 > After Disable 0 255 N 0 3 4 5 6 10 11 12 14 15 > random: harvesting attach, 8 bytes (4 bits) from pci_link1 > pci_link2: Index IRQ Rtd Ref IRQs > Initial Probe 0 10 N 0 3 4 5 6 10 11 12 14 15 > Validation 0 10 N 0 3 4 5 6 10 11 12 14 15 > After Disable 0 255 N 0 3 4 5 6 10 11 12 14 15 > random: harvesting attach, 8 bytes (4 bits) from pci_link2 > pci_link3: Index IRQ Rtd Ref IRQs > Initial Probe 0 5 N 0 3 4 5 6 10 11 12 14 15 > Validation 0 5 N 0 3 4 5 6 10 11 12 14 15 > After Disable 0 255 N 0 3 4 5 6 10 11 12 14 15 > random: harvesting attach, 8 bytes (4 bits) from pci_link3 > pci_link4: Index IRQ Rtd Ref IRQs > Initial Probe 0 3 N 0 3 4 5 6 10 11 12 14 15 > Validation 0 3 N 0 3 4 5 6 10 11 12 14 15 > After Disable 0 255 N 0 3 4 5 6 10 11 12 14 15 > random: harvesting attach, 8 bytes (4 bits) from pci_link4 > pci_link5: Index IRQ Rtd Ref IRQs > Initial Probe 0 5 N 0 3 4 5 6 10 11 12 14 15 > Validation 0 5 N 0 3 4 5 6 10 11 12 14 15 > After Disable 0 255 N 0 3 4 5 6 10 11 12 14 15 > random: harvesting attach, 8 bytes (4 bits) from pci_link5 > pci_link6: Index IRQ Rtd Ref IRQs > Initial Probe 0 11 N 0 3 4 5 6 10 11 12 14 15 > Validation 0 11 N 0 3 4 5 6 10 11 12 14 15 > After Disable 0 255 N 0 3 4 5 6 10 11 12 14 15 > random: harvesting attach, 8 bytes (4 bits) from pci_link6 > pci_link7: Index IRQ Rtd Ref IRQs > Initial Probe 0 255 N 0 3 4 5 6 10 11 12 14 15 > Validation 0 255 N 0 3 4 5 6 10 11 12 14 15 > After Disable 0 255 N 0 3 4 5 6 10 11 12 14 15 > random: harvesting attach, 8 bytes (4 bits) from pci_link7 > pcib0: port 0xcf8-0xcff on acpi0 > pcib0: decoding 5 range 0-0x3e > pcib0: decoding 4 range 0-0xcf7 > pcib0: decoding 4 range 0xd00-0xffff > pcib0: decoding 3 range 0xa0000-0xbffff > pcib0: decoding 3 range 0xdc000-0xdffff > pcib0: decoding 3 range 0xe0000-0xe3fff > pcib0: decoding 3 range 0xe4000-0xe7fff > pcib0: decoding 3 range 0xd0000000-0xfeafffff > pci0: on pcib0 > pci0: domain=3D0, physical bus=3D0 > found-> vendor=3D0x8086, dev=3D0x0c04, revid=3D0x06 > domain=3D0, bus=3D0, slot=3D0, func=3D0 > class=3D06-00-00, hdrtype=3D0x00, mfdev=3D0 > cmdreg=3D0x0006, statreg=3D0x2090, cachelnsz=3D0 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns= ) > found-> vendor=3D0x8086, dev=3D0x0c01, revid=3D0x06 > domain=3D0, bus=3D0, slot=3D1, func=3D0 > class=3D06-04-00, hdrtype=3D0x01, mfdev=3D1 > cmdreg=3D0x0007, statreg=3D0x0010, cachelnsz=3D16 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns= ) > intpin=3Da, irq=3D11 > powerspec 3 supports D0 D3 current D0 > MSI supports 1 message > pcib0: matched entry for 0.1.INTA > pcib0: slot 1 INTA hardwired to IRQ 16 > secbus=3D1, subbus=3D1 > found-> vendor=3D0x8086, dev=3D0x8c31, revid=3D0x04 > domain=3D0, bus=3D0, slot=3D20, func=3D0 > class=3D0c-03-30, hdrtype=3D0x00, mfdev=3D0 > cmdreg=3D0x0006, statreg=3D0x0290, cachelnsz=3D0 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns= ) > intpin=3Da, irq=3D11 > powerspec 2 supports D0 D3 current D0 > MSI supports 8 messages, 64 bit > map[10]: type Memory, range 64, base 0xf7120000, size 16, enabled > pcib0: allocated type 3 (0xf7120000-0xf712ffff) for rid 10 of pci0:0:20:0 > pcib0: matched entry for 0.20.INTA > pcib0: slot 20 INTA hardwired to IRQ 16 > found-> vendor=3D0x8086, dev=3D0x8c3a, revid=3D0x04 > domain=3D0, bus=3D0, slot=3D22, func=3D0 > class=3D07-80-00, hdrtype=3D0x00, mfdev=3D1 > cmdreg=3D0x0006, statreg=3D0x0010, cachelnsz=3D0 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns= ) > intpin=3Da, irq=3D11 > powerspec 3 supports D0 D3 current D0 > MSI supports 1 message, 64 bit > map[10]: type Memory, range 64, base 0xf713c000, size 4, enabled > pcib0: allocated type 3 (0xf713c000-0xf713c00f) for rid 10 of pci0:0:22:0 > pcib0: matched entry for 0.22.INTA > pcib0: slot 22 INTA hardwired to IRQ 16 > found-> vendor=3D0x8086, dev=3D0x153a, revid=3D0x04 > domain=3D0, bus=3D0, slot=3D25, func=3D0 > class=3D02-00-00, hdrtype=3D0x00, mfdev=3D0 > cmdreg=3D0x0007, statreg=3D0x0010, cachelnsz=3D0 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns= ) > intpin=3Da, irq=3D3 > powerspec 2 supports D0 D3 current D0 > MSI supports 1 message, 64 bit > map[10]: type Memory, range 32, base 0xf7100000, size 17, enabled > pcib0: allocated type 3 (0xf7100000-0xf711ffff) for rid 10 of pci0:0:25:0 > map[14]: type Memory, range 32, base 0xf7139000, size 12, enabled > pcib0: allocated type 3 (0xf7139000-0xf7139fff) for rid 14 of pci0:0:25:0 > map[18]: type I/O Port, range 32, base 0xf040, size 5, enabled > pcib0: allocated type 4 (0xf040-0xf05f) for rid 18 of pci0:0:25:0 > pcib0: matched entry for 0.25.INTA > pcib0: slot 25 INTA hardwired to IRQ 20 > found-> vendor=3D0x8086, dev=3D0x8c2d, revid=3D0x04 > domain=3D0, bus=3D0, slot=3D26, func=3D0 > class=3D0c-03-20, hdrtype=3D0x00, mfdev=3D0 > cmdreg=3D0x0006, statreg=3D0x0290, cachelnsz=3D0 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns= ) > intpin=3Da, irq=3D11 > powerspec 2 supports D0 D3 current D0 > map[10]: type Memory, range 32, base 0xf7138000, size 10, enabled > pcib0: allocated type 3 (0xf7138000-0xf71383ff) for rid 10 of pci0:0:26:0 > pcib0: matched entry for 0.26.INTA > pcib0: slot 26 INTA hardwired to IRQ 16 > ehci early: SMM active, request owner change > found-> vendor=3D0x8086, dev=3D0x8c20, revid=3D0x04 > domain=3D0, bus=3D0, slot=3D27, func=3D0 > class=3D04-03-00, hdrtype=3D0x00, mfdev=3D0 > cmdreg=3D0x0006, statreg=3D0x0010, cachelnsz=3D16 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns= ) > intpin=3Da, irq=3D11 > powerspec 2 supports D0 D3 current D0 > MSI supports 1 message, 64 bit > map[10]: type Memory, range 64, base 0xf7130000, size 14, enabled > pcib0: allocated type 3 (0xf7130000-0xf7133fff) for rid 10 of pci0:0:27:0 > pcib0: matched entry for 0.27.INTA > pcib0: slot 27 INTA hardwired to IRQ 22 > found-> vendor=3D0x8086, dev=3D0x8c10, revid=3D0xd4 > domain=3D0, bus=3D0, slot=3D28, func=3D0 > class=3D06-04-00, hdrtype=3D0x01, mfdev=3D1 > cmdreg=3D0x0007, statreg=3D0x0010, cachelnsz=3D16 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns= ) > intpin=3Da, irq=3D11 > powerspec 3 supports D0 D3 current D0 > MSI supports 1 message > pcib0: matched entry for 0.28.INTA > pcib0: slot 28 INTA hardwired to IRQ 16 > secbus=3D2, subbus=3D2 > found-> vendor=3D0x8086, dev=3D0x8c14, revid=3D0xd4 > domain=3D0, bus=3D0, slot=3D28, func=3D2 > class=3D06-04-00, hdrtype=3D0x01, mfdev=3D1 > cmdreg=3D0x0007, statreg=3D0x0010, cachelnsz=3D16 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns= ) > intpin=3Dc, irq=3D10 > powerspec 3 supports D0 D3 current D0 > MSI supports 1 message > pcib0: matched entry for 0.28.INTC > pcib0: slot 28 INTC hardwired to IRQ 18 > secbus=3D3, subbus=3D3 > found-> vendor=3D0x8086, dev=3D0x8c16, revid=3D0xd4 > domain=3D0, bus=3D0, slot=3D28, func=3D3 > class=3D06-04-00, hdrtype=3D0x01, mfdev=3D1 > cmdreg=3D0x0007, statreg=3D0x0010, cachelnsz=3D16 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns= ) > intpin=3Dd, irq=3D5 > powerspec 3 supports D0 D3 current D0 > MSI supports 1 message > pcib0: matched entry for 0.28.INTD > pcib0: slot 28 INTD hardwired to IRQ 19 > secbus=3D4, subbus=3D7 > found-> vendor=3D0x8086, dev=3D0x8c18, revid=3D0xd4 > domain=3D0, bus=3D0, slot=3D28, func=3D4 > class=3D06-04-00, hdrtype=3D0x01, mfdev=3D1 > cmdreg=3D0x0007, statreg=3D0x0010, cachelnsz=3D16 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns= ) > intpin=3Da, irq=3D11 > powerspec 3 supports D0 D3 current D0 > MSI supports 1 message > pcib0: matched entry for 0.28.INTA > pcib0: slot 28 INTA hardwired to IRQ 16 > secbus=3D8, subbus=3D8 > found-> vendor=3D0x8086, dev=3D0x8c1c, revid=3D0xd4 > domain=3D0, bus=3D0, slot=3D28, func=3D6 > class=3D06-04-00, hdrtype=3D0x01, mfdev=3D1 > cmdreg=3D0x0007, statreg=3D0x0010, cachelnsz=3D16 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns= ) > intpin=3Dc, irq=3D10 > powerspec 3 supports D0 D3 current D0 > MSI supports 1 message > pcib0: matched entry for 0.28.INTC > pcib0: slot 28 INTC hardwired to IRQ 18 > secbus=3D9, subbus=3D16 > found-> vendor=3D0x8086, dev=3D0x8c1e, revid=3D0xd4 > domain=3D0, bus=3D0, slot=3D28, func=3D7 > class=3D06-04-00, hdrtype=3D0x01, mfdev=3D1 > cmdreg=3D0x0007, statreg=3D0x0010, cachelnsz=3D16 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns= ) > intpin=3Dd, irq=3D5 > powerspec 3 supports D0 D3 current D0 > MSI supports 1 message > pcib0: matched entry for 0.28.INTD > pcib0: slot 28 INTD hardwired to IRQ 19 > secbus=3D17, subbus=3D17 > found-> vendor=3D0x8086, dev=3D0x8c26, revid=3D0x04 > domain=3D0, bus=3D0, slot=3D29, func=3D0 > class=3D0c-03-20, hdrtype=3D0x00, mfdev=3D0 > cmdreg=3D0x0006, statreg=3D0x0290, cachelnsz=3D0 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns= ) > intpin=3Da, irq=3D5 > powerspec 2 supports D0 D3 current D0 > map[10]: type Memory, range 32, base 0xf7137000, size 10, enabled > pcib0: allocated type 3 (0xf7137000-0xf71373ff) for rid 10 of pci0:0:29:0 > pcib0: matched entry for 0.29.INTA > pcib0: slot 29 INTA hardwired to IRQ 21 > ehci early: SMM active, request owner change > found-> vendor=3D0x8086, dev=3D0x8c4f, revid=3D0x04 > domain=3D0, bus=3D0, slot=3D31, func=3D0 > class=3D06-01-00, hdrtype=3D0x00, mfdev=3D1 > cmdreg=3D0x0007, statreg=3D0x0210, cachelnsz=3D0 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns= ) > found-> vendor=3D0x8086, dev=3D0x282a, revid=3D0x04 > domain=3D0, bus=3D0, slot=3D31, func=3D2 > class=3D01-04-00, hdrtype=3D0x00, mfdev=3D0 > cmdreg=3D0x0007, statreg=3D0x02b0, cachelnsz=3D0 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns= ) > intpin=3Db, irq=3D5 > powerspec 3 supports D0 D3 current D0 > MSI supports 1 message > map[10]: type I/O Port, range 32, base 0xf090, size 3, enabled > pcib0: allocated type 4 (0xf090-0xf097) for rid 10 of pci0:0:31:2 > map[14]: type I/O Port, range 32, base 0xf080, size 2, enabled > pcib0: allocated type 4 (0xf080-0xf083) for rid 14 of pci0:0:31:2 > map[18]: type I/O Port, range 32, base 0xf070, size 3, enabled > pcib0: allocated type 4 (0xf070-0xf077) for rid 18 of pci0:0:31:2 > map[1c]: type I/O Port, range 32, base 0xf060, size 2, enabled > pcib0: allocated type 4 (0xf060-0xf063) for rid 1c of pci0:0:31:2 > map[20]: type I/O Port, range 32, base 0xf020, size 5, enabled > pcib0: allocated type 4 (0xf020-0xf03f) for rid 20 of pci0:0:31:2 > map[24]: type Memory, range 32, base 0xf7136000, size 11, enabled > pcib0: allocated type 3 (0xf7136000-0xf71367ff) for rid 24 of pci0:0:31:2 > pcib0: matched entry for 0.31.INTB > pcib0: slot 31 INTB hardwired to IRQ 19 > found-> vendor=3D0x8086, dev=3D0x8c22, revid=3D0x04 > domain=3D0, bus=3D0, slot=3D31, func=3D3 > class=3D0c-05-00, hdrtype=3D0x00, mfdev=3D0 > cmdreg=3D0x0003, statreg=3D0x0280, cachelnsz=3D0 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns= ) > intpin=3Dc, irq=3D10 > map[10]: type Memory, range 64, base 0xf7135000, size 8, enabled > pcib0: allocated type 3 (0xf7135000-0xf71350ff) for rid 10 of pci0:0:31:3 > map[20]: type I/O Port, range 32, base 0xf000, size 5, enabled > pcib0: allocated type 4 (0xf000-0xf01f) for rid 20 of pci0:0:31:3 > pcib0: matched entry for 0.31.INTC > pcib0: slot 31 INTC hardwired to IRQ 18 > random: harvesting attach, 8 bytes (4 bits) from hostb0 > pcib1: irq 16 at device 1.0 on pci0 > pcib0: allocated type 4 (0xe000-0xefff) for rid 1c of pcib1 > pcib0: allocated type 3 (0xf4000000-0xf50fffff) for rid 20 of pcib1 > pcib0: allocated type 3 (0xe0000000-0xf1ffffff) for rid 24 of pcib1 > pcib1: domain 0 > pcib1: secondary bus 1 > pcib1: subordinate bus 1 > pcib1: I/O decode 0xe000-0xefff > pcib1: memory decode 0xf4000000-0xf50fffff > pcib1: prefetched decode 0xe0000000-0xf1ffffff > pcib1: special decode VGA > pci1: on pcib1 > pcib1: allocated bus range (1-1) for rid 0 of pci1 > pci1: domain=3D0, physical bus=3D1 > found-> vendor=3D0x10de, dev=3D0x0ff6, revid=3D0xa1 > domain=3D0, bus=3D1, slot=3D0, func=3D0 > class=3D03-00-00, hdrtype=3D0x00, mfdev=3D1 > cmdreg=3D0x0007, statreg=3D0x0010, cachelnsz=3D16 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns= ) > intpin=3Da, irq=3D11 > powerspec 3 supports D0 D3 current D0 > MSI supports 1 message, 64 bit > map[10]: type Memory, range 32, base 0xf4000000, size 24, enabled > pcib1: allocated memory range (0xf4000000-0xf4ffffff) for rid 10 of pci0:= 1:0:0 > map[14]: type Prefetchable Memory, range 64, base 0xe0000000, siz= e 28, enabled > pcib1: allocated prefetch range (0xe0000000-0xefffffff) for rid 14 of pci= 0:1:0:0 > map[1c]: type Prefetchable Memory, range 64, base 0xf0000000, siz= e 25, enabled > pcib1: allocated prefetch range (0xf0000000-0xf1ffffff) for rid 1c of pci= 0:1:0:0 > map[24]: type I/O Port, range 32, base 0xe000, size 7, enabled > pcib1: allocated I/O port range (0xe000-0xe07f) for rid 24 of pci0:1:0:0 > pcib1: matched entry for 1.0.INTA > pcib1: slot 0 INTA hardwired to IRQ 16 > found-> vendor=3D0x10de, dev=3D0x0e1b, revid=3D0xa1 > domain=3D0, bus=3D1, slot=3D0, func=3D1 > class=3D04-03-00, hdrtype=3D0x00, mfdev=3D1 > cmdreg=3D0x0006, statreg=3D0x0010, cachelnsz=3D16 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns= ) > intpin=3Db, irq=3D10 > powerspec 3 supports D0 D3 current D0 > MSI supports 1 message, 64 bit > map[10]: type Memory, range 32, base 0xf5080000, size 14, enabled > pcib1: allocated memory range (0xf5080000-0xf5083fff) for rid 10 of pci0:= 1:0:1 > pcib1: matched entry for 1.0.INTB > pcib1: slot 0 INTB hardwired to IRQ 17 > vgapci0: port 0xe000-0xe07f mem 0xf4000000-0xf4f= fffff,0xe0000000-0xefffffff,0xf0000000-0xf1ffffff irq 16 at device 0.0 on p= ci1 > nvidia0: on vgapci0 > vgapci0: child nvidia0 requested pci_enable_io > vgapci0: attempting to allocate 1 MSI vectors (1 supported) > msi: routing MSI IRQ 264 to local APIC 0 vector 59 > vgapci0: using IRQ 264 for MSI > vgapci0: child nvidia0 requested pci_enable_io > random: harvesting attach, 8 bytes (4 bits) from nvidia0 > vgapci0: Boot video device > random: harvesting attach, 8 bytes (4 bits) from vgapci0 > hdac0: mem 0xf5080000-0xf5083fff irq 17 = at device 0.1 on pci1 > hdac0: PCI card vendor: 0x1028, device: 0x05cc > hdac0: HDA Driver Revision: 20120126_0002 > hdac0: Config options: on=3D0x00000000 off=3D0x00000000 > hdac0: attempting to allocate 1 MSI vectors (1 supported) > msi: routing MSI IRQ 265 to local APIC 0 vector 60 > hdac0: using IRQ 265 for MSI > hdac0: Caps: OSS 4, ISS 4, BSS 0, NSDO 4, 64bit, CORB 256, RIRB 256 > random: harvesting attach, 8 bytes (4 bits) from hdac0 > random: harvesting attach, 8 bytes (4 bits) from pci1 > random: harvesting attach, 8 bytes (4 bits) from pcib1 > xhci0: mem 0xf7120000-0xf712ffff ir= q 16 at device 20.0 on pci0 > xhci0: 32 bytes context size, 64-bit DMA > xhci0: attempting to allocate 1 MSI vectors (8 supported) > msi: routing MSI IRQ 266 to local APIC 0 vector 61 > xhci0: using IRQ 266 for MSI > xhci0: MSI enabled > xhci0: Port routing mask set to 0xffffffff > usbus0 on xhci0 > xhci0: usbpf: Attached > random: harvesting attach, 8 bytes (4 bits) from usbus0 > random: harvesting attach, 8 bytes (4 bits) from xhci0 > pci0: at device 22.0 (no driver attached) > em0: port 0xf040-0xf05f mem = 0xf7100000-0xf711ffff,0xf7139000-0xf7139fff irq 20 at device 25.0 on pci0 > em0: attempting to allocate 1 MSI vectors (1 supported) > msi: routing MSI IRQ 267 to local APIC 0 vector 62 > em0: using IRQ 267 for MSI > em0: Using an MSI interrupt > em0: bpf attached > em0: Ethernet address: 34:e6:d7:3c:4a:93 > em0: netmap queues/slots: TX 1/1024, RX 1/1024 > random: harvesting attach, 8 bytes (4 bits) from em0 > ehci0: mem 0xf7138000-0xf7138= 3ff irq 16 at device 26.0 on pci0 > ioapic0: routing intpin 16 (PCI IRQ 16) to lapic 0 vector 63 > usbus1: EHCI version 1.0 > usbus1 on ehci0 > ehci0: usbpf: Attached > random: harvesting attach, 8 bytes (4 bits) from usbus1 > random: harvesting attach, 8 bytes (4 bits) from ehci0 > hdac1: mem 0xf7130000-0xf7133fff irq 22= at device 27.0 on pci0 > hdac1: PCI card vendor: 0x1028, device: 0x05cc > hdac1: HDA Driver Revision: 20120126_0002 > hdac1: Config options: on=3D0x00000000 off=3D0x00000000 > hdac1: attempting to allocate 1 MSI vectors (1 supported) > msi: routing MSI IRQ 268 to local APIC 0 vector 64 > hdac1: using IRQ 268 for MSI > hdac1: Caps: OSS 4, ISS 4, BSS 0, NSDO 1, 64bit, CORB 256, RIRB 256 > random: harvesting attach, 8 bytes (4 bits) from hdac1 > pcib2: irq 16 at device 28.0 on pci0 > pcib2: domain 0 > pcib2: secondary bus 2 > pcib2: subordinate bus 2 > pci2: on pcib2 > pcib2: allocated bus range (2-2) for rid 0 of pci2 > pci2: domain=3D0, physical bus=3D2 > random: harvesting attach, 8 bytes (4 bits) from pci2 > random: harvesting attach, 8 bytes (4 bits) from pcib2 > pcib3: irq 18 at device 28.2 on pci0 > pcib0: allocated type 3 (0xf7000000-0xf70fffff) for rid 20 of pcib3 > pcib3: domain 0 > pcib3: secondary bus 3 > pcib3: subordinate bus 3 > pcib3: memory decode 0xf7000000-0xf70fffff > pci3: on pcib3 > pcib3: allocated bus range (3-3) for rid 0 of pci3 > pci3: domain=3D0, physical bus=3D3 > found-> vendor=3D0x8086, dev=3D0x4232, revid=3D0x00 > domain=3D0, bus=3D3, slot=3D0, func=3D0 > class=3D02-80-00, hdrtype=3D0x00, mfdev=3D0 > cmdreg=3D0x0006, statreg=3D0x0010, cachelnsz=3D16 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns= ) > intpin=3Da, irq=3D10 > powerspec 3 supports D0 D3 current D0 > MSI supports 1 message, 64 bit > map[10]: type Memory, range 64, base 0xf7000000, size 13, enabled > pcib3: allocated memory range (0xf7000000-0xf7001fff) for rid 10 of pci0:= 3:0:0 > pcib3: matched entry for 3.0.INTA > pcib3: slot 0 INTA hardwired to IRQ 18 > iwn0: mem 0xf7000000-0xf7001fff irq 18 at device 0= .0 on pci3 > iwn0: attempting to allocate 1 MSI vectors (1 supported) > msi: routing MSI IRQ 269 to local APIC 0 vector 65 > iwn0: using IRQ 269 for MSI > iwn0: MIMO 1T2R, MoW, address 00:24:d6:7a:03:ce > iwn0: 11a rates: 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps > iwn0: 11b rates: 1Mbps 2Mbps 5.5Mbps 11Mbps > iwn0: 11g rates: 1Mbps 2Mbps 5.5Mbps 11Mbps 6Mbps 9Mbps 12Mbps 18Mbps 24M= bps 36Mbps 48Mbps 54Mbps > iwn0: 1T2R > iwn0: 11na MCS 20MHz > iwn0: MCS 0-7: 6.5Mbps - 65Mbps > iwn0: 11na MCS 20MHz SGI > iwn0: MCS 0-7: 7Mbps - 72Mbps > iwn0: 11na MCS 40MHz: > iwn0: MCS 0-7: 13.5Mbps - 135Mbps > iwn0: 11na MCS 40MHz SGI: > iwn0: MCS 0-7: 15Mbps - 150Mbps > iwn0: 11ng MCS 20MHz > iwn0: MCS 0-7: 6.5Mbps - 65Mbps > iwn0: 11ng MCS 20MHz SGI > iwn0: MCS 0-7: 7Mbps - 72Mbps > iwn0: 11ng MCS 40MHz: > iwn0: MCS 0-7: 13.5Mbps - 135Mbps > iwn0: 11ng MCS 40MHz SGI: > iwn0: MCS 0-7: 15Mbps - 150Mbps > random: harvesting attach, 8 bytes (4 bits) from iwn0 > random: harvesting attach, 8 bytes (4 bits) from pci3 > random: harvesting attach, 8 bytes (4 bits) from pcib3 > pcib4: irq 19 at device 28.3 on pci0 > pcib0: allocated type 4 (0xd000-0xdfff) for rid 1c of pcib4 > pcib0: allocated type 3 (0xf6500000-0xf6efffff) for rid 20 of pcib4 > pcib0: allocated type 3 (0xf3500000-0xf3efffff) for rid 24 of pcib4 > pcib4: domain 0 > pcib4: secondary bus 4 > pcib4: subordinate bus 7 > pcib4: I/O decode 0xd000-0xdfff > pcib4: memory decode 0xf6500000-0xf6efffff > pcib4: prefetched decode 0xf3500000-0xf3efffff > pci4: on pcib4 > pcib4: allocated bus range (4-4) for rid 0 of pci4 > pci4: domain=3D0, physical bus=3D4 > random: harvesting attach, 8 bytes (4 bits) from pci4 > random: harvesting attach, 8 bytes (4 bits) from pcib4 > pcib5: irq 16 at device 28.4 on pci0 > pcib0: allocated type 4 (0xc000-0xcfff) for rid 1c of pcib5 > pcib0: allocated type 3 (0xf5b00000-0xf64fffff) for rid 20 of pcib5 > pcib0: allocated type 3 (0xf2b00000-0xf34fffff) for rid 24 of pcib5 > pcib5: domain 0 > pcib5: secondary bus 8 > pcib5: subordinate bus 8 > pcib5: I/O decode 0xc000-0xcfff > pcib5: memory decode 0xf5b00000-0xf64fffff > pcib5: prefetched decode 0xf2b00000-0xf34fffff > pci5: on pcib5 > pcib5: allocated bus range (8-8) for rid 0 of pci5 > pci5: domain=3D0, physical bus=3D8 > random: harvesting attach, 8 bytes (4 bits) from pci5 > random: harvesting attach, 8 bytes (4 bits) from pcib5 > pcib6: irq 18 at device 28.6 on pci0 > pcib0: allocated type 4 (0xa000-0xbfff) for rid 1c of pcib6 > pcib0: allocated type 3 (0xf5100000-0xf5afffff) for rid 20 of pcib6 > pcib0: allocated type 3 (0xf2100000-0xf2afffff) for rid 24 of pcib6 > pcib6: domain 0 > pcib6: secondary bus 9 > pcib6: subordinate bus 16 > pcib6: I/O decode 0xa000-0xbfff > pcib6: memory decode 0xf5100000-0xf5afffff > pcib6: prefetched decode 0xf2100000-0xf2afffff > pci6: on pcib6 > pcib6: allocated bus range (9-9) for rid 0 of pci6 > pci6: domain=3D0, physical bus=3D9 > random: harvesting attach, 8 bytes (4 bits) from pci6 > random: harvesting attach, 8 bytes (4 bits) from pcib6 > pcib7: irq 19 at device 28.7 on pci0 > pcib0: allocated type 3 (0xf6f00000-0xf6ffffff) for rid 20 of pcib7 > pcib7: domain 0 > pcib7: secondary bus 17 > pcib7: subordinate bus 17 > pcib7: memory decode 0xf6f00000-0xf6ffffff > pci7: on pcib7 > pcib7: allocated bus range (17-17) for rid 0 of pci7 > pci7: domain=3D0, physical bus=3D17 > found-> vendor=3D0x1217, dev=3D0x8520, revid=3D0x01 > domain=3D0, bus=3D17, slot=3D0, func=3D0 > class=3D08-05-01, hdrtype=3D0x00, mfdev=3D0 > cmdreg=3D0x0006, statreg=3D0x0010, cachelnsz=3D16 (dwords) > lattimer=3D0x00 (0 ns), mingnt=3D0x00 (0 ns), maxlat=3D0x00 (0 ns= ) > intpin=3Da, irq=3D5 > powerspec 3 supports D0 D3 current D0 > MSI supports 1 message, 64 bit, vector masks > map[10]: type Memory, range 32, base 0xf6f01000, size 12, enabled > pcib7: allocated memory range (0xf6f01000-0xf6f01fff) for rid 10 of pci0:= 17:0:0 > map[14]: type Memory, range 32, base 0xf6f00000, size 11, enabled > pcib7: allocated memory range (0xf6f00000-0xf6f007ff) for rid 14 of pci0:= 17:0:0 > pcib7: matched entry for 17.0.INTA > pcib7: slot 0 INTA hardwired to IRQ 19 > sdhci_pci0: mem 0xf6f01000-0xf6f01fff,0xf6f00000-0xf6f00= 7ff irq 19 at device 0.0 on pci7 > sdhci_pci0: attempting to allocate 1 MSI vectors (1 supported) > msi: routing MSI IRQ 270 to local APIC 0 vector 66 > sdhci_pci0: using IRQ 270 for MSI > sdhci_pci0: Hardware doesn't specify timeout clock frequency, setting BRO= KEN_TIMEOUT quirk. > sdhci_pci0-slot0: 50MHz HS 1bit 3.3V 1.8V DMA > sdhci_pci0-slot0: =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D REGISTER DUM= P =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > sdhci_pci0-slot0: Sys addr: 0x00000000 | Version: 0x00000603 > sdhci_pci0-slot0: Blk size: 0x00000000 | Blk cnt: 0x00000000 > sdhci_pci0-slot0: Argument: 0x00000000 | Trn mode: 0x00000000 > sdhci_pci0-slot0: Present: 0x00080000 | Host ctl: 0x00000000 > sdhci_pci0-slot0: Power: 0x00000000 | Blk gap: 0x00000000 > sdhci_pci0-slot0: Wake-up: 0x00000000 | Clock: 0x00000002 > sdhci_pci0-slot0: Timeout: 0x00000000 | Int stat: 0x00000000 > sdhci_pci0-slot0: Int enab: 0x01ff00fb | Sig enab: 0x01ff00fb > sdhci_pci0-slot0: AC12 err: 0x00000000 | Slot int: 0x00000000 > sdhci_pci0-slot0: Caps: 0x25fe3280 | Max curr: 0x005800c8 > sdhci_pci0-slot0: =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 > sdhci_pci0: 1 slot(s) allocated > random: harvesting attach, 8 bytes (4 bits) from sdhci_pci0 > random: harvesting attach, 8 bytes (4 bits) from pci7 > random: harvesting attach, 8 bytes (4 bits) from pcib7 > ehci1: mem 0xf7137000-0xf7137= 3ff irq 21 at device 29.0 on pci0 > ioapic0: routing intpin 21 (PCI IRQ 21) to lapic 0 vector 67 > usbus2: EHCI version 1.0 > usbus2 on ehci1 > ehci1: usbpf: Attached > random: harvesting attach, 8 bytes (4 bits) from usbus2 > random: harvesting attach, 8 bytes (4 bits) from ehci1 > isab0: at device 31.0 on pci0 > isa0: on isab0 > random: harvesting attach, 8 bytes (4 bits) from isa0 > random: harvesting attach, 8 bytes (4 bits) from isab0 > ahci0: port 0xf090-0xf097,0xf080-0xf08= 3,0xf070-0xf077,0xf060-0xf063,0xf020-0xf03f mem 0xf7136000-0xf71367ff irq 1= 9 at device 31.2 on pci0 > ahci0: attempting to allocate 1 MSI vectors (1 supported) > msi: routing MSI IRQ 271 to local APIC 0 vector 68 > ahci0: using IRQ 271 for MSI > ahci0: AHCI v1.30 with 5 6Gbps ports, Port Multiplier not supported > ahci0: Caps: 64bit NCQ MPS SS ALP AL CLO 6Gbps PMD SSC PSC 32cmd EM eSATA= 5ports > ahci0: Caps2: APST > ahcich0: at channel 0 on ahci0 > ahcich0: Caps: > random: harvesting attach, 8 bytes (4 bits) from ahcich0 > ahcich1: at channel 1 on ahci0 > ahcich1: Caps: HPCP MPSP > random: harvesting attach, 8 bytes (4 bits) from ahcich1 > ahcich2: at channel 2 on ahci0 > ahcich2: Caps: ESP > random: harvesting attach, 8 bytes (4 bits) from ahcich2 > ahcich3: at channel 3 on ahci0 > ahcich3: Caps: ESP > random: harvesting attach, 8 bytes (4 bits) from ahcich3 > ahcich4: not probed (disabled) > ahciem0: on ahci0 > ahciem0: Caps: ALHD XMT SMB LED > random: harvesting attach, 8 bytes (4 bits) from ahciem0 > random: harvesting attach, 8 bytes (4 bits) from ahci0 > ichsmb0: port 0xf000-0xf01f mem 0xf71= 35000-0xf71350ff irq 18 at device 31.3 on pci0 > ioapic0: routing intpin 18 (PCI IRQ 18) to lapic 0 vector 69 > smbus0: on ichsmb0 > smb0: on smbus0 > random: harvesting attach, 8 bytes (4 bits) from smb0 > random: harvesting attach, 8 bytes (4 bits) from smbus0 > random: harvesting attach, 8 bytes (4 bits) from ichsmb0 > random: harvesting attach, 8 bytes (4 bits) from pci0 > random: harvesting attach, 8 bytes (4 bits) from pcib0 > acpi_lid0: on acpi0 > random: harvesting attach, 8 bytes (4 bits) from acpi_lid0 > acpi_button0: on acpi0 > random: harvesting attach, 8 bytes (4 bits) from acpi_button0 > acpi_button1: on acpi0 > random: harvesting attach, 8 bytes (4 bits) from acpi_button1 > acpi_acad0: on acpi0 > random: harvesting attach, 8 bytes (4 bits) from acpi_acad0 > battery0: on acpi0 > random: harvesting attach, 8 bytes (4 bits) from battery0 > battery1: on acpi0 > random: harvesting attach, 8 bytes (4 bits) from battery1 > acpi_tz0: on acpi0 > random: harvesting attach, 8 bytes (4 bits) from acpi_tz0 > random: harvesting attach, 8 bytes (4 bits) from atdma0 > random: harvesting attach, 8 bytes (4 bits) from fpupnp0 > atkbdc0: port 0x60,0x64 irq 1 on acpi0 > atkbd0: irq 1 on atkbdc0 > atkbd: the current kbd controller command byte 0065 > atkbd: keyboard ID 0x41ab (2) > <7>kbdc: RESET_KBD return code:00fa > <7>kbdc: RESET_KBD status:00aa > kbd0 at atkbd0 > kbd0: atkbd0, AT 101/102 (2), config:0x0, flags:0x1d0000 > ioapic0: routing intpin 1 (ISA IRQ 1) to lapic 0 vector 70 > atkbd0: [GIANT-LOCKED] > random: harvesting attach, 8 bytes (4 bits) from atkbd0 > psm0: unable to allocate IRQ > random: harvesting attach, 8 bytes (4 bits) from atkbdc0 > psmcpnp0: irq 12 on acpi0 > psm0: current command byte:0065 > <7>kbdc: TEST_AUX_PORT status:0000 > <7>kbdc: RESET_AUX return code:00fa > <7>kbdc: RESET_AUX status:00aa > <7>kbdc: RESET_AUX ID:0000 > <7>kbdc: RESET_AUX return code:00fa > <7>kbdc: RESET_AUX status:00aa > <7>kbdc: RESET_AUX ID:0000 > <7>psm: status 00 02 64 > <7>psm: status 00 00 64 > <7>psm: status 00 03 64 > <7>psm: status 00 03 64 > <7>psm: data 08 00 00 > <7>psm: status 00 00 14 > <7>psm: status 73 03 0a > <7>psm: status 00 02 64 > psm0: irq 12 on atkbdc0 > ioapic0: routing intpin 12 (ISA IRQ 12) to lapic 0 vector 71 > psm0: [GIANT-LOCKED] > psm0: model GlidePoint, device ID 0-00, 2 buttons > psm0: config:00004000, flags:00000008, packet size:3 > psm0: syncmask:c0, syncbits:00 > random: harvesting attach, 8 bytes (4 bits) from psm0 > random: harvesting attach, 8 bytes (4 bits) from psmcpnp0 > ppc1: using extended I/O port range > ACPI: Enabled 2 GPEs in block 00 to 3F > random: harvesting attach, 8 bytes (4 bits) from acpi0 > random: harvesting attach, 8 bytes (4 bits) from apic0 > acpi0: wakeup code va 0xfffffe060bb12000 pa 0x88000 > random: harvesting attach, 8 bytes (4 bits) from nexus0 > ahc_isa_identify 0: ioport 0xc00 alloc failed > ahc_isa_identify 1: ioport 0x1c00 alloc failed > ahc_isa_identify 2: ioport 0x2c00 alloc failed > ahc_isa_identify 3: ioport 0x3c00 alloc failed > ahc_isa_identify 4: ioport 0x4c00 alloc failed > ahc_isa_identify 5: ioport 0x5c00 alloc failed > ahc_isa_identify 6: ioport 0x6c00 alloc failed > ahc_isa_identify 7: ioport 0x7c00 alloc failed > ahc_isa_identify 8: ioport 0x8c00 alloc failed > ahc_isa_identify 9: ioport 0x9c00 alloc failed > ahc_isa_identify 10: ioport 0xac00 alloc failed > ahc_isa_identify 11: ioport 0xbc00 alloc failed > ahc_isa_identify 12: ioport 0xcc00 alloc failed > ahc_isa_identify 13: ioport 0xdc00 alloc failed > ahc_isa_identify 14: ioport 0xec00 alloc failed > pcib0: allocated type 3 (0xb0000-0xb07ff) for rid 0 of orm0 > pcib0: allocated type 3 (0xb0800-0xb0fff) for rid 0 of orm0 > pcib0: allocated type 3 (0xb1000-0xb17ff) for rid 0 of orm0 > pcib0: allocated type 3 (0xb1800-0xb1fff) for rid 0 of orm0 > pcib0: allocated type 3 (0xb2000-0xb27ff) for rid 0 of orm0 > pcib0: allocated type 3 (0xb2800-0xb2fff) for rid 0 of orm0 > pcib0: allocated type 3 (0xb3000-0xb37ff) for rid 0 of orm0 > pcib0: allocated type 3 (0xb3800-0xb3fff) for rid 0 of orm0 > pcib0: allocated type 3 (0xb4000-0xb47ff) for rid 0 of orm0 > pcib0: allocated type 3 (0xb4800-0xb4fff) for rid 0 of orm0 > pcib0: allocated type 3 (0xb5000-0xb57ff) for rid 0 of orm0 > pcib0: allocated type 3 (0xb5800-0xb5fff) for rid 0 of orm0 > pcib0: allocated type 3 (0xb6000-0xb67ff) for rid 0 of orm0 > pcib0: allocated type 3 (0xb6800-0xb6fff) for rid 0 of orm0 > pcib0: allocated type 3 (0xb7000-0xb77ff) for rid 0 of orm0 > pcib0: allocated type 3 (0xb7800-0xb7fff) for rid 0 of orm0 > pcib0: allocated type 3 (0xb8000-0xb87ff) for rid 0 of orm0 > pcib0: allocated type 3 (0xb8800-0xb8fff) for rid 0 of orm0 > pcib0: allocated type 3 (0xb9000-0xb97ff) for rid 0 of orm0 > pcib0: allocated type 3 (0xb9800-0xb9fff) for rid 0 of orm0 > pcib0: allocated type 3 (0xba000-0xba7ff) for rid 0 of orm0 > pcib0: allocated type 3 (0xba800-0xbafff) for rid 0 of orm0 > pcib0: allocated type 3 (0xbb000-0xbb7ff) for rid 0 of orm0 > pcib0: allocated type 3 (0xbb800-0xbbfff) for rid 0 of orm0 > pcib0: allocated type 3 (0xbc000-0xbc7ff) for rid 0 of orm0 > pcib0: allocated type 3 (0xbc800-0xbcfff) for rid 0 of orm0 > pcib0: allocated type 3 (0xbd000-0xbd7ff) for rid 0 of orm0 > pcib0: allocated type 3 (0xbd800-0xbdfff) for rid 0 of orm0 > pcib0: allocated type 3 (0xbe000-0xbe7ff) for rid 0 of orm0 > pcib0: allocated type 3 (0xbe800-0xbefff) for rid 0 of orm0 > pcib0: allocated type 3 (0xbf000-0xbf7ff) for rid 0 of orm0 > pcib0: allocated type 3 (0xbf800-0xbffff) for rid 0 of orm0 > pcib0: allocated type 3 (0xdc000-0xdc7ff) for rid 0 of orm0 > pcib0: allocated type 3 (0xdc800-0xdcfff) for rid 0 of orm0 > pcib0: allocated type 3 (0xdd000-0xdd7ff) for rid 0 of orm0 > pcib0: allocated type 3 (0xdd800-0xddfff) for rid 0 of orm0 > pcib0: allocated type 3 (0xde000-0xde7ff) for rid 0 of orm0 > pcib0: allocated type 3 (0xde800-0xdefff) for rid 0 of orm0 > pcib0: allocated type 3 (0xdf000-0xdf7ff) for rid 0 of orm0 > pcib0: allocated type 3 (0xdf800-0xdffff) for rid 0 of orm0 > pcib0: allocated type 3 (0xe0000-0xe07ff) for rid 0 of orm0 > pcib0: allocated type 3 (0xe0800-0xe0fff) for rid 0 of orm0 > pcib0: allocated type 3 (0xe1000-0xe17ff) for rid 0 of orm0 > pcib0: allocated type 3 (0xe1800-0xe1fff) for rid 0 of orm0 > pcib0: allocated type 3 (0xe2000-0xe27ff) for rid 0 of orm0 > pcib0: allocated type 3 (0xe2800-0xe2fff) for rid 0 of orm0 > pcib0: allocated type 3 (0xe3000-0xe37ff) for rid 0 of orm0 > pcib0: allocated type 3 (0xe3800-0xe3fff) for rid 0 of orm0 > pcib0: allocated type 3 (0xe4000-0xe47ff) for rid 0 of orm0 > pcib0: allocated type 3 (0xe4800-0xe4fff) for rid 0 of orm0 > pcib0: allocated type 3 (0xe5000-0xe57ff) for rid 0 of orm0 > pcib0: allocated type 3 (0xe5800-0xe5fff) for rid 0 of orm0 > pcib0: allocated type 3 (0xe6000-0xe67ff) for rid 0 of orm0 > pcib0: allocated type 3 (0xe6800-0xe6fff) for rid 0 of orm0 > pcib0: allocated type 3 (0xe7000-0xe77ff) for rid 0 of orm0 > pcib0: allocated type 3 (0xe7800-0xe7fff) for rid 0 of orm0 > isa_probe_children: disabling PnP devices > atkbdc: atkbdc0 already exists; skipping it > atrtc: atrtc0 already exists; skipping it > attimer: attimer0 already exists; skipping it > sc: sc0 already exists; skipping it > isa_probe_children: probing non-PnP devices > sc0 failed to probe on isa0 > vga0 failed to probe on isa0 > pcib0: allocated type 4 (0x3f0-0x3f5) for rid 0 of fdc0 > pcib0: allocated type 4 (0x3f7-0x3f7) for rid 1 of fdc0 > fdc0 failed to probe at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 > ppc0: cannot reserve I/O port range > ppc0 failed to probe at irq 7 on isa0 > pcib0: allocated type 4 (0x3f8-0x3f8) for rid 0 of uart0 > uart0 failed to probe at port 0x3f8 irq 4 on isa0 > pcib0: allocated type 4 (0x2f8-0x2f8) for rid 0 of uart1 > uart1 failed to probe at port 0x2f8 irq 3 on isa0 > wbwd0 failed to probe on isa0 > isa_probe_children: probing PnP devices > random: harvesting attach, 8 bytes (4 bits) from acpi_perf0 > random: harvesting attach, 8 bytes (4 bits) from acpi_perf1 > random: harvesting attach, 8 bytes (4 bits) from acpi_perf2 > random: harvesting attach, 8 bytes (4 bits) from acpi_perf3 > random: harvesting attach, 8 bytes (4 bits) from acpi_perf4 > random: harvesting attach, 8 bytes (4 bits) from acpi_perf5 > random: harvesting attach, 8 bytes (4 bits) from acpi_perf6 > random: harvesting attach, 8 bytes (4 bits) from acpi_perf7 > coretemp0: on cpu0 > coretemp0: Setting TjMax=3D100 > random: harvesting attach, 8 bytes (4 bits) from coretemp0 > est0: on cpu0 > random: harvesting attach, 8 bytes (4 bits) from cpufreq0 > random: harvesting attach, 8 bytes (4 bits) from est0 > coretemp1: on cpu1 > coretemp1: Setting TjMax=3D100 > random: harvesting attach, 8 bytes (4 bits) from coretemp1 > est1: on cpu1 > random: harvesting attach, 8 bytes (4 bits) from cpufreq1 > random: harvesting attach, 8 bytes (4 bits) from est1 > coretemp2: on cpu2 > coretemp2: Setting TjMax=3D100 > random: harvesting attach, 8 bytes (4 bits) from coretemp2 > est2: on cpu2 > random: harvesting attach, 8 bytes (4 bits) from cpufreq2 > random: harvesting attach, 8 bytes (4 bits) from est2 > coretemp3: on cpu3 > coretemp3: Setting TjMax=3D100 > random: harvesting attach, 8 bytes (4 bits) from coretemp3 > est3: on cpu3 > random: harvesting attach, 8 bytes (4 bits) from cpufreq3 > random: harvesting attach, 8 bytes (4 bits) from est3 > coretemp4: on cpu4 > coretemp4: Setting TjMax=3D100 > random: harvesting attach, 8 bytes (4 bits) from coretemp4 > est4: on cpu4 > random: harvesting attach, 8 bytes (4 bits) from cpufreq4 > random: harvesting attach, 8 bytes (4 bits) from est4 > coretemp5: on cpu5 > coretemp5: Setting TjMax=3D100 > random: harvesting attach, 8 bytes (4 bits) from coretemp5 > est5: on cpu5 > random: harvesting attach, 8 bytes (4 bits) from cpufreq5 > random: harvesting attach, 8 bytes (4 bits) from est5 > coretemp6: on cpu6 > coretemp6: Setting TjMax=3D100 > random: harvesting attach, 8 bytes (4 bits) from coretemp6 > est6: on cpu6 > random: harvesting attach, 8 bytes (4 bits) from cpufreq6 > random: harvesting attach, 8 bytes (4 bits) from est6 > coretemp7: on cpu7 > coretemp7: Setting TjMax=3D100 > random: harvesting attach, 8 bytes (4 bits) from coretemp7 > est7: on cpu7 > random: harvesting attach, 8 bytes (4 bits) from cpufreq7 > random: harvesting attach, 8 bytes (4 bits) from est7 > Device configuration finished. > procfs registered > lapic: Divisor 2, Frequency 49885587 Hz > Timecounters tick every 1.000 msec > vlan: initialized, using hash tables with chaining > Linux ELF exec handler installed > tcp_init: net.inet.tcp.tcbhashsize auto tuned to 65536 > IPsec: Initialized Security Association Processing. > ipfw2 (+ipv6) initialized, divert enabled, nat loadable, default to deny,= logging disabled > DUMMYNET 0 with IPv6 initialized (100409) > load_dn_sched dn_sched QFQ loaded > load_dn_sched dn_sched RR loaded > load_dn_sched dn_sched WF2Q+ loaded > lo0: bpf attached > load_dn_sched dn_sched FIFO loaded > load_dn_sched dn_sched PRIO loaded > hptrr: no controller detected. > hptnr: no controller detected. > hdacc0: at cad 0 on hdac0 > hdaa0: at nid 1 on hdacc0 > hdaa0: Subsystem ID: 0x102805cc > hdaa0: NumGPIO=3D0 NumGPO=3D0 NumGPI=3D0 GPIWake=3D0 GPIUnsol=3D0 > hdaa0: Original pins configuration: > hdaa0: nid 0x as seq device conn jack loc color m= isc > hdaa0: 4 585600f0 15 0 Digital-out None Digital 0x18 Unknown 0 > hdaa0: 5 185600f0 15 0 Digital-out Jack Digital 0x18 Unknown 0 > hdaa0: 6 585600f0 15 0 Digital-out None Digital 0x18 Unknown 0 > hdaa0: 7 185600f0 15 0 Digital-out Jack Digital 0x18 Unknown 0 > hdaa0: Patched pins configuration: > hdaa0: nid 0x as seq device conn jack loc color m= isc > hdaa0: 4 585600f0 15 0 Digital-out None Digital 0x18 Unknown 0= DISA > hdaa0: 5 185600f0 15 0 Digital-out Jack Digital 0x18 Unknown 0 > hdaa0: 6 585600f0 15 0 Digital-out None Digital 0x18 Unknown 0= DISA > hdaa0: 7 185600f0 15 0 Digital-out Jack Digital 0x18 Unknown 0 > hdaa0: 2 associations found: > hdaa0: Association 0 (15) out: > hdaa0: Pin nid=3D5 seq=3D0 > hdaa0: Association 1 (15) out: > hdaa0: Pin nid=3D7 seq=3D0 > hdaa0: Tracing association 0 (15) > hdaa0: Pin 5 traced to DAC 8 > hdaa0: Association 0 (15) trace succeeded > hdaa0: Tracing association 1 (15) > hdaa0: Pin 7 traced to DAC 9 > hdaa0: Association 1 (15) trace succeeded > hdaa0: Looking for additional DAC for association 0 (15) > hdaa0: Looking for additional DAC for association 1 (15) > hdaa0: Tracing input monitor > hdaa0: Tracing other input monitors > hdaa0: Tracing beeper > hdaa0: FG config/quirks: forcestereo ivref50 ivref80 ivref100 ivref > pcm0: at nid 5 on hdaa0 > pcm0: Playback: > pcm0: Stream cap: 0x00000005 AC3 PCM > pcm0: PCM cap: 0x000e07f0 16 20 24 bits, 32 44 48 88 96 176 192 K= Hz > pcm0: DAC: 8 > pcm0: > pcm0: nid=3D5 [pin: Digital-out (Jack)] > pcm0: + <- nid=3D8 [audio output] [src: pcm] > pcm0: > pcm0: Mixer "vol" -> "none": child=3D0x00000010 > pcm0: Mixer "pcm": parent=3D"vol" > pcm0: Soft PCM mixer ENABLED > pcm0: Playback channel matrix is: unknown, assuming 7.1 (disconnected) > random: harvesting attach, 8 bytes (4 bits) from pcm0 > pcm1: at nid 7 on hdaa0 > pcm1: Playback: > pcm1: Stream cap: 0x00000005 AC3 PCM > pcm1: PCM cap: 0x000e07f0 16 20 24 bits, 32 44 48 88 96 176 192 K= Hz > pcm1: DAC: 9 > pcm1: > pcm1: nid=3D7 [pin: Digital-out (Jack)] > pcm1: + <- nid=3D9 [audio output] [src: pcm] > pcm1: > pcm1: Mixer "vol" -> "none": child=3D0x00000010 > pcm1: Mixer "pcm": parent=3D"vol" > pcm1: Soft PCM mixer ENABLED > pcm1: Playback channel matrix is: unknown, assuming 7.1 (disconnected) > random: harvesting attach, 8 bytes (4 bits) from pcm1 > random: harvesting attach, 8 bytes (4 bits) from hdaa0 > random: harvesting attach, 8 bytes (4 bits) from hdacc0 > hdacc1: at cad 0 on hdac1 > hdaa1: at nid 1 on hdacc1 > hdaa1: Subsystem ID: 0x102805cc > hdaa1: NumGPIO=3D5 NumGPO=3D0 NumGPI=3D0 GPIWake=3D0 GPIUnsol=3D1 > hdaa1: GPIO0: disabled > hdaa1: GPIO1: disabled > hdaa1: GPIO2: disabled > hdaa1: GPIO3: disabled > hdaa1: GPIO4: disabled > hdaa1: Original pins configuration: > hdaa1: nid 0x as seq device conn jack loc color m= isc > hdaa1: 18 90a60140 4 0 Mic Fixed Digital Internal Unknown 1 > hdaa1: 19 411111f0 15 0 Speaker None 1/8 Rear Black 1 > hdaa1: 20 90170110 1 0 Speaker Fixed Analog Internal Unknown 1 > hdaa1: 21 0221401f 1 15 Headphones Jack 1/8 Front Green 0 > hdaa1: 22 01014020 2 0 Line-out Jack 1/8 Rear Green 0 > hdaa1: 24 02a19031 3 1 Mic Jack 1/8 Front Pink 0 > hdaa1: 25 01a1903e 3 14 Mic Jack 1/8 Rear Pink 0 > hdaa1: 26 411111f0 15 0 Speaker None 1/8 Rear Black 1 > hdaa1: 27 411111f0 15 0 Speaker None 1/8 Rear Black 1 > hdaa1: 29 40700001 0 1 Modem-handset None Unknown 0x00 Unknown 0 > hdaa1: 30 411111f0 15 0 Speaker None 1/8 Rear Black 1 > hdaa1: Patching widget caps nid=3D29 0x00400400 -> 0x00700400 > hdaa1: Patched pins configuration: > hdaa1: nid 0x as seq device conn jack loc color m= isc > hdaa1: 18 90a60140 4 0 Mic Fixed Digital Internal Unknown 1 > hdaa1: 19 411111f0 15 0 Speaker None 1/8 Rear Black 1= DISA > hdaa1: 20 90170110 1 0 Speaker Fixed Analog Internal Unknown 1 > hdaa1: 21 0221401f 1 15 Headphones Jack 1/8 Front Green 0 > hdaa1: 22 01014020 2 0 Line-out Jack 1/8 Rear Green 0 > hdaa1: 24 02a19031 3 1 Mic Jack 1/8 Front Pink 0 > hdaa1: 25 01a1903e 3 14 Mic Jack 1/8 Rear Pink 0 > hdaa1: 26 411111f0 15 0 Speaker None 1/8 Rear Black 1= DISA > hdaa1: 27 411111f0 15 0 Speaker None 1/8 Rear Black 1= DISA > hdaa1: 30 411111f0 15 0 Speaker None 1/8 Rear Black 1= DISA > hdaa1: 4 associations found: > hdaa1: Association 0 (1) out: > hdaa1: Pin nid=3D20 seq=3D0 > hdaa1: Pin nid=3D21 seq=3D15 > hdaa1: Association 1 (2) out: > hdaa1: Pin nid=3D22 seq=3D0 > hdaa1: Association 2 (3) in: > hdaa1: Pin nid=3D24 seq=3D1 > hdaa1: Pin nid=3D25 seq=3D14 > hdaa1: Association 3 (4) in: > hdaa1: Pin nid=3D18 seq=3D0 > hdaa1: Tracing association 0 (1) > hdaa1: Pin 20 traced to DAC 2 > hdaa1: Pin 21 traced to DAC 2 and hpredir 0 > hdaa1: Association 0 (1) trace succeeded > hdaa1: Tracing association 1 (2) > hdaa1: Pin 22 traced to DAC 3 > hdaa1: Association 1 (2) trace succeeded > hdaa1: Tracing association 2 (3) > hdaa1: Pin 24 traced to ADC 8 > hdaa1: Pin 25 traced to ADC 8 > hdaa1: Association 2 (3) trace succeeded > hdaa1: Tracing association 3 (4) > hdaa1: Pin 18 traced to ADC 9 > hdaa1: Association 3 (4) trace succeeded > hdaa1: Looking for additional DAC for association 0 (1) > hdaa1: Looking for additional DAC for association 1 (2) > hdaa1: Looking for additional ADC for association 2 (3) > hdaa1: Looking for additional ADC for association 3 (4) > hdaa1: Tracing input monitor > hdaa1: Tracing nid 11 to out > hdaa1: nid 11 is input monitor > hdaa1: Tracing other input monitors > hdaa1: Tracing nid 18 to out > hdaa1: Tracing nid 24 to out > hdaa1: Tracing nid 25 to out > hdaa1: Tracing beeper > hdaa1: Headphones redirection for association 0 nid=3D21 using unsolicite= d responses. > hdaa1: Redirect output to: main > hdaa1: FG config/quirks: forcestereo ivref50 ivref80 ivref100 ivref > pcm2: at nid 20,21 and 24,25 on hdaa= 1 > pcm2: Playback: > pcm2: Stream cap: 0x00000001 PCM > pcm2: PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz > pcm2: DAC: 2 > pcm2: > pcm2: nid=3D20 [pin: Speaker (Fixed)] > pcm2: + <- nid=3D12 [audio mixer] [src: pcm, mix] > pcm2: + <- nid=3D2 [audio output] [src: pcm] > pcm2: + <- nid=3D11 [audio mixer] [src: mix] > pcm2: > pcm2: nid=3D21 [pin: Headphones (Green Jack)] > pcm2: + <- nid=3D12 [audio mixer] [src: pcm, mix] > pcm2: + <- nid=3D2 [audio output] [src: pcm] > pcm2: + <- nid=3D11 [audio mixer] [src: mix] > pcm2: > pcm2: Record: > pcm2: Stream cap: 0x00000001 PCM > pcm2: PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz > pcm2: ADC: 8 > pcm2: > pcm2: nid=3D8 [audio input] > pcm2: + <- nid=3D35 [audio selector] [src: speaker, line, mic, mix] > pcm2: + <- nid=3D24 [pin: Mic (Pink Jack)] [src: mic] > pcm2: + <- nid=3D25 [pin: Mic (Pink Jack)] [src: line] > pcm2: + <- nid=3D29 [beep widget] [src: speaker] > pcm2: + <- nid=3D11 [audio mixer] [src: mix] > pcm2: > pcm2: Input Mix: > pcm2: > pcm2: nid=3D11 [audio mixer] > pcm2: + <- nid=3D24 [pin: Mic (Pink Jack)] [src: mic] > pcm2: + <- nid=3D25 [pin: Mic (Pink Jack)] [src: line] > pcm2: + <- nid=3D29 [beep widget] [src: speaker] > pcm2: > pcm2: Master Volume (OSS: vol): -65/0dB > pcm2: +- ctl 1 (nid 2 out): -65/0dB (88 steps) > pcm2: +- ctl 10 (nid 12 in 0): mute > pcm2: +- ctl 11 (nid 12 in 1): mute > pcm2: +- ctl 18 (nid 20 in ): mute > pcm2: +- ctl 19 (nid 21 in ): mute > pcm2: > pcm2: PCM Volume (OSS: pcm): -65/0dB > pcm2: +- ctl 1 (nid 2 out): -65/0dB (88 steps) > pcm2: +- ctl 10 (nid 12 in 0): mute > pcm2: > pcm2: Microphone Volume (OSS: mic): 0/30dB > pcm2: +- ctl 3 (nid 8 in 0): -17/30dB (64 steps) + mute > pcm2: +- ctl 5 (nid 11 in 0): -34/12dB (32 steps) + mute > pcm2: +- ctl 22 (nid 24 out): 0/30dB (4 steps) > pcm2: > pcm2: Line-in Volume (OSS: line): 0/36dB > pcm2: +- ctl 3 (nid 8 in 0): -17/30dB (64 steps) + mute > pcm2: +- ctl 6 (nid 11 in 1): -34/12dB (32 steps) + mute > pcm2: +- ctl 23 (nid 25 out): 0/36dB (4 steps) > pcm2: > pcm2: Speaker/Beep Volume (OSS: speaker): -17/12dB > pcm2: +- ctl 3 (nid 8 in 0): -17/30dB (64 steps) + mute > pcm2: +- ctl 9 (nid 11 in 4): -34/12dB (32 steps) + mute > pcm2: > pcm2: Recording Level (OSS: rec): -17/30dB > pcm2: +- ctl 3 (nid 8 in 0): -17/30dB (64 steps) + mute > pcm2: > pcm2: Input Mix Level (OSS: mix): -17/30dB > pcm2: +- ctl 3 (nid 8 in 0): -17/30dB (64 steps) + mute > pcm2: +- ctl 11 (nid 12 in 1): mute > pcm2: > pcm2: Input Monitoring Level (OSS: igain): 0/0dB > pcm2: +- ctl 11 (nid 12 in 1): mute > pcm2: > pcm2: Mixer "vol": > pcm2: Mixer "pcm": > pcm2: Mixer "speaker": > pcm2: Mixer "line": > pcm2: Mixer "mic": > pcm2: Mixer "mix": > pcm2: Mixer "rec": > pcm2: Mixer "igain": > pcm2: Mixer "ogain": > pcm2: Playback channel set is: Front Left, Front Right, > pcm2: Playback channel matrix is: 2.0 (unknown) > pcm2: Recording channel set is: Front Left, Front Right, > pcm2: Recording channel matrix is: 2.0 (disconnected) > random: harvesting attach, 8 bytes (4 bits) from pcm2 > pcm3: at nid 22 and 18 on hdaa1 > pcm3: Playback: > pcm3: Stream cap: 0x00000001 PCM > pcm3: PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz > pcm3: DAC: 3 > pcm3: > pcm3: nid=3D22 [pin: Line-out (Green Jack)] > pcm3: + <- nid=3D13 [audio mixer] [src: pcm, mix] > pcm3: + <- nid=3D3 [audio output] [src: pcm] > pcm3: + <- nid=3D11 [audio mixer] [src: mix] > pcm3: > pcm3: Record: > pcm3: Stream cap: 0x00000001 PCM > pcm3: PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz > pcm3: ADC: 9 > pcm3: > pcm3: nid=3D9 [audio input] > pcm3: + <- nid=3D34 [audio selector] [src: speaker, monitor] > pcm3: + <- nid=3D29 [beep widget] [src: speaker] > pcm3: + <- nid=3D18 [pin: Mic (Fixed)] [src: monitor] > pcm3: > pcm3: Master Volume (OSS: vol): -65/0dB > pcm3: +- ctl 2 (nid 3 out): -65/0dB (88 steps) > pcm3: +- ctl 12 (nid 13 in 0): mute > pcm3: +- ctl 13 (nid 13 in 1): mute > pcm3: +- ctl 20 (nid 22 in ): mute > pcm3: > pcm3: PCM Volume (OSS: pcm): -65/0dB > pcm3: +- ctl 2 (nid 3 out): -65/0dB (88 steps) > pcm3: +- ctl 12 (nid 13 in 0): mute > pcm3: > pcm3: Microphone2 Volume (OSS: monitor): 0/36dB > pcm3: +- ctl 4 (nid 9 in 0): -17/30dB (64 steps) + mute > pcm3: +- ctl 16 (nid 18 out): 0/36dB (4 steps) > pcm3: > pcm3: Speaker/Beep Volume (OSS: speaker) > pcm3: +- ctl 4 (nid 9 in 0): -17/30dB (64 steps) + mute > pcm3: > pcm3: Recording Level (OSS: rec): -17/30dB > pcm3: +- ctl 4 (nid 9 in 0): -17/30dB (64 steps) + mute > pcm3: +- ctl 16 (nid 18 out): 0/36dB (4 steps) > pcm3: > pcm3: Input Mix Level (OSS: mix) > pcm3: +- ctl 13 (nid 13 in 1): mute > pcm3: > pcm3: Input Monitoring Level (OSS: igain): 0/0dB > pcm3: +- ctl 13 (nid 13 in 1): mute > pcm3: > pcm3: Mixer "vol": > pcm3: Mixer "pcm": > pcm3: Mixer "rec": > pcm3: Mixer "igain": > pcm3: Mixer "ogain": > pcm3: Mixer "monitor": > pcm3: Playback channel set is: Front Left, Front Right, > pcm3: Playback channel matrix is: 2.0 (disconnected) > pcm3: Automatically set rec source to: monitor > pcm3: Recording channel set is: Front Left, Front Right, > pcm3: Recording channel matrix is: 2.0 (unknown) > random: harvesting attach, 8 bytes (4 bits) from pcm3 > random: harvesting attach, 8 bytes (4 bits) from hdaa1 > random: harvesting attach, 8 bytes (4 bits) from hdacc1 > usbus0: 5.0Gbps Super Speed USB v3.0 > usbus1: 480Mbps High Speed USB v2.0 > usbus2: 480Mbps High Speed USB v2.0 > ugen0.1: <0x8086> at usbus0 > ugen1.1: at usbus1 > uhub0: <0x8086 XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1> on usbus0 > uhub1: on usbus1 > ugen2.1: at usbus2 > uhub2: on usbus2 > ahcich0: AHCI reset... > ahcich0: SATA connect time=3D900us status=3D00000123 > ahcich0: AHCI reset: device found > ahcich0: AHCI reset: device ready after 0ms > ahcich1: AHCI reset... > ahcich1: SATA connect time=3D1000us status=3D00000113 > ahcich1: AHCI reset: device found > ahcich1: AHCI reset: device ready after 0ms > ahcich2: AHCI reset... > ahcich2: SATA connect timeout time=3D10000us status=3D00000000 > ahcich2: AHCI reset: device not found > ahcich3: AHCI reset... > ahcich3: SATA connect timeout time=3D10000us status=3D00000000 > ahcich3: AHCI reset: device not found > acpi_acad0: acline initialization start > battery0: battery initialization start > battery1: battery initialization start > ada0 at ahcich0 bus 0 scbus0 target 0 lun 0 > GEOM: new disk ada0 > ada0: ATA8-ACS SATA 2.x device > ada0: Serial Number W200TLZD > ada0: 300.000MB/s transfers (SATA 2.x, UDMA5, PIO 8192bytes) > ada0: Command Queueing enabled > ada0: 715404MB (1465149168 512 byte sectors: 16H 63S/T 16383C) > ada0: Previously was known as ad4 > pass0 at ahcich0 bus 0 scbus0 target 0 lun 0 > pass0: ATA8-ACS SATA 2.x device > pass0: Serial Number W200TLZD > pass0: 300.000MB/s transfers (SATA 2.x, UDMA5, PIO 8192bytes) > pass0: Command Queueing enabled > pass1 at ahcich1 bus 0 scbus1 target 0 lun 0 > pass1: Removable CD-ROM SCSI device > pass1: Serial Number K0121171240 > pass1: 150.000MB/s transfers (SATA 1.x, UDMA5, ATAPI 12bytes, PIO 8192byt= es) > pass2 at ahciem0 bus 0 scbus4 target 0 lun 0 > pass2: acpi_acad0: On Line > SEMB S-E-S 2.00 device > acpi_acad0: GEOM_PART: partition 1 on (ada0, MBR) is not aligned on 4096 = bytes > GEOM_PART: partition 2 on (ada0, MBR) is not aligned on 4096 bytes > GEOM_PART: partition 3 on (ada0, MBR) is not aligned on 4096 bytes > acline initialization done, tried 1 times > ses0 at ahciem0 bus 0 scbus4 target 0 lun 0 > ses0: SEMB S-E-S 2.00 device > ses0: SEMB SES Device > ses0: Generation Code 0x0 has 1 SubEnclosures > ses0: SubEnclosure ID 0, 1 Types With this ID, Descriptor Length 36, off= set 8 > ses0: WWN: 0 > ses0: Type Desc[0]: Type 0x17, MaxElt 5, In Subenc 0, Text Length 0: > Netvsc initializing... done! > lapic7: CMCI unmasked > lapic6: CMCI unmasked > lapic3: CMCI unmasked > lapic2: CMCI unmasked > lapic4: CMCI unmasked > lapic5: CMCI unmasked > SMP: AP CPU #1 Launched! > cpu1 AP: > ID: 0x00000001 VER: 0x01060015 LDR: 0x00000002 DFR: 0x00000000 x2A= PIC: 1 > lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000011ff > timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400 > cmci: 0x000100f2 > SMP: AP CPU #4 Launched! > cpu4 AP: > ID: 0x00000004 VER: 0x01060015 LDR: 0x00000010 DFR: 0x00000000 x2A= PIC: 1 > lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000011ff > timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400 > cmci: 0x000000f2 > SMP: AP CPU #7 Launched! > cpu7 AP: > ID: 0x00000007 VER: 0x01060015 LDR: 0x00000080 DFR: 0x00000000 x2A= PIC: 1 > lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000011ff > timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400 > cmci: 0x000000f2 > SMP: AP CPU #5 Launched! > cpu5 AP: > ID: 0x00000005 VER: 0x01060015 LDR: 0x00000020 DFR: 0x00000000 x2A= PIC: 1 > lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000011ff > timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400 > cmci: 0x000000f2 > SMP: AP CPU #3 Launched! > cpu3 AP: > ID: 0x00000003 VER: 0x01060015 LDR: 0x00000008 DFR: 0x00000000 x2A= PIC: 1 > lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000011ff > timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400 > cmci: 0x000000f2 > SMP: AP CPU #6 Launched! > cpu6 AP: > ID: 0x00000006 VER: 0x01060015 LDR: 0x00000040 DFR: 0x00000000 x2A= PIC: 1 > lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000011ff > timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400 > cmci: 0x000000f2 > SMP: AP CPU #2 Launched! > cpu2 AP: > ID: 0x00000002 VER: 0x01060015 LDR: 0x00000004 DFR: 0x00000000 x2A= PIC: 1 > lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000011ff > timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400 > cmci: 0x000000f2 > ioapic0: routing intpin 1 (ISA IRQ 1) to lapic 2 vector 48 > ioapic0: routing intpin 9 (ISA IRQ 9) to lapic 4 vector 48 > ioapic0: routing intpin 12 (ISA IRQ 12) to lapic 6 vector 48 > ioapic0: routing intpin 18 (PCI IRQ 18) to lapic 2 vector 49 > ioapic0: routing intpin 21 (PCI IRQ 21) to lapic 4 vector 49 > msi: Assigning MSI-X IRQ 257 to local APIC 1 vector 48 > Sleeping on "acmtx" with the following non-sleepable locks held: > exclusive sleep mutex intr sources (intr sources) r =3D 0 (0xffffffff81b6= 73c0) locked @ /usr/src/sys/x86/x86/intr_machdep.c:540 > KDB: stack backtrace: > db_trace_self_wrapper() at 0xffffffff8037d1bb =3D db_trace_self_wrapper+0= x2b/frame 0xffffffff82c126f0 > witness_warn() at 0xffffffff80a4489f =3D witness_warn+0x4af/frame 0xfffff= fff82c127c0 > _sleep() at cd0 at ahcich1 bus 0 scbus1 target 0 lun 0 > cd0: Removable CD-ROM SCSI device > 0xcd0: Serial Number K0121171240 > ffffffff809cd0: 150.000MB/s transfersf (1SATA 1.x, efUDMA5, dATAPI 12byte= s, PIO 8192bytes=3D) > _cd0: cd present [1 x 0 byte records] > sleep+0x6d/frame 0xffffffff82c12860 > AcpiOsAcquireMutex() at 0xffffffff8038b97f =3D AcpiOsAcquireMutex+0x17f/f= rame 0xffffffff82c128c0 > AcpiUtAcquireMutex() at 0xffffffff803639ca =3D AcpiUtAcquireMutex+0x3a/fr= ame 0xffffffff82c128f0 > AcpiExEnterInterpreter() at 0xffffffff803517bb =3D AcpiExEnterInterpreter= +0xb/frame 0xffffffff82c12900 > AcpiEvaluateObject() at 0xffffffff803588ad =3D AcpiEvaluateObject+0x24d/f= rame 0xffffffff82c12960 > acpi_GetInteger() at 0xffffffff8038c4bd =3D acpi_GetInteger+0x3d/frame 0x= ffffffff82c129c0 > dmar_find_hpet() at 0xffffffff80ecb3e1 =3D dmar_find_hpet+0x81/frame 0xff= ffffff82c12a00 > iommu_map_msi_intr() at 0xffffffff80ed3d1d =3D iommu_map_msi_intr+0x2d/fr= ame 0xffffffff82c12a50 > msi_map() at 0xffffffff80ee9241 =3D msi_map+0x171/frame 0xffffffff82c12a9= 0 > hpet_remap_intr() at 0xffffffff80dc0095 =3D hpet_remap_intr+0xb5/frame 0x= ffffffff82c12ae0 > msi_assign_cpu() at 0xffffffff80ee88f0 =3D msi_assign_cpu+0x1c0/frame 0xf= fffffff82c12b30 > intr_shuffle_irqs() at 0xffffffff80edfb83 =3D intr_shuffle_irqs+0x73/fram= e 0xffffffff82c12b50 > mi_startup() at 0xffffffff8098a918 =3D mi_startup+0x118/frame 0xffffffff8= 2c12b70 > btext() at 0xffffffff802f902c =3D btext+0x2c > lock order reversal: (Giant after non-sleepable) > 1st 0xffffffff81b673c0 intr sources (intr sources) @ /usr/src/sys/x86/x8= 6/intr_machdep.c:540 > 2nd 0xffffffff81bbcb10 Giant (Giant) @ /usr/src/sys/kern/kern_synch.c:24= 4 > KDB: stack backtrace: > db_trace_self_wrapper() at 0xffffffff8037d1bb =3D db_trace_self_wrapper+0= x2b/frame 0xffffffff82c126f0 > witness_checkorder() at 0xffffffff80a434ca =3D witness_checkorder+0xe7a/f= rame 0xffffffff82c12770 > __mtx_lock_flags() at 0xffffffff809ccc48 =3D __mtx_lock_flags+0xa8/frame = 0xffffffff82c127c0 > _sleep() at 0xffffffff809f226a =3D _sleep+0x3da/frame 0xffffffff82c12860 > AcpiOsAcquireMutex() at 0xffffffff8038b97f =3D AcpiOsAcquireMutex+0x17f/f= rame 0xffffffff82c128c0 > AcpiUtAcquireMutex() at 0xffffffff803639ca =3D AcpiUtAcquireMutex+0x3a/fr= ame 0xffffffff82c128f0 > AcpiExEnterInterpreter() at 0xffffffff803517bb =3D AcpiExEnterInterpreter= +0xb/frame 0xffffffff82c12900 > AcpiEvaluateObject() at 0xffffffff803588ad =3D AcpiEvaluateObject+0x24d/f= rame 0xffffffff82c12960 > acpi_GetInteger() at 0xffffffff8038c4bd =3D acpi_GetInteger+0x3d/frame 0x= ffffffff8 > 2c129c0 > dmar_find_hpet() at 0xffffffff80ecb3e1 =3D dmar_find_hpet+0x81/frame 0xff= ffffff82c12a00 > iommu_map_msi_intr() at 0xffffffff80ed3d1d =3D iommu_map_msi_intr+0x2d/fr= ame 0xffffffff82c12a50 > msi_map() at 0xffffffff80ee9241 =3D msi_map+0x171/frame 0xffffffff82c12a9= 0 > GEOM: new disk cd0 > hpet_remap_intr() at 0xffffffff80dc0095 =3D hpet_remap_intr+0xb5/frame 0x= ffffffff82c12ae0 > msi_assign_cpu() at 0xffffffff80ee88f0 =3D msi_assign_cpu+0x1c0/frame 0xf= fffffff82c12b30 > intr_shuffle_irqs() at 0xffffffff80edfb83 =3D intr_shuffle_irqs+0x73/fram= e 0xffffffff82c12b50 > mi_startup() at 0xffffffff8098a918 =3D mi_startup+0x118/frame 0xffffffff8= 2c12b70 > btext() at 0xffffffff802f902c =3D btext+0x2c > GEOM_PART: partition 1 on (diskid/DISK-W200TLZD, MBR) is not aligned on 4= 096 bytes > GEOM_PART: partition 2 on (diskid/DISK-W200TLZD, MBR) is not aligned on 4= 096 bytes > GEOM_PART: partition 3 on (diskid/DISK-W200TLZD, MBR) is not aligned on 4= 096 bytes > Expensive timeout(9) function: 0xffffffff80883770(0xffffffff817648c8) 0.0= 0470876 > 8 s > msi: Assigning MSI-X IRQ 258 to local APIC 2 vector 50 > Sleeping on "acmtx" with the following non-sleepable locks held: > exclusive sleep mutex intr sources (intr sources) r =3D 0 (0xffffffff81b6= 73c0) locked @ /usr/src/sys/x86/x86/intr_machdep.c:540 > KDB: stack backtrace: > db_trace_self_wrapper() at 0xffffffff8037d1bb =3D db_trace_self_wrapper+0= x2b/frame 0xffffffff82c126b0 > witness_warn() at 0xffffffff80a4489f =3D witness_warn+0x4af/frame 0xfffff= fff82c12780 > _sleep() at 0xffffffff809f1efd =3D _sleep+0x6d/frame 0xffffffff82c12820 > AcpiOsAcquireMutex() at 0xffffffff8038b97f =3D AcpiOsAcquireMutex+0x17f/f= rame 0xffffffff82c12880 > AcpiUtAcquireMutex() at 0xffffffff803639ca =3D AcpiUtAcquireMutex+0x3a/fr= ame 0xffffffff82c128b0 > AcpiExEnterInterpreter() at 0xffffffff803517bb =3D AcpiExEnterInterpreter= +0xb/frame 0xffffffff82c128c0 > AcpiNsEvaluate() at 0xffffffff8035539b =3D AcpiNsEvaluate+0x1cb/frame 0xf= fffffff82c12900 > AcpiEvaluateObject() at 0xffffffff803587ca =3D AcpiEvaluateObject+0x16a/f= rame 0xffffffff82c12960 > acpi_GetInteger() at 0xffffffff8038c4bd =3D acpi_GetInteger+0x3d/frame 0x= ffffffff8 > 2c129c0 > dmar_find_hpet() at 0xffffffff80ecb3e1 =3D dmar_find_hpet+0x81/frame 0xff= ffffff82c12a00 > iommu_map_msi_intr() at 0xffffffff80ed3d1d =3D iommu_map_msi_intr+0x2d/fr= ame 0xffffffff82c12a50 > msi_map() at 0xffffffff80ee9241 =3D msi_map+0x171/frame 0xffffffff82c12a9= 0 > hpet_remap_intr() at 0xffffffff80dc0095 =3D hpet_remap_intr+0xb5/frame 0x= ffffffff82c12ae0 > msi_assign_cpu() at 0xffffffff80ee88f0 =3D msi_assign_cpu+0x1c0/frame 0xf= fffffff82c12b30 > intr_shuffle_irqs() at 0xffffffff80edfb83 =3D intr_shuffle_irqs+0x73/fram= e 0xffffffff82c12b50 > mi_startup() at 0xffffffff8098a918 =3D mi_startup+0x118/frame 0xffffffff8= 2c12b70 > btext() at 0xffffffff802f902c =3D btext+0x2c > msi: Assigning MSI-X IRQ 259 to local APIC 3 vector 48 > msi: Assigning MSI-X IRQ 260 to local APIC 4 vector 50 > msi: Assigning MSI-X IRQ 261 to local APIC 5 vector 48 > msi: Assigning MSI-X IRQ 262 to local APIC 6 vector 49 > msi: Assigning MSI-X IRQ 263 to local APIC 7 vector 48 > msi: Assigning MSI IRQ 264 to local APIC 6 vector 50 > msi: Assigning MSI IRQ 266 to local APIC 2 vector 51 > msi: Assigning MSI IRQ 267 to local APIC 4 vector 51 > msi: Assigning MSI IRQ 268 to local APIC 6 vector 51 > msi: Assigning MSI IRQ 270 to local APIC 2 vector 52 > msi: Assigning MSI IRQ 271 to local APIC 4 vector 52 > SMP: passed TSC synchronization test > TSC timecounter discards lower 1 bit(s) > Timecounter "TSC-low" frequency 1396796100 Hz quality 1000 > WARNING: WITNESS option enabled, expect reduced performance. > WARNING: DIAGNOSTIC option enabled, expect reduced performance. > battery0: battery initialization done, tried 1 times > Root mount waiting for: usbus2 usbus1 usbus0 > uhub1: 2 ports with 2 removable, self powered > random: harvesting attach, 8 bytes (4 bits) from uhub1 > uhub2: 2 ports with 2 removable, self powered > random: harvesting attach, 8 bytes (4 bits) from uhub2 > uhub0: 21 ports with 21 removable, self powered > random: harvesting attach, 8 bytes (4 bits) from uhub0 > ugen2.2: at usbus2 > uhub3: o= n usbus2 > ugen1.2: at usbus1 > uhub4: o= n usbus1 > Root mount waiting for: usbus2 usbus1 > uhub4: 6 ports with 6 removable, self powered > random: harvesting attach, 8 bytes (4 bits) from uhub4 > uhub3: 8 ports with 8 removable, self powered > random: harvesting attach, 8 bytes (4 bits) from uhub3 > ugen2.3: at usbus2 > ugen1.3: at usbus1 > Trying to mount root from ufs:/dev/ada0s4a [rw]... > WARNING: / was not properly dismounted > start_init: trying /sbin/init > <118>Setting hostuuid: 3482a31e-f7d5-11e4-beac-34e6d73c4a93. > <118>Setting hostid: 0x7ed217e0. > <118>Starting file system checks: > <118>/dev/ada0s1a: 5398 files, 316995 used, 444252 free (1516 frags, 5534= 2 blocks, 0.2% fragmentation) > <118>/dev/ada0s1d: 175475 files, 947886 used, 1335905 free (14809 frags, = 165137 blocks, 0.6% fragmentation) > <118>/dev/ada0s2a: 5403 files, 317180 used, 444067 free (659 frags, 55426= blocks, 0.1% fragmentation) > <118>/dev/ada0s2d: 174957 files, 943282 used, 1340509 free (749 frags, 16= 7470 blocks, 0.0% fragmentation) > <118>/dev/ada0s3a: 7218 files, 476323 used, 284924 free (364 frags, 35570= blocks, 0.0% fragmentation) > <118>/dev/ada0s3d: 205182 files, 1103572 used, 1180219 free (347 frags, 1= 47484 b > locks, 0.0% fragmentation) > <118>/dev/ada0s4a: 5646 files, 299863 used, 461384 free (968 frags, 57552= blocks, 0.1% fragmentation) > <118>/dev/ada0s4d: 208393 files, 1295230 used, 988561 free (13225 frags, = 121917 blocks, 0.6% fragmentation) > <118>/dev/ada0s4e: 10478 files, 1167526 used, 1368345 free (2025 frags, 1= 70790 blocks, 0.1% fragmentation) > battery1: battery initialization failed, giving up > <118>/dev/ada0s4f: 1343217 files, 11547082 used, 20950605 free (11133 fra= gs, 2617434 blocks, 0.0% fragmentation) > <118>/dev/ada0s4g: 1850789 files, 22060589 used, 10437098 free (250314 fr= ags, 1273348 blocks, 0.8% fragmentation) > <118>/dev/ada0s4h: 56713 files, 23911910 used, 8585777 free (209 frags, 1= 073196 blocks, 0.0% fragmentation) > <118>/dev/ada0s4i: 545090 files, 3812474 used, 1264325 free (19925 frags,= 155550 blocks, 0.4% fragmentation) > <118>Mounting local file systems: > linprocfs registered > <118>. > <118>ELF ldconfig path: /lib /usr/lib /usr/lib/compat /usr/local/lib /usr= /local/lib/compat/pkg /usr/local/lib/R/lib /usr/local/lib/compat /usr/local= /lib/gcc48 /usr/local/lib/gegl-0.2 /usr/local/lib/graphviz /usr/local/lib/l= ibxul /usr/local/lib/mysql /usr/local/lib/nss /usr/local/lib/pth /usr/local= /lib/qt4 /usr/local/lib/virtualbox /usr/local/llvm35/lib /usr/local/llvm36/= lib > <118>32-bit compatibility ldconfig path: /usr/lib32 /usr/local/lib32 /usr= /local/lib32/compat /usr/local/lib32/wine > <118>Setting hostname: localhost. > <118>Setting up harvesting:[UMA],[FS_ATIME],SWI,INTERRUPT,NET_NG,NET_ETHE= R,NET_TUN,MOUSE,KEYBOARD,ATTACH,CACHED > <118>Feeding entropy:. > wlan0: bpf attached > wlan0: bpf attached > wlan0: Ethernet address: 00:24:d6:7a:03:ce > <118>Created wlan(4) interfaces: wlan0. > <118>Starting dhclient. > <118>em0: no link .............. giving up > <118>/etc/rc.d/dhclient: WARNING: failed to start dhclient > <118>Starting wpa_supplicant. > <118>Starting dhclient. > <118>wlan0: no link ... > iwn0: iwn_read_firmware: ucode rev=3D0x08530501 > <118>. > panic: lock (sleep mutex) iwn0_com_lock not locked @ /usr/src/sys/dev/iwn= /if_iwn.c:5356 > cpuid =3D 2 > KDB: stack backtrace: > db_trace_self_wrapper() at 0xffffffff8037d1bb =3D db_trace_self_wrapper+0= x2b/frame 0xfffffe060ad34850 > vpanic() at 0xffffffff809e9119 =3D vpanic+0x189/frame 0xfffffe060ad348d0 > kassert_panic() at 0xffffffff809e8f82 =3D kassert_panic+0x132/frame 0xfff= ffe060ad34940 > __mtx_unlock_flags() at 0xffffffff809cd161 =3D __mtx_unlock_flags+0x71/fr= ame 0xfffffe060ad34980 > iwn_updateedca() at 0xffffffff8058c9da =3D iwn_updateedca+0x15a/frame 0xf= ffffe060ad349e0 > taskqueue_run_locked() at 0xffffffff80a36ad0 =3D taskqueue_run_locked+0xf= 0/frame 0xfffffe060ad34a40 > taskqueue_thread_loop() at 0xffffffff80a375f8 =3D taskqueue_thread_loop+0= x88/frame 0xfffffe060ad34a70 > fork_exit() at 0xffffffff809af194 =3D fork_exit+0x84/frame 0xfffffe060ad3= 4ab0 > fork_trampoline() at 0xffffffff80d9a9be =3D fork_trampoline+0xe/frame 0xf= ffffe060ad34ab0 > --- trap 0, rip =3D 0, rsp =3D 0, rbp =3D 0 --- > KDB: enter: panic > > Reading symbols from /boot/kernel/geom_eli.ko...Reading symbols from /usr= /lib/debug//boot/kernel/geom_eli.ko.debug...done. > done. > Loaded symbols for ... > ... > Loaded symbols for /boot/kernel/linprocfs.ko > #0 doadump (textdump=3D0) at pcpu.h:221 > 221 pcpu.h: No such file or directory. > in pcpu.h > (kgdb) #0 doadump (textdump=3D0) at pcpu.h:221 > #1 0xffffffff8037af3e in db_dump (dummy=3D, dummy2= =3Dfalse, > dummy3=3D0, dummy4=3D0x0) at /usr/src/sys/ddb/db_command.c:533 > #2 0xffffffff8037aab1 in db_command (cmd_table=3D0x0) > at /usr/src/sys/ddb/db_command.c:440 > #3 0xffffffff8037a744 in db_command_loop () > at /usr/src/sys/ddb/db_command.c:493 > #4 0xffffffff8037d2fb in db_trap (type=3D, code=3D0= ) > at /usr/src/sys/ddb/db_main.c:251 > #5 0xffffffff80a26264 in kdb_trap (type=3D3, code=3D0, tf=3D) > at /usr/src/sys/kern/subr_kdb.c:654 > #6 0xffffffff80dba2c3 in trap (frame=3D0xfffffe060ad34780) > at /usr/src/sys/amd64/amd64/trap.c:549 > #7 0xffffffff80d9a48a in calltrap () > at /usr/src/sys/amd64/amd64/exception.S:234 > #8 0xffffffff80a2593e in kdb_enter (why=3D0xffffffff812a93ee "panic", > msg=3D0xffffffff80a2bb90 "UH\211AWAVATSH\203PI\211A\211H\213\004%\201H\211E\201<%x\201") at cpufunc.h:63 > #9 0xffffffff809e9139 in vpanic (fmt=3D, > ap=3D) at /usr/src/sys/kern/kern_shutdown.c:746 > #10 0xffffffff809e8f82 in kassert_panic (fmt=3D) > at /usr/src/sys/kern/kern_shutdown.c:643 > #11 0xffffffff809cd161 in __mtx_unlock_flags (c=3D0xfffffe03d7ed0070, opt= s=3D0, > file=3D0xffffffff80fcedd8 "/usr/src/sys/dev/iwn/if_iwn.c", line=3D535= 6) > at /usr/src/sys/kern/kern_mutex.c:245 > #12 0xffffffff8058c9da in iwn_updateedca (ic=3D) > at /usr/src/sys/dev/iwn/if_iwn.c:5356 > #13 0xffffffff80a36ad0 in taskqueue_run_locked (queue=3D0xfffff80006f6230= 0) > at /usr/src/sys/kern/subr_taskqueue.c:430 > #14 0xffffffff80a375f8 in taskqueue_thread_loop (arg=3D) > at /usr/src/sys/kern/subr_taskqueue.c:683 > #15 0xffffffff809af194 in fork_exit ( > callout=3D0xffffffff80a37570 , > arg=3D0xfffffe03d7ed0118, frame=3D0xfffffe060ad34ac0) > at /usr/src/sys/kern/kern_fork.c:1006 > #16 0xffffffff80d9a9be in fork_trampoline () > at /usr/src/sys/amd64/amd64/exception.S:609 > #17 0x0000000000000000 in ?? () > Current language: auto; currently minimal > (kgdb) > > ------------------------------------------------------------------------ > ps -axlww > > UID PID PPID CPU PRI NI VSZ RSS MWCHAN STAT TT TIME COMMAND > 0 0 0 0 -16 0 0 0 swapin DLs - 0:00.00 [kernel] > 0 1 0 0 20 0 5320 140 wait DLs - 0:00.00 [init] > 0 2 0 0 -16 0 0 0 - DL - 0:00.00 [rand_harves= tq] > 0 3 0 0 -16 0 0 0 crypto_w DL - 0:00.00 [crypto] > 0 4 0 0 -16 0 0 0 crypto_r DL - 0:00.00 [crypto retu= rns] > 0 5 0 0 -16 0 0 0 - RL - 0:00.00 [cam] > 0 6 0 0 -16 0 0 0 waiting_ DL - 0:00.00 [sctp_iterat= or] > 0 7 0 0 -16 0 0 0 idle DL - 0:00.00 [enc_daemon0= ] > 0 8 0 0 -16 0 0 0 psleep DL - 0:00.00 [pagedaemon] > 0 9 0 0 -16 0 0 0 psleep DL - 0:00.00 [vmdaemon] > 0 10 0 0 -16 0 0 0 audit_wo DL - 0:00.00 [audit] > 0 11 0 0 155 0 0 0 - RL - 0:00.00 [idle] > 0 12 0 0 -64 0 0 0 - WL - 0:00.00 [intr] > 0 13 0 0 -8 0 0 0 - DL - 0:00.00 [geom] > 0 14 0 0 -68 0 0 0 - DL - 0:00.00 [usb] > 0 15 0 0 -16 0 0 0 tzpoll DL - 0:00.00 [acpi_therma= l] > 0 16 0 0 155 0 0 0 pgzero DL - 0:00.00 [pagezero] > 0 17 0 0 -16 0 0 0 psleep DL - 0:00.00 [bufdaemon] > 0 18 0 0 16 0 0 0 syncer DL - 0:00.00 [syncer] > 0 19 0 0 -16 0 0 0 vlruwt DL - 0:00.00 [vnlru] > 0 20 1 0 52 0 13056 2008 wait Ds+ - 0:00.00 [sh] > 0 192 20 0 52 0 13056 2500 wait D+ - 0:00.00 [sh] > 0 343 1 0 46 0 20036 6288 - Rs - 0:00.00 [wpa_supplic= ant] > 0 346 192 0 52 0 13064 3300 wait D+ - 0:00.00 [sh] > 0 353 346 0 45 0 10532 2364 nanslp D+ - 0:00.00 [dhclient] > > ------------------------------------------------------------------------ > > > [Above was the second try (which is why all the fsck output is > present), and was a verbose boot.] > > As I type, vmcore.5 is about half-copied over. I need to relocate > shortly, so I may end up starting the copy over. > > Peace, > david > -- > David H. Wolfskill david@catwhisker.org > Those who would murder in the name of God or prophet are blasphemous cowa= rds. > > See http://www.catwhisker.org/~david/publickey.gpg for my public key. From owner-freebsd-current@freebsd.org Tue Sep 29 23:07:24 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 06EE9A0B614 for ; Tue, 29 Sep 2015 23:07:24 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id ECBFF1304; Tue, 29 Sep 2015 23:07:23 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id DB1CB4EE; Tue, 29 Sep 2015 23:07:19 +0000 (UTC) Date: Tue, 29 Sep 2015 23:07:12 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <342337798.106.1443568036749.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <397115640.104.1443552385379.JavaMail.jenkins@jenkins-9.freebsd.org> References: <397115640.104.1443552385379.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD-tests - Build #1504 - Still Unstable MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD-tests X-Jenkins-Result: UNSTABLE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Sep 2015 23:07:24 -0000 FreeBSD_HEAD-tests - Build #1504 - Still Unstable: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1504/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1504/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1504/console Change summaries: No changes The failed test cases: 1 tests failed. FAILED: test-report.xml. Error Message: From owner-freebsd-current@freebsd.org Wed Sep 30 00:08:14 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 62F96A0C26E for ; Wed, 30 Sep 2015 00:08:14 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from bigwig.baldwin.cx (bigwig.baldwin.cx [IPv6:2001:470:1f11:75::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 41B0E1224 for ; Wed, 30 Sep 2015 00:08:14 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from ralph.baldwin.cx (c-73-231-226-104.hsd1.ca.comcast.net [73.231.226.104]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 3F056B918; Tue, 29 Sep 2015 20:08:12 -0400 (EDT) From: John Baldwin To: freebsd-current@freebsd.org Cc: Daniel Dettlaff Subject: Re: Kernel panic with my kernel config. Applies to 9.x up to 10.2 Date: Tue, 29 Sep 2015 15:52:35 -0700 Message-ID: <1801846.MotfBDssTM@ralph.baldwin.cx> User-Agent: KMail/4.14.3 (FreeBSD/10.2-PRERELEASE; KDE/4.14.3; amd64; ; ) In-Reply-To: <627CBC76-626D-4CF1-AC07-666F832034DE@gmail.com> References: <627CBC76-626D-4CF1-AC07-666F832034DE@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Tue, 29 Sep 2015 20:08:12 -0400 (EDT) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Sep 2015 00:08:14 -0000 On Sunday, September 13, 2015 05:17:03 PM Daniel Dettlaff wrote: > Hi, I have custom kernel config: https://gist.github.com/dmilith/234b= 3e6b65b6fa606e27 > If I uncomment VIMAGE and epair from lines 10-11, each time I try to = launch any jail with vnet it panics the kernel. (also HBSD options migh= t be omited - they change nothing in this case, panics happened also wi= thout HBSD patches on vanilla FreeBSD). >=20 > Basically it=E2=80=99s 100% reproductible on all my testing hosts, an= d applies from 9.x to latest 10.2 (didn=E2=80=99t check 11.0 yet). >=20 > I hope it helps someone track VIMAGE/epair bugs! Can you provide info from your panic such as a backtrace? --=20 John Baldwin From owner-freebsd-current@freebsd.org Wed Sep 30 03:28:52 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C3A7FA0C2E2 for ; Wed, 30 Sep 2015 03:28:52 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id B57D8186F; Wed, 30 Sep 2015 03:28:52 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 66C8C56C; Wed, 30 Sep 2015 03:28:42 +0000 (UTC) Date: Wed, 30 Sep 2015 03:28:14 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <1606674190.108.1443583707792.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <342337798.106.1443568036749.JavaMail.jenkins@jenkins-9.freebsd.org> References: <342337798.106.1443568036749.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD-tests - Build #1505 - Still Unstable MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD-tests X-Jenkins-Result: UNSTABLE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Sep 2015 03:28:52 -0000 FreeBSD_HEAD-tests - Build #1505 - Still Unstable: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1505/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1505/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1505/console Change summaries: No changes The failed test cases: 1 tests failed. FAILED: test-report.xml. Error Message: From owner-freebsd-current@freebsd.org Wed Sep 30 08:09:37 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0FCEBA0BBDB; Wed, 30 Sep 2015 08:09:37 +0000 (UTC) (envelope-from carpeddiem@gmail.com) Received: from mail-io0-x22d.google.com (mail-io0-x22d.google.com [IPv6:2607:f8b0:4001:c06::22d]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D204A13AC; Wed, 30 Sep 2015 08:09:36 +0000 (UTC) (envelope-from carpeddiem@gmail.com) Received: by iofh134 with SMTP id h134so39033812iof.0; Wed, 30 Sep 2015 01:09:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:from:date:message-id:subject:to:cc:content-type; bh=HY9hLiYrMJCVpyojuE5TkhUJDUwfZcvowP5agcgl89E=; b=iWMOUBOeSz/Knz/m4Vlc1F8D86veAlwCp7xHVTyjQECetK5JHHjd9XN9MdZqpVArCF Siq7gRQwtrHEFgM6l37EWwfWtfLnYKGVQStsR1FGQUr3m1xJ73Vq6XX0t2Loyddb8GRf D0i5VQeOf4HP4kkhh/fL1aG6NdCTpjAEbbilLOLAaVx2Wsd7x8mEJLfviRLKY+AOq00F fNY6R7WXEz2SWiF09ZQoZswD74aJuZkYhFJwpKMSpelfwo2Snn4tdxq5UA1dGh3od9e6 rN51P7YozeZ6zKQvo4v/MTz9mZBOMiG6sNa4f/UV9+K4UznK3Utv72qGAsAqq2UKFAZa Mz0w== X-Received: by 10.107.165.140 with SMTP id o134mr2730401ioe.29.1443600576324; Wed, 30 Sep 2015 01:09:36 -0700 (PDT) MIME-Version: 1.0 Sender: carpeddiem@gmail.com Received: by 10.107.158.75 with HTTP; Wed, 30 Sep 2015 01:09:16 -0700 (PDT) From: Ed Maste Date: Wed, 30 Sep 2015 08:09:16 +0000 X-Google-Sender-Auth: fBx4eSroNdXqCRbg9OOSZlz82XQ Message-ID: Subject: 1-week reminder: Call for FreeBSD 2015Q3 (July-September) Status Reports To: FreeBSD Current , "freebsd-hackers@freebsd.org" , "freebsd-arch@freebsd.org" Cc: "monthly@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Sep 2015 08:09:37 -0000 Dear FreeBSD Community, This is a reminder that the deadline for the next FreeBSD Quarterly Status update is October 7, 2015, for work done in July through September. Thank you to those who have sent in reports already. For others there is still time to submit a report and highlight your work for the rest of FreeBSD community. Status report submissions do not have to be very long. They may be about anything happening in the FreeBSD project and community, and provide a great way to inform FreeBSD users and developers about what you're working on. Submission of reports is not restricted to committers. Anyone doing anything interesting and FreeBSD-related can -- and should -- write one! The preferred and easiest submission method is to use the XML generator [1] with the results emailed to the status report team at monthly at freebsd.org . There is also an XML template [2] which can be filled out manually and attached if preferred. For the expected content and style, please study our guidelines on how to write a good status report [3]. You can also review previous issues [4][5] for ideas on the style and format. We are looking forward to all of your 2015Q3 reports! Thanks, Ed (on behalf of monthly@) [1] http://www.freebsd.org/cgi/monthly.cgi [2] http://www.freebsd.org/news/status/report-sample.xml [3] http://www.freebsd.org/news/status/howto.html [4] http://www.freebsd.org/news/status/report-2015-01-2015-03.html [5] http://www.freebsd.org/news/status/report-2015-04-2015-06.html From owner-freebsd-current@freebsd.org Wed Sep 30 10:39:13 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 516B4A0B0DE for ; Wed, 30 Sep 2015 10:39:13 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 3EB7C1F7B; Wed, 30 Sep 2015 10:39:13 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id C9D53645; Wed, 30 Sep 2015 10:39:11 +0000 (UTC) Date: Wed, 30 Sep 2015 10:39:08 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <2053973663.110.1443609550128.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1606674190.108.1443583707792.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1606674190.108.1443583707792.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD-tests - Build #1506 - Still Unstable MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD-tests X-Jenkins-Result: UNSTABLE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Sep 2015 10:39:13 -0000 FreeBSD_HEAD-tests - Build #1506 - Still Unstable: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1506/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1506/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1506/console Change summaries: No changes The failed test cases: 1 tests failed. FAILED: test-report.xml. Error Message: From owner-freebsd-current@freebsd.org Wed Sep 30 12:54:55 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B800DA0BFAE for ; Wed, 30 Sep 2015 12:54:55 +0000 (UTC) (envelope-from david@catwhisker.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 98467193A for ; Wed, 30 Sep 2015 12:54:55 +0000 (UTC) (envelope-from david@catwhisker.org) Received: by mailman.ysv.freebsd.org (Postfix) id 9378FA0BFAA; Wed, 30 Sep 2015 12:54:55 +0000 (UTC) Delivered-To: current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92CC8A0BFA9; Wed, 30 Sep 2015 12:54:55 +0000 (UTC) (envelope-from david@catwhisker.org) Received: from albert.catwhisker.org (mx.catwhisker.org [198.144.209.73]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3BA721937; Wed, 30 Sep 2015 12:54:54 +0000 (UTC) (envelope-from david@catwhisker.org) Received: from albert.catwhisker.org (localhost [127.0.0.1]) by albert.catwhisker.org (8.15.2/8.15.2) with ESMTP id t8UCsrWR042080; Wed, 30 Sep 2015 05:54:53 -0700 (PDT) (envelope-from david@albert.catwhisker.org) Received: (from david@localhost) by albert.catwhisker.org (8.15.2/8.15.2/Submit) id t8UCsq6q042079; Wed, 30 Sep 2015 05:54:52 -0700 (PDT) (envelope-from david) Date: Wed, 30 Sep 2015 05:54:52 -0700 From: David Wolfskill To: Adrian Chadd Cc: "current@freebsd.org" , "net@freebsd.org" , wireless@freebsd.org Subject: Re: head/amd64 @r288358: panic: lock (sleep mutex) iwn0_com_lock not locked @ /usr/src/sys/dev/iwn/if_iwn.c:5356 Message-ID: <20150930125452.GS1125@albert.catwhisker.org> Mail-Followup-To: David Wolfskill , Adrian Chadd , "current@freebsd.org" , "net@freebsd.org" , wireless@freebsd.org References: <20150929130534.GI1125@albert.catwhisker.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="24bywM+ZyrW0DJoD" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.24 (2015-08-30) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Sep 2015 12:54:55 -0000 --24bywM+ZyrW0DJoD Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Sep 29, 2015 at 12:12:02PM -0700, Adrian Chadd wrote: > hi >=20 > (please subscribe and email freebsd-wireless@ these things, I'm more > likely to notice!) >=20 > It looks due to my recent taskqueue change for updateedca. I'll go fix > that today. >=20 > Thanks, > ... Looks as if you did: FreeBSD g1-252.catwhisker.org 11.0-CURRENT FreeBSD 11.0-CURRENT #199 r2884= 18M/288418:1100079: Wed Sep 30 04:51:56 PDT 2015 root@g1-252.catwhisker= =2Eorg:/common/S4/obj/usr/src/sys/CANARY amd64 Thanks! :-) Peace, david --=20 David H. Wolfskill david@catwhisker.org Those who would murder in the name of God or prophet are blasphemous coward= s. See http://www.catwhisker.org/~david/publickey.gpg for my public key. --24bywM+ZyrW0DJoD Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQJ8BAEBCgBmBQJWC9ucXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ4RThEMDY4QTIxMjc1MDZFRDIzODYzRTc4 QTY3RjlDOERFRjQxOTNCAAoJEIpn+cje9Bk7r/8P/0nCmtGe+ad/GBAC9DLmJZfJ Ru5cvBdi+s8QN8lQ7m+WSxEmiLjvDTzkfmr/Mijtr99BfBRefb2GfJDWhuQVmBvU J9ucCxElvIUMZ/HtHeyqDaa0ZQnvjKBNxxQAQKY6+Lg0XbMyKuA6c5SFpFofoB+V ywoP/PCfCUV6kWxBua0jM8KvXzKq/qZoaT1K4dVA08eSaydg0C5iO9zVWJ/fLIv0 aZnCQ2/+P/qyUt86bwnN1ncOevy79h7BxVobhBX+kRy0rhINtqXAY2w4mxKmHel5 OimAcWNkujPv2KWMVJl76RxWcqPBIMJTScVVdnTBQqgHVDntW4319KODMScQn+mB o9VRdV12QWUILyuuz/SuL9rDB4MHyqsQUo1Z3H5obnE96gTbQg1wG6e3Mf/4XOFj xX/eUc8460+AtY2H50aiFN5T/4PJ8VuszzFRyhpOy3C+r0pneawmtykv1gZ0PkOb pa/DB2ilhvJ6RM9d2XWT1ntayhT8cgklaZ47ZBuxE32TZ0lSEJc8pB7cNoadHVqv yH5y3Z6FQTbsFX2ufBbPc/hr7Ce/XmC3VLCEHFdZHgqTBiPerz3VWkSuw+iFTXLy /IRv0CtxDkbBiHiGFBU3fP6X5Ie83rrKCnyV9PRw60+vFeoyKAs8c/MvsvYsa+vF kNii1ic2ls8++ON0kE7d =zYOS -----END PGP SIGNATURE----- --24bywM+ZyrW0DJoD-- From owner-freebsd-current@freebsd.org Wed Sep 30 13:45:46 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B8C96A0C3C2 for ; Wed, 30 Sep 2015 13:45:46 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id AA4ED1270; Wed, 30 Sep 2015 13:45:46 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 337B569F; Wed, 30 Sep 2015 13:45:45 +0000 (UTC) Date: Wed, 30 Sep 2015 13:45:43 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <805355705.112.1443620745053.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <2053973663.110.1443609550128.JavaMail.jenkins@jenkins-9.freebsd.org> References: <2053973663.110.1443609550128.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD-tests - Build #1507 - Still Unstable MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD-tests X-Jenkins-Result: UNSTABLE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Sep 2015 13:45:46 -0000 FreeBSD_HEAD-tests - Build #1507 - Still Unstable: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1507/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1507/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1507/console Change summaries: No changes The failed test cases: 1 tests failed. FAILED: test-report.xml. Error Message: From owner-freebsd-current@freebsd.org Wed Sep 30 15:37:41 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 30ADCA0CAEC for ; Wed, 30 Sep 2015 15:37:41 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 1136410C2 for ; Wed, 30 Sep 2015 15:37:41 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: by mailman.ysv.freebsd.org (Postfix) id 0D74DA0CAE8; Wed, 30 Sep 2015 15:37:41 +0000 (UTC) Delivered-To: current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0CC33A0CAE7; Wed, 30 Sep 2015 15:37:41 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-io0-x22a.google.com (mail-io0-x22a.google.com [IPv6:2607:f8b0:4001:c06::22a]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CCFEF10C0; Wed, 30 Sep 2015 15:37:40 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: by iow1 with SMTP id 1so14608393iow.1; Wed, 30 Sep 2015 08:37:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=PPy1TZUmSfWUaT/axvqai0G7aVtTNhUvZc386/+3edo=; b=CYdRxyAkOPG9anSLd7jQkKD0+omw+A7kun7SEc76OX7F7LKCcD7B4EfCzqe9HuA7mh Tf0X5GRMQfetIZwiLNVp1C1Ip6idKZeMzm85aiSGs5prdZSYHAaZUw4hAcCmkk+K5vtK WQzkZQg3iJL20bZFZEbHXBRK12zyZKam+hZaNOSpy40NCn+gc6yCoC5ZWMwDfrxoCN9d Qx6eO5M1Ts4EMLsdeEiVhffHruoZvie6QGSRu3WbEd068E7jqZI04YlkERs7UPNyTr1a /WfMGXK3TyMOilNuR6NrE109o/ZTKcahSzP+rPpmEA9fC3gGb067zL8wa/oQRdN11dYx mV5Q== MIME-Version: 1.0 X-Received: by 10.107.46.228 with SMTP id u97mr5147370iou.165.1443627460222; Wed, 30 Sep 2015 08:37:40 -0700 (PDT) Received: by 10.36.46.15 with HTTP; Wed, 30 Sep 2015 08:37:40 -0700 (PDT) In-Reply-To: <20150930125452.GS1125@albert.catwhisker.org> References: <20150929130534.GI1125@albert.catwhisker.org> <20150930125452.GS1125@albert.catwhisker.org> Date: Wed, 30 Sep 2015 08:37:40 -0700 Message-ID: Subject: Re: head/amd64 @r288358: panic: lock (sleep mutex) iwn0_com_lock not locked @ /usr/src/sys/dev/iwn/if_iwn.c:5356 From: Adrian Chadd To: David Wolfskill , Adrian Chadd , "current@freebsd.org" , "net@freebsd.org" , "freebsd-wireless@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Sep 2015 15:37:41 -0000 Thanks for being quick and on the ball. I did another review of the drivers to see which others needed fixing and luckily it was only if_iwn. -a On 30 September 2015 at 05:54, David Wolfskill wrote: > On Tue, Sep 29, 2015 at 12:12:02PM -0700, Adrian Chadd wrote: >> hi >> >> (please subscribe and email freebsd-wireless@ these things, I'm more >> likely to notice!) >> >> It looks due to my recent taskqueue change for updateedca. I'll go fix >> that today. >> >> Thanks, >> ... > > Looks as if you did: > > FreeBSD g1-252.catwhisker.org 11.0-CURRENT FreeBSD 11.0-CURRENT #199 r288418M/288418:1100079: Wed Sep 30 04:51:56 PDT 2015 root@g1-252.catwhisker.org:/common/S4/obj/usr/src/sys/CANARY amd64 > > Thanks! :-) > > Peace, > david > -- > David H. Wolfskill david@catwhisker.org > Those who would murder in the name of God or prophet are blasphemous cowards. > > See http://www.catwhisker.org/~david/publickey.gpg for my public key. From owner-freebsd-current@freebsd.org Wed Sep 30 18:02:56 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 86B62A0CA8F for ; Wed, 30 Sep 2015 18:02:56 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 780C312FB; Wed, 30 Sep 2015 18:02:56 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id AE00571A; Wed, 30 Sep 2015 18:02:55 +0000 (UTC) Date: Wed, 30 Sep 2015 18:02:53 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <1408702020.114.1443636174458.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <805355705.112.1443620745053.JavaMail.jenkins@jenkins-9.freebsd.org> References: <805355705.112.1443620745053.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD-tests - Build #1508 - Still Unstable MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD-tests X-Jenkins-Result: UNSTABLE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Sep 2015 18:02:56 -0000 FreeBSD_HEAD-tests - Build #1508 - Still Unstable: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1508/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1508/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1508/console Change summaries: No changes The failed test cases: 1 tests failed. FAILED: test-report.xml. Error Message: From owner-freebsd-current@freebsd.org Wed Sep 30 21:34:19 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6C9B4A0C9F9 for ; Wed, 30 Sep 2015 21:34:19 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 5E80F142A; Wed, 30 Sep 2015 21:34:19 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 230657A8; Wed, 30 Sep 2015 21:34:18 +0000 (UTC) Date: Wed, 30 Sep 2015 21:34:17 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <1507383351.116.1443648858033.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1408702020.114.1443636174458.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1408702020.114.1443636174458.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD-tests - Build #1509 - Fixed MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD-tests X-Jenkins-Result: SUCCESS Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Sep 2015 21:34:19 -0000 FreeBSD_HEAD-tests - Build #1509 - Fixed: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1509/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1509/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD-tests/1509/console Change summaries: No changes From owner-freebsd-current@freebsd.org Thu Oct 1 13:25:56 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0BEBEA0CE2A for ; Thu, 1 Oct 2015 13:25:56 +0000 (UTC) (envelope-from freebsd-listen@fabiankeil.de) Received: from smtprelay04.ispgateway.de (smtprelay04.ispgateway.de [80.67.31.31]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 943A21B4F for ; Thu, 1 Oct 2015 13:25:55 +0000 (UTC) (envelope-from freebsd-listen@fabiankeil.de) Received: from [78.35.158.162] (helo=fabiankeil.de) by smtprelay04.ispgateway.de with esmtpsa (TLSv1.2:AES128-GCM-SHA256:128) (Exim 4.84) (envelope-from ) id 1Zhdq1-0002uB-86 for freebsd-current@FreeBSD.org; Thu, 01 Oct 2015 15:23:57 +0200 Date: Thu, 1 Oct 2015 15:23:56 +0200 From: Fabian Keil To: freebsd-current@FreeBSD.org Subject: panic: getblk: size(131072) > MAXBCACHEBUF(65536) Message-ID: <5afc3b28.65902f68@fabiankeil.de> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; boundary="Sig_/SjdW4NWbJgsaTY16uk+rExd"; protocol="application/pgp-signature" X-Df-Sender: Nzc1MDY3 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Oct 2015 13:25:56 -0000 --Sig_/SjdW4NWbJgsaTY16uk+rExd Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Shortly after upgrading to a kernel based on r288437 I got the following panic: Unread portion of the kernel message buffer: [5112] panic: getblk: size(131072) > MAXBCACHEBUF(65536) [...] (kgdb) where #0 doadump (textdump=3D0) at pcpu.h:221 #1 0xffffffff8030ca9e in db_dump (dummy=3D, dummy2=3D= false, dummy3=3D0, dummy4=3D0x0) at /usr/src/sys/ddb/db_command.c:533 #2 0xffffffff8030c651 in db_command (cmd_table=3D0x0) at /usr/src/sys/ddb/= db_command.c:440 #3 0xffffffff8030c2e4 in db_command_loop () at /usr/src/sys/ddb/db_command= .c:493 #4 0xffffffff8030ef0b in db_trap (type=3D, code=3D0) = at /usr/src/sys/ddb/db_main.c:251 #5 0xffffffff805d3cd4 in kdb_trap (type=3D3, code=3D0, tf=3D) at /usr/src/sys/kern/subr_kdb.c:654 #6 0xffffffff808651bf in trap (frame=3D0xfffffe009452b5f0) at /usr/src/sys= /amd64/amd64/trap.c:549 #7 0xffffffff80849e4a in calltrap () at /usr/src/sys/amd64/amd64/exception= .S:234 #8 0xffffffff805d33ae in kdb_enter (why=3D0xffffffff80953dc1 "panic", msg= =3D0xffffffff805d9e90 "U[...]") at cpufunc.h:63 #9 0xffffffff805902b9 in vpanic (fmt=3D, ap=3D) at /usr/src/sys/kern/kern_shutdown.c:746 #10 0xffffffff80590103 in panic (fmt=3D0x0) at /usr/src/sys/kern/kern_shutd= own.c:684 #11 0xffffffff806310e7 in getblk (vp=3D, blkno=3D, size=3D, slpflag=3D, slptimeo=3D, flags=3D) at /usr/src/sys/kern/vfs_bio.c:3324 #12 0xffffffff8063cf81 in vop_stdadvise (ap=3D) at /us= r/src/sys/kern/vfs_default.c:1099 #13 0xffffffff808ec827 in VOP_ADVISE_APV (vop=3D, a=3D= ) at vnode_if.c:3848 #14 0xffffffff80662844 in vn_read (fp=3D, uio=3D, active_cred=3D, flags=3D, td=3D0x8) at vnode_if.h:1648 #15 0xffffffff8065e27a in vn_io_fault (fp=3D0xfffff8000631eaf0, uio=3D0xfff= ffe009452baa0, active_cred=3D0xfffffe009452b5a0, flags=3D0, td=3D0x8) at /u= sr/src/sys/kern/vfs_vnops.c:1169 #16 0xffffffff805f0385 in dofileread (td=3D0xfffff800279fd9a0, fd=3D3, fp= =3D0xfffff8000631eaf0, auio=3D0xfffffe009452baa0, offset=3D, flags=3D50) at file.h:300 #17 0xffffffff805f00a8 in kern_readv (td=3D0xfffff800279fd9a0, fd=3D3, auio= =3D0xfffffe009452baa0) at /usr/src/sys/kern/sys_generic.c:273 #18 0xffffffff805f0033 in sys_read (td=3D0x0, uap=3D) = at /usr/src/sys/kern/sys_generic.c:186 #19 0xffffffff808661e8 in amd64_syscall (td=3D0xfffff800279fd9a0, traced=3D= 0) at subr_syscall.c:139 #20 0xffffffff8084a12b in Xfast_syscall () at /usr/src/sys/amd64/amd64/exce= ption.S:394 #21 0x00000008014d752a in ?? () Previous frame inner to this frame (corrupt stack?) Current language: auto; currently minimal The system was running for about 50 minutes before the panic occurred and didn't do anything special at the time (running Xorg, Firefox, ssh ...). I suspect r288431 and am currently compiling a kernel with the commit reverted. The previous kernel was based on r288265. Fabian --Sig_/SjdW4NWbJgsaTY16uk+rExd Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iEYEARECAAYFAlYNM+cACgkQBYqIVf93VJ3XdACfWGhU7wS0LDP6aWSCkopNK0Eu KaAAoLKQJHpQyNW4zcv7KpzcQk+3qpbN =K99o -----END PGP SIGNATURE----- --Sig_/SjdW4NWbJgsaTY16uk+rExd-- From owner-freebsd-current@freebsd.org Thu Oct 1 15:39:22 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8713DA0D0DE for ; Thu, 1 Oct 2015 15:39:22 +0000 (UTC) (envelope-from ricera10@gmail.com) Received: from mail-qg0-x22b.google.com (mail-qg0-x22b.google.com [IPv6:2607:f8b0:400d:c04::22b]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 393F71DB4; Thu, 1 Oct 2015 15:39:22 +0000 (UTC) (envelope-from ricera10@gmail.com) Received: by qgx61 with SMTP id 61so70641312qgx.3; Thu, 01 Oct 2015 08:39:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc:content-type; bh=iyaTBLGsGCdLQfd5g764V2/mkA0iXYrhCqD/VvIWiL0=; b=jhQMc0A63OMbk2VAn5pH505h3GkgEV6lUQgB7io7/MpUjGQlig9lvFH43mCEizwFto +9EBKg0/TeQvqoxAjy5RNhF5JABksepWa+5Y0G1GpzNDb4h4++39gB+NcWVCBD64IR8Q RShz2AuSNQTCwomzcOZBRYA1LuOl63blAHdSY+6AbVuQLjOMWM14rmdAA7T3xtvKLnCI WvtZIQ3sviPgjult4UI3Yv1j40Qwf/DMx924HVgtoORxtQuMpi3HqajHkXD1Dfl8bnvq vcEW+m2fkUek/EeKihWgVHbVZD8G0O0AbD9udwOpUkRDMwzwkvw5zDNe/zYjMqXVgP+I MMKQ== X-Received: by 10.140.92.175 with SMTP id b44mr12823271qge.61.1443713961031; Thu, 01 Oct 2015 08:39:21 -0700 (PDT) MIME-Version: 1.0 References: <20150915125618.0f752596@freyja.zeit4.iv.bundesimmobilien.de> <55F7FCB5.5090809@selasky.org> <2A35EA60C3C77D438915767F458D65688077F87B@ORSMSX111.amr.corp.intel.com> <20150917133509.6c87f5b6@freyja.zeit4.iv.bundesimmobilien.de> <20150917133712.0ffd01ee@freyja.zeit4.iv.bundesimmobilien.de> <55FC40CB.7090504@freebsd.org> <55FDA830.7030307@freebsd.org> <20150921105848.386d6ae0@freyja.zeit4.iv.bundesimmobilien.de> <20150922082323.6f861448@freyja.zeit4.iv.bundesimmobilien.de> <5601B591.6000005@freebsd.org> In-Reply-To: <5601B591.6000005@freebsd.org> From: Eric Joyner Date: Thu, 01 Oct 2015 15:39:11 +0000 Message-ID: Subject: Re: CURRENT: net/igb broken To: Sean Bruno , "O. Hartmann" Cc: "Pieper, Jeffrey E" , Hans Petter Selasky , freebsd-current Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Oct 2015 15:39:22 -0000 Oliver, did you try Sean's suggestion? - Eric On Tue, Sep 22, 2015 at 1:10 PM Sean Bruno wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA512 > > > > On 09/21/15 23:23, O. Hartmann wrote: > > On Mon, 21 Sep 2015 21:13:18 +0000 Eric Joyner > > wrote: > > > >> If you do a diff between r288057 and r287761, there are no > >> differences between the sys/dev/e1000, sys/modules/em, and > >> sys/modules/igb directories. Are you sure r287761 actually > >> works? > > > > I'm quite sure r287761 works (and r287762 doesn't), double checked > > this this morning again. I also checked r288093 and it is still not > > working. > > > > The ensure that I'm not the culprit and stupid here: > > > > I use a NanoBSD environment and the only thing that gets exchanged, > > is the underlying OS/OS revision. The configuration always stays > > the same. The base system for all of my tests is built from a clean > > source - (deleted obj/ dir, clean, fresh build into obj/ for every > > test I ran). > > > > I realised a funny thing. Playing around with enabling/disabling > > TSO (I have been told that could be the culprit in an earlier Email > > from this list) with the commend sequence: > > > > ifconfig igb1 down ifconfig igb1 -tso ifconfig igb1 up ifconfig > > igb1 down ifconfig igb1 tso ifconfig igb1 up . . . > > > > while a ping is pinging in the background a remote host connected > > to that specific interface, the ping does work for a while and dies > > then after a round trip of roughly 10 - 20. I can reproduce this. > > > > is that observation of any help? > > > > Regards, > > > > oh > > > >> > >> On Mon, Sep 21, 2015 at 1:58 AM O. Hartmann > >> wrote: > >> > >>> On Sat, 19 Sep 2015 11:23:44 -0700 Sean Bruno > >>> wrote: > >>> > > > > > > On 09/18/15 10:20, Eric Joyner wrote: > >>>>>> He has an i210 -- he would want to revert > >>>>>> e1000_i210.[ch], too. > >>>>>> > >>>>>> Sorry for the thrash Sean -- it sounds like it would be a > >>>>>> good idea for you should revert this patch, and Jeff and > >>>>>> I can go look at trying these shared code updates and igb > >>>>>> changes internally again. We at Intel really could've > >>>>>> done a better job of making sure these changes worked > >>>>>> across a wider variety of devices. > >>>>>> > >>>>>> - Eric > > > > I've reverted the changes to head. I'll reopen the reviews and we > > can proceed from there. > > > > sean > > > > > >>>>>> > >>>>>> On Fri, Sep 18, 2015 at 9:50 AM Sean Bruno > >>>>>> > wrote: > >>>>>> > >>>>>> > >>>>>>> > >>>>>>> r287762 broke the system > >>>>>> > >>>>>> > >>>>>> Before I revert this changeset *again* can you test > >>>>>> revert r287762 from if_igb.c, e1000_82575.c and > >>>>>> e1000_82575.h *only* > >>>>>> > >>>>>> That narrows down the change quite a bit. > >>>>>> > >>>>>> sean _______________________________________________ > >>>>>> freebsd-current@freebsd.org > >>>>>> mailing list > >>>>>> https://lists.freebsd.org/mailman/listinfo/freebsd-current > >>>>>> To unsubscribe, send any mail to > >>>>>> "freebsd-current-unsubscribe@freebsd.org > >>>>>> " > >>>>>> > >>> > >>> I'm now on r288057 on that specific machine, supposedly > >>> reverted changes that seemingly has been identified as the > >>> culprit. Still NO change in behaviour! > >>> > >>> r287761 works with the same configuration on igb (i210), any > >>> further does not. Not ping/connect from the outside, no > >>> ping/connect from the inside. Tried different protocols (SAMBA, > >>> ssh, LDAP, DNS). Affected is/are only boxes with the igb driver > >>> and i210 chipset (we do not have other chips covered by igb). > >>> > >>> Regards, Oliver > >>> > >> _______________________________________________ > >> freebsd-current@freebsd.org mailing list > >> https://lists.freebsd.org/mailman/listinfo/freebsd-current To > >> unsubscribe, send any mail to > >> "freebsd-current-unsubscribe@freebsd.org" > > > > > > > For my entertainment (and HPS's), can you run HEAD and revert r287775? > > sean > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v2 > > iQF8BAEBCgBmBQJWAbWOXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w > ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXRCQUFENDYzMkU3MTIxREU4RDIwOTk3REQx > MjAxRUZDQTFFNzI3RTY0AAoJEBIB78oecn5kPTAH/jmm1tudLRYVtC+xb9NXHQgr > dl8/fZC8/xL3m0EVM8pWdKlRbF1tHUDSB/2ftYUBEe6SIkab2IZx2Z/0VgdflrbB > 05HQUuq1yM3dYBiEAjyM0oK6lfeWu2Jg8nOaA5YWi1GO2OfkuDfXRUkK3sm7xa0C > PE+ZMlfofQCV0RyDu2ew17yZKYRbCXdc+GYg6CGNRRVJHeITZPyAAh8X1d7pC8G3 > 8vJLKC8JOmg0i5yToYSkKvXdrReHUpzF+hZKgxsl5Lb4BhcHEukkSWQVsJ9IuVGU > 615sN6eVub2+OBbxJyV+CcjUVwdLJba/YBUXhWdKslDrN2z9l/sAFHCxDJlmAvc= > =zdDL > -----END PGP SIGNATURE----- > _______________________________________________ > freebsd-current@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" > From owner-freebsd-current@freebsd.org Thu Oct 1 16:38:03 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7D52AA0DB2B for ; Thu, 1 Oct 2015 16:38:03 +0000 (UTC) (envelope-from markjdb@gmail.com) Received: from mail-pa0-x230.google.com (mail-pa0-x230.google.com [IPv6:2607:f8b0:400e:c03::230]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 502441BB7 for ; Thu, 1 Oct 2015 16:38:03 +0000 (UTC) (envelope-from markjdb@gmail.com) Received: by pacfv12 with SMTP id fv12so80841834pac.2 for ; Thu, 01 Oct 2015 09:38:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; bh=MZ1dAQVQsk9M+ftmxP6KxcmBwUnJJi96kbeO+bCbyqg=; b=RDcPM6N11dWTo7RbzIw3HRtSoG9662EiivVTQQx4Z6mQz9A73THIV6GUEAifDevR5+ 3O0C8mFdKFwmInZvA3Gh7oaBdC6BRB0/QnxuvylcAGa1T6T2nTWh6qFlsBzUpbXmFoRU sztdyz3xIl4t1PLFtPCbBdwhJan6oeOUxCy+tZ74rX5gjZdw5RXUhdHvGUH5zQzzeQlP h1hwR7N+Wbz0mTpvjrFwgmKV0AomrWdcBvsc/Yo0CDq9GdvovQ/2mW9pVpz4HXkp4KUX UJeRjyvqvUXJv3URBxkSuO5l1IIA1rHZlcoPE1/zbdBtvTh9Z5XjHhJletvTerQ3Og1t e8IA== X-Received: by 10.68.231.5 with SMTP id tc5mr13536992pbc.54.1443717482900; Thu, 01 Oct 2015 09:38:02 -0700 (PDT) Received: from raichu ([104.232.114.184]) by smtp.gmail.com with ESMTPSA id kw10sm7630678pbc.25.2015.10.01.09.38.01 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 01 Oct 2015 09:38:02 -0700 (PDT) Sender: Mark Johnston Date: Thu, 1 Oct 2015 09:37:58 -0700 From: Mark Johnston To: Fabian Keil Cc: freebsd-current@FreeBSD.org Subject: Re: panic: getblk: size(131072) > MAXBCACHEBUF(65536) Message-ID: <20151001163758.GA2188@raichu> References: <5afc3b28.65902f68@fabiankeil.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5afc3b28.65902f68@fabiankeil.de> User-Agent: Mutt/1.5.24 (2015-08-30) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Oct 2015 16:38:03 -0000 On Thu, Oct 01, 2015 at 03:23:56PM +0200, Fabian Keil wrote: > Shortly after upgrading to a kernel based on r288437 I got the following > panic: > > Unread portion of the kernel message buffer: > [5112] panic: getblk: size(131072) > MAXBCACHEBUF(65536) > [...] > (kgdb) where > #0 doadump (textdump=0) at pcpu.h:221 > #1 0xffffffff8030ca9e in db_dump (dummy=, dummy2=false, dummy3=0, dummy4=0x0) at /usr/src/sys/ddb/db_command.c:533 > #2 0xffffffff8030c651 in db_command (cmd_table=0x0) at /usr/src/sys/ddb/db_command.c:440 > #3 0xffffffff8030c2e4 in db_command_loop () at /usr/src/sys/ddb/db_command.c:493 > #4 0xffffffff8030ef0b in db_trap (type=, code=0) at /usr/src/sys/ddb/db_main.c:251 > #5 0xffffffff805d3cd4 in kdb_trap (type=3, code=0, tf=) at /usr/src/sys/kern/subr_kdb.c:654 > #6 0xffffffff808651bf in trap (frame=0xfffffe009452b5f0) at /usr/src/sys/amd64/amd64/trap.c:549 > #7 0xffffffff80849e4a in calltrap () at /usr/src/sys/amd64/amd64/exception.S:234 > #8 0xffffffff805d33ae in kdb_enter (why=0xffffffff80953dc1 "panic", msg=0xffffffff805d9e90 "U[...]") at cpufunc.h:63 > #9 0xffffffff805902b9 in vpanic (fmt=, ap=) at /usr/src/sys/kern/kern_shutdown.c:746 > #10 0xffffffff80590103 in panic (fmt=0x0) at /usr/src/sys/kern/kern_shutdown.c:684 > #11 0xffffffff806310e7 in getblk (vp=, blkno=, size=, slpflag=, slptimeo=, flags=) > at /usr/src/sys/kern/vfs_bio.c:3324 > #12 0xffffffff8063cf81 in vop_stdadvise (ap=) at /usr/src/sys/kern/vfs_default.c:1099 > #13 0xffffffff808ec827 in VOP_ADVISE_APV (vop=, a=) at vnode_if.c:3848 > #14 0xffffffff80662844 in vn_read (fp=, uio=, active_cred=, flags=, td=0x8) at vnode_if.h:1648 > #15 0xffffffff8065e27a in vn_io_fault (fp=0xfffff8000631eaf0, uio=0xfffffe009452baa0, active_cred=0xfffffe009452b5a0, flags=0, td=0x8) at /usr/src/sys/kern/vfs_vnops.c:1169 > #16 0xffffffff805f0385 in dofileread (td=0xfffff800279fd9a0, fd=3, fp=0xfffff8000631eaf0, auio=0xfffffe009452baa0, offset=, flags=50) at file.h:300 > #17 0xffffffff805f00a8 in kern_readv (td=0xfffff800279fd9a0, fd=3, auio=0xfffffe009452baa0) at /usr/src/sys/kern/sys_generic.c:273 > #18 0xffffffff805f0033 in sys_read (td=0x0, uap=) at /usr/src/sys/kern/sys_generic.c:186 > #19 0xffffffff808661e8 in amd64_syscall (td=0xfffff800279fd9a0, traced=0) at subr_syscall.c:139 > #20 0xffffffff8084a12b in Xfast_syscall () at /usr/src/sys/amd64/amd64/exception.S:394 > #21 0x00000008014d752a in ?? () > Previous frame inner to this frame (corrupt stack?) > Current language: auto; currently minimal > > The system was running for about 50 minutes before the panic occurred and > didn't do anything special at the time (running Xorg, Firefox, ssh ...). > > I suspect r288431 and am currently compiling a kernel with the > commit reverted. The previous kernel was based on r288265. > > Fabian Thanks for the report. This should be fixed as of r288451. (Sorry for misspelling your first name in the commit message!) -Mark From owner-freebsd-current@freebsd.org Thu Oct 1 16:58:12 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C7358A0D98F for ; Thu, 1 Oct 2015 16:58:12 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7D84C1F19; Thu, 1 Oct 2015 16:58:12 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost.zedat.fu-berlin.de (Exim 4.85) with esmtp (envelope-from ) id <1ZhhBC-0029I2-Ae>; Thu, 01 Oct 2015 18:58:02 +0200 Received: from f052007218.adsl.alicedsl.de ([78.52.7.218] helo=thor.walstatt.dynvpn.de) by inpost2.zedat.fu-berlin.de (Exim 4.85) with esmtpsa (envelope-from ) id <1ZhhBC-000Hrs-2T>; Thu, 01 Oct 2015 18:58:02 +0200 Date: Thu, 1 Oct 2015 18:57:57 +0200 From: "O. Hartmann" To: Eric Joyner Cc: Sean Bruno , "Pieper, Jeffrey E" , Hans Petter Selasky , freebsd-current Subject: Re: CURRENT: net/igb broken Message-ID: <20151001185757.03aef51e.ohartman@zedat.fu-berlin.de> In-Reply-To: References: <20150915125618.0f752596@freyja.zeit4.iv.bundesimmobilien.de> <55F7FCB5.5090809@selasky.org> <2A35EA60C3C77D438915767F458D65688077F87B@ORSMSX111.amr.corp.intel.com> <20150917133509.6c87f5b6@freyja.zeit4.iv.bundesimmobilien.de> <20150917133712.0ffd01ee@freyja.zeit4.iv.bundesimmobilien.de> <55FC40CB.7090504@freebsd.org> <55FDA830.7030307@freebsd.org> <20150921105848.386d6ae0@freyja.zeit4.iv.bundesimmobilien.de> <20150922082323.6f861448@freyja.zeit4.iv.bundesimmobilien.de> <5601B591.6000005@freebsd.org> Organization: FU Berlin X-Mailer: Claws Mail 3.12.0 (GTK+ 2.24.28; amd64-portbld-freebsd11.0) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; boundary="Sig_/Wrj/nXPNLM7QaPWmxb/ekyk"; protocol="application/pgp-signature" X-Originating-IP: 78.52.7.218 X-ZEDAT-Hint: A X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Oct 2015 16:58:12 -0000 --Sig_/Wrj/nXPNLM7QaPWmxb/ekyk Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Am Thu, 01 Oct 2015 15:39:11 +0000 Eric Joyner schrieb: > Oliver, >=20 > did you try Sean's suggestion? >=20 > - Eric Hello Eric, no, sorry, not yet. Today was the first day with the igb-equipted servers a= nd tomorrow (Friday) I will start to check whether Sean's suggestion helps or not. In the short time I fiddled arounf with the server, I brought up and down i= n a series the igb0|1 interfaces and pinged the system (with most recent CURRENT as of ~ 1= 5:00 CEST (UTC +2). And while doing that, this flapping the UP and DOWN state made th= e interfaces work for a couple of seconds - but it was hardly to reproduce with a define= d set of UP and DOWNs. I will report. Oliver >=20 > On Tue, Sep 22, 2015 at 1:10 PM Sean Bruno wrote: >=20 > > -----BEGIN PGP SIGNED MESSAGE----- > > Hash: SHA512 > > > > > > > > On 09/21/15 23:23, O. Hartmann wrote: > > > On Mon, 21 Sep 2015 21:13:18 +0000 Eric Joyner > > > wrote: > > > > > >> If you do a diff between r288057 and r287761, there are no > > >> differences between the sys/dev/e1000, sys/modules/em, and > > >> sys/modules/igb directories. Are you sure r287761 actually > > >> works? > > > > > > I'm quite sure r287761 works (and r287762 doesn't), double checked > > > this this morning again. I also checked r288093 and it is still not > > > working. > > > > > > The ensure that I'm not the culprit and stupid here: > > > > > > I use a NanoBSD environment and the only thing that gets exchanged, > > > is the underlying OS/OS revision. The configuration always stays > > > the same. The base system for all of my tests is built from a clean > > > source - (deleted obj/ dir, clean, fresh build into obj/ for every > > > test I ran). > > > > > > I realised a funny thing. Playing around with enabling/disabling > > > TSO (I have been told that could be the culprit in an earlier Email > > > from this list) with the commend sequence: > > > > > > ifconfig igb1 down ifconfig igb1 -tso ifconfig igb1 up ifconfig > > > igb1 down ifconfig igb1 tso ifconfig igb1 up . . . > > > > > > while a ping is pinging in the background a remote host connected > > > to that specific interface, the ping does work for a while and dies > > > then after a round trip of roughly 10 - 20. I can reproduce this. > > > > > > is that observation of any help? > > > > > > Regards, > > > > > > oh > > > > > >> > > >> On Mon, Sep 21, 2015 at 1:58 AM O. Hartmann > > >> wrote: > > >> > > >>> On Sat, 19 Sep 2015 11:23:44 -0700 Sean Bruno > > >>> wrote: > > >>> > > > > > > > > > On 09/18/15 10:20, Eric Joyner wrote: > > >>>>>> He has an i210 -- he would want to revert > > >>>>>> e1000_i210.[ch], too. > > >>>>>> > > >>>>>> Sorry for the thrash Sean -- it sounds like it would be a > > >>>>>> good idea for you should revert this patch, and Jeff and > > >>>>>> I can go look at trying these shared code updates and igb > > >>>>>> changes internally again. We at Intel really could've > > >>>>>> done a better job of making sure these changes worked > > >>>>>> across a wider variety of devices. > > >>>>>> > > >>>>>> - Eric > > > > > > I've reverted the changes to head. I'll reopen the reviews and we > > > can proceed from there. > > > > > > sean > > > > > > > > >>>>>> > > >>>>>> On Fri, Sep 18, 2015 at 9:50 AM Sean Bruno > > >>>>>> > wrote: > > >>>>>> > > >>>>>> > > >>>>>>> > > >>>>>>> r287762 broke the system > > >>>>>> > > >>>>>> > > >>>>>> Before I revert this changeset *again* can you test > > >>>>>> revert r287762 from if_igb.c, e1000_82575.c and > > >>>>>> e1000_82575.h *only* > > >>>>>> > > >>>>>> That narrows down the change quite a bit. > > >>>>>> > > >>>>>> sean _______________________________________________ > > >>>>>> freebsd-current@freebsd.org > > >>>>>> mailing list > > >>>>>> https://lists.freebsd.org/mailman/listinfo/freebsd-current > > >>>>>> To unsubscribe, send any mail to > > >>>>>> "freebsd-current-unsubscribe@freebsd.org > > >>>>>> " > > >>>>>> > > >>> > > >>> I'm now on r288057 on that specific machine, supposedly > > >>> reverted changes that seemingly has been identified as the > > >>> culprit. Still NO change in behaviour! > > >>> > > >>> r287761 works with the same configuration on igb (i210), any > > >>> further does not. Not ping/connect from the outside, no > > >>> ping/connect from the inside. Tried different protocols (SAMBA, > > >>> ssh, LDAP, DNS). Affected is/are only boxes with the igb driver > > >>> and i210 chipset (we do not have other chips covered by igb). > > >>> > > >>> Regards, Oliver > > >>> > > >> _______________________________________________ > > >> freebsd-current@freebsd.org mailing list > > >> https://lists.freebsd.org/mailman/listinfo/freebsd-current To > > >> unsubscribe, send any mail to > > >> "freebsd-current-unsubscribe@freebsd.org" > > > > > > > > > > > > For my entertainment (and HPS's), can you run HEAD and revert r287775? > > > > sean > > -----BEGIN PGP SIGNATURE----- > > Version: GnuPG v2 > > > > iQF8BAEBCgBmBQJWAbWOXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w > > ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXRCQUFENDYzMkU3MTIxREU4RDIwOTk3REQx > > MjAxRUZDQTFFNzI3RTY0AAoJEBIB78oecn5kPTAH/jmm1tudLRYVtC+xb9NXHQgr > > dl8/fZC8/xL3m0EVM8pWdKlRbF1tHUDSB/2ftYUBEe6SIkab2IZx2Z/0VgdflrbB > > 05HQUuq1yM3dYBiEAjyM0oK6lfeWu2Jg8nOaA5YWi1GO2OfkuDfXRUkK3sm7xa0C > > PE+ZMlfofQCV0RyDu2ew17yZKYRbCXdc+GYg6CGNRRVJHeITZPyAAh8X1d7pC8G3 > > 8vJLKC8JOmg0i5yToYSkKvXdrReHUpzF+hZKgxsl5Lb4BhcHEukkSWQVsJ9IuVGU > > 615sN6eVub2+OBbxJyV+CcjUVwdLJba/YBUXhWdKslDrN2z9l/sAFHCxDJlmAvc=3D > > =3DzdDL > > -----END PGP SIGNATURE----- > > _______________________________________________ > > freebsd-current@freebsd.org mailing list > > https://lists.freebsd.org/mailman/listinfo/freebsd-current > > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.o= rg" > > --Sig_/Wrj/nXPNLM7QaPWmxb/ekyk Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBCAAGBQJWDWYVAAoJEOgBcD7A/5N8VkEH/j4Ssfu+oQ7KnyOdMyPUuK89 jbRcGSyYgGzlm1Hrh32ZNqArCFRjfnwSIF5Zn+I+dgSqav5tnWo81yTnnmiaeTWY ttENPY7qmCwQNc0Xq6wtAG1YVqLH9ZC1aNkvEcRMuvs79HgNfRanOGcNL0tx/zg4 griMk9KSkUzo9vZwA+DZ7hUdqHla2d0M7KfQxtTKhgH/3xZJYYXwXvPe9tHW8xIg IlzzGyjswmKSvnfU6C6NlKtDnYD+ugMdsik7Efh4T+AFjTouU8epnXSiudQnr6BM GA6g3+Ffc8+xJr3aEFsYB48ekWxKVkC960CNgvQje1vCViD7AwhY/Dqi6tqkGik= =99dN -----END PGP SIGNATURE----- --Sig_/Wrj/nXPNLM7QaPWmxb/ekyk-- From owner-freebsd-current@freebsd.org Thu Oct 1 19:39:17 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 48305A0D8B1 for ; Thu, 1 Oct 2015 19:39:17 +0000 (UTC) (envelope-from oliver.pinter@hardenedbsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 29CEB1DCA for ; Thu, 1 Oct 2015 19:39:17 +0000 (UTC) (envelope-from oliver.pinter@hardenedbsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 28749A0D8AF; Thu, 1 Oct 2015 19:39:17 +0000 (UTC) Delivered-To: current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0EDB6A0D8AB for ; Thu, 1 Oct 2015 19:39:17 +0000 (UTC) (envelope-from oliver.pinter@hardenedbsd.org) Received: from mail-wi0-f177.google.com (mail-wi0-f177.google.com [209.85.212.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BAECE1DC7 for ; Thu, 1 Oct 2015 19:39:16 +0000 (UTC) (envelope-from oliver.pinter@hardenedbsd.org) Received: by wicfx3 with SMTP id fx3so5484232wic.1 for ; Thu, 01 Oct 2015 12:39:14 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=RRMLNnpdoUzZ6kgrGt2NSLpUD50215X29+PA7CybRtU=; b=bMAOO5eVGBBV0MvouXmoE2KLorJYBI3+AUaDtvkQeqVGWCYALSd6o1VHAH55YTP9pg 4ZBDYfTLBuXO1XcKUYwMemQqht+A4tIOWRsoi9t5qiHn1glE79PL+ujJJ2ZlicN0k152 dOZdcvsuP32DoN15SWBteR9HTCrErZWoEZTgjv16d804hMSgkvRGB1leXrykfMtH/8K9 dmn5SfLjuOV7HcCoR51xTAAal1PPTFQZOkpXmL78KBj+BI3wZTUko+sJqvopqeiZ+sMA PO/azUt/IZvPJfzH6tP6i5ggZ5FNWxnf3gogW4p7vsSUY3NO4zrIm/v+J2pOydVsecTp IJkg== X-Gm-Message-State: ALoCoQnm7z4ENnxBqRpTWN2dyYfH1CNRSyoPDeDsKjB7NrUUebHc+fhosWx+0sdqKLYoLvUzj4Vf MIME-Version: 1.0 X-Received: by 10.194.80.197 with SMTP id t5mr11798837wjx.143.1443728354694; Thu, 01 Oct 2015 12:39:14 -0700 (PDT) Received: by 10.194.240.226 with HTTP; Thu, 1 Oct 2015 12:39:14 -0700 (PDT) In-Reply-To: References: Date: Thu, 1 Oct 2015 21:39:14 +0200 Message-ID: Subject: Re: ZFS panic From: Oliver Pinter To: current@freebsd.org Cc: jmg@freebsd.org, avg@freebsd.org, swills@freebsd.org Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Oct 2015 19:39:17 -0000 CC+= swills On 9/17/15, Oliver Pinter wrote: > Hi All! > > We got this panic on modified FreeBSD (we not touched the ZFS part). > > panic: solaris assert: error || lr->lr_length <= zp->z_blksz, file: > /usr/src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c, > line: 1355 > cpuid = 6 > KDB: stack backtrace: > #0 0xffffffff80639527 at kdb_backtrace+0x67 > #1 0xffffffff805fd509 at vpanic+0x189 > #2 0xffffffff805fd593 at panic+0x43 > #3 0xffffffff802ce3aa at assfail+0x1a > #4 0xffffffff8039c391 at zfs_get_data+0x391 > #5 0xffffffff803afeac at zil_commit+0x94c > #6 0xffffffff803a39d8 at zfs_freebsd_fsync+0xc8 > #7 0xffffffff8089a8a7 at VOP_FSYNC_APV+0xf7 > #8 0xffffffff806afc40 at sys_fsync+0x170 > #9 0xffffffff808311bc at amd64_syscall+0x2bc > #10 0xffffffff8081285b at Xfast_syscall+0xfb > Uptime: 7d5h19m13s > Dumping 8207 out of 32742 > MB:..1%..11%..21%..31%..41%..51%..61%..71%..81%..91% > Dump complete > Automatic reboot in 15 seconds - press a key on the console to abort > Rebooting... > cpu_reset: Restarting BSP > cpu_reset_proxy: Stopped CPU 6 > > > (kgdb) bt > #0 doadump (textdump=) at pcpu.h:221 > #1 0xffffffff805fcf70 in kern_reboot (howto=260) at > /usr/src/sys/kern/kern_shutdown.c:329 > #2 0xffffffff805fd548 in vpanic (fmt=, ap= optimized out>) at /usr/src/sys/kern/kern_shutdown.c:626 > #3 0xffffffff805fd593 in panic (fmt=0x0) at > /usr/src/sys/kern/kern_shutdown.c:557 > #4 0xffffffff802ce3aa in assfail (a=, f= optimized out>, l=) at > /usr/src/sys/cddl/compat/opensolaris/kern/opensolaris_cmn_err.c:81 > #5 0xffffffff8039c391 in zfs_get_data (arg=, > lr=, buf=, > zio=0xfffff8019eeb1760) at > /usr/src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c:1355 > #6 0xffffffff803afeac in zil_commit (zilog=0xfffff8001d518800, > foid=) at > /usr/src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zil.c:1107 > #7 0xffffffff803a39d8 in zfs_freebsd_fsync (ap=) > at /usr/src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c:2797 > #8 0xffffffff8089a8a7 in VOP_FSYNC_APV (vop=, > a=) at vnode_if.c:1328 > #9 0xffffffff806afc40 in sys_fsync (td=0xfffff8001d0429c0, uap= optimized out>) at vnode_if.h:549 > #10 0xffffffff808311bc in amd64_syscall (td=0xfffff8001d0429c0, > traced=0) at subr_syscall.c:139 > #11 0xffffffff8081285b in Xfast_syscall () at > /usr/src/sys/amd64/amd64/exception.S:394 > #12 0x000000000058d23a in ?? () > Previous frame inner to this frame (corrupt stack?) > Current language: auto; currently minimal > (kgdb) f 5 > #5 0xffffffff8039c391 in zfs_get_data (arg=, > lr=, buf=, > zio=0xfffff8019eeb1760) at > /usr/src/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c:1355 > 1355 ASSERT(error || lr->lr_length <= > zp->z_blksz); > (kgdb) l > 1350 ASSERT(db->db_offset == offset); > 1351 ASSERT(db->db_size == size); > 1352 > 1353 error = dmu_sync(zio, > lr->lr_common.lrc_txg, > 1354 zfs_get_done, zgd); > 1355 ASSERT(error || lr->lr_length <= > zp->z_blksz); > 1356 > 1357 /* > 1358 * On success, we need to wait for the write > I/O > 1359 * initiated by dmu_sync() to complete > before we can > (kgdb) p *lr > Cannot access memory at address 0xa5a5a5a5a5a5a5a5 > (kgdb) p *zp > Cannot access memory at address 0xa5a5a5a5a5a5a5a5 > (kgdb) > > > Undefined info command: "regs". Try "help info". > (kgdb) info registers > rax 0x0 0 > rbx 0xfffff804aab14e00 -8776049406464 > rcx 0x0 0 > rdx 0x0 0 > rsi 0x0 0 > rdi 0x0 0 > rbp 0xfffffe085f78e8f0 0xfffffe085f78e8f0 > rsp 0xfffffe085f78e890 0xfffffe085f78e890 > r8 0x0 0 > r9 0x0 0 > r10 0x0 0 > r11 0x0 0 > r12 0x0 0 > r13 0xfffffe034cecd0b8 -2184847765320 > r14 0x20000 131072 > r15 0x0 0 > rip 0xffffffff8039c391 0xffffffff8039c391 > > eflags 0x0 0 > cs 0x0 0 > ss 0x0 0 > ds 0x0 0 > es 0x0 0 > fs 0x0 0 > gs 0x0 0 > > [...] > ffffffff8039c2f9: 48 8b 7d b0 mov -0x50(%rbp),%rdi > ffffffff8039c2fd: 48 89 d9 mov %rbx,%rcx > ffffffff8039c300: e8 db 50 f6 ff callq > ffffffff803013e0 > ffffffff8039c305: 41 89 c4 mov %eax,%r12d > ffffffff8039c308: 41 83 fc 25 cmp $0x25,%r12d > ffffffff8039c30c: 75 53 jne > ffffffff8039c361 > ffffffff8039c30e: 49 c7 45 00 14 00 00 movq $0x14,0x0(%r13) > ffffffff8039c315: 00 > ffffffff8039c316: 45 31 e4 xor %r12d,%r12d > ffffffff8039c319: eb 29 jmp > ffffffff8039c344 > ffffffff8039c31b: 48 8b 3c 25 38 a4 c1 mov > 0xffffffff80c1a438,%rdi > ffffffff8039c322: 80 > ffffffff8039c323: 41 bc 02 00 00 00 mov $0x2,%r12d > ffffffff8039c329: 48 85 ff test %rdi,%rdi > ffffffff8039c32c: 74 16 je > ffffffff8039c344 > ffffffff8039c32e: be 02 00 00 00 mov $0x2,%esi > ffffffff8039c333: 31 d2 xor %edx,%edx > ffffffff8039c335: 31 c9 xor %ecx,%ecx > ffffffff8039c337: 45 31 c0 xor %r8d,%r8d > ffffffff8039c33a: 45 31 c9 xor %r9d,%r9d > ffffffff8039c33d: ff 14 25 78 9a c6 80 callq *0xffffffff80c69a78 > ffffffff8039c344: 48 89 df mov %rbx,%rdi > ffffffff8039c347: 44 89 e6 mov %r12d,%esi > ffffffff8039c34a: e8 f1 fb ff ff callq > ffffffff8039bf40 > ffffffff8039c34f: 44 89 e0 mov %r12d,%eax > ffffffff8039c352: 48 83 c4 38 add $0x38,%rsp > ffffffff8039c356: 5b pop %rbx > ffffffff8039c357: 41 5c pop %r12 > ffffffff8039c359: 41 5d pop %r13 > ffffffff8039c35b: 41 5e pop %r14 > ffffffff8039c35d: 41 5f pop %r15 > ffffffff8039c35f: 5d pop %rbp > ffffffff8039c360: c3 retq > ffffffff8039c361: 45 85 e4 test %r12d,%r12d > ffffffff8039c364: 75 de jne > ffffffff8039c344 > ffffffff8039c366: 48 8b 45 d0 mov -0x30(%rbp),%rax > ffffffff8039c36a: 8b 80 cc 00 00 00 mov 0xcc(%rax),%eax > ffffffff8039c370: 45 31 e4 xor %r12d,%r12d > ffffffff8039c373: 49 39 45 30 cmp %rax,0x30(%r13) > ffffffff8039c377: 76 d6 jbe > ffffffff8039c34f > ffffffff8039c379: 48 c7 c7 60 d5 91 80 mov > $0xffffffff8091d560,%rdi > ffffffff8039c380: 48 c7 c6 f0 d4 91 80 mov > $0xffffffff8091d4f0,%rsi > ffffffff8039c387: ba 4b 05 00 00 mov $0x54b,%edx > ffffffff8039c38c: e8 ff 1f f3 ff callq > ffffffff802ce390 > ffffffff8039c391: eb bc jmp > ffffffff8039c34f > ffffffff8039c393: 66 66 66 66 2e 0f 1f nopw %cs:0x0(%rax,%rax,1) > ffffffff8039c39a: 84 00 00 00 00 00 > > If you need more details, then please ping me, I have a core dump from > the crash. > From owner-freebsd-current@freebsd.org Fri Oct 2 06:19:54 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 16DEBA0D1A4 for ; Fri, 2 Oct 2015 06:19:54 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 2E29D15DC; Fri, 2 Oct 2015 06:19:52 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from porto.starpoint.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id JAA04551; Fri, 02 Oct 2015 09:19:50 +0300 (EEST) (envelope-from avg@FreeBSD.org) Received: from localhost ([127.0.0.1]) by porto.starpoint.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1Zhth8-000PUE-16; Fri, 02 Oct 2015 09:19:50 +0300 Subject: Re: kgdb ported to devel/gdb To: John Baldwin , freebsd-current@FreeBSD.org References: <2662739.EWKL7pkiRb@ralph.baldwin.cx> From: Andriy Gapon X-Enigmail-Draft-Status: N1110 Message-ID: <560E21E1.6010002@FreeBSD.org> Date: Fri, 2 Oct 2015 09:19:13 +0300 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 MIME-Version: 1.0 In-Reply-To: <2662739.EWKL7pkiRb@ralph.baldwin.cx> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Oct 2015 06:19:54 -0000 On 01/09/2015 00:32, John Baldwin wrote: > Over the past several months I have ported kgdb to the version of gdb in ports. > I have a pending patch to the gdb port to add fork following, but once that is > done (and possibly after updating to 7.10) I will try to add my existing work > as a KGDB option on the port. Until such time, you can try the newer kgdb by > checking out my branch from git. > > Here's my cheat sheet on how to build the newer kgdb. Note that if you build > a world with my cross-libkvm patches you should get a kgdb that can debug > i386 cores on amd64 and vice versa. > > All of the targets that the native devel/gdb support have their backends > ported (so x86, sparc64, powerpc and powerpc64). I have not yet ported > arm or mips since those don't work for userland yet in upstream gdb. I > have only compiled non-x86 backends. Testing of the new kgdb on sparc64 > and powerpc would be appreciated. > > Steps: > > % git clone https://github.com/bsdjhb/gdb.git > % git checkout freebsd-7.9.1-kgdb > % fetch http://www.freebsd.org/~jhb/gdb/build > % pkg install devel/gdb > > # Having gdb installed will mean you get the python bindings in the right > # place. > > % pkg install gmake > > # I think this is the only build tool you need? > > % ./build > % cd obj > > # Replace 'obj' with 'obj.' for all but amd64 > > % gmake > > # ... wait > > You will now have a binary at 'obj/gdb/kgdb'. I just run it from my obj > tree currently when testing. Once it becomes part of the port it will get > installed as /usr/local/bin/kgdb791 or some such. John, first of all, thank you very much for this! I followed your instructions substituting freebsd-7.10-kgdb for freebsd-7.9.1-kgdb branch (devel/gdb is also at version 7.10) and the build process worked just fine. However, when I try to use the new kgdb it works, but I get some annoying diagnostics: (kgdb) bt Python Exception Installation error: gdb.execute_unwinders function is missing: Python Exception No module named gdb.frames: #0 doadump (textdump=1) at /usr/src/sys/kern/kern_shutdown.c:291 #1 0xffffffff8063453f in kern_reboot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:359 Python Exception Installation error: gdb.execute_unwinders function is missing: Python Exception Installation error: gdb.execute_unwinders function is missing: #2 0xffffffff80634ba4 in vpanic (fmt=, ap=) at /usr/src/sys/kern/kern_shutdown.c:635 Python Exception Installation error: gdb.execute_unwinders function is missing: #3 0xffffffff806348a3 in panic (fmt=) at /usr/src/sys/kern/kern_shutdown.c:568 Python Exception Installation error: gdb.execute_unwinders function is missing: #4 0xffffffff8041bba7 in db_panic (addr=, have_addr=, count=, modif=) at /usr/src/sys/ddb/db_command.c:473 Python Exception Installation error: gdb.execute_unwinders function is missing: #5 0xffffffff8041b67b in db_command (last_cmdp=, cmd_table=0x0, dopager=) at /usr/src/sys/ddb/db_command.c:440 #6 0xffffffff8041b524 in db_command_loop () at /usr/src/sys/ddb/db_command.c:493 Python Exception Installation error: gdb.execute_unwinders function is missing: #7 0xffffffff8041de0b in db_trap (type=, code=) at /usr/src/sys/ddb/db_main.c:251 Python Exception Installation error: gdb.execute_unwinders function is missing: Python Exception Installation error: gdb.execute_unwinders function is missing: #8 0xffffffff80669de8 in kdb_trap (type=19, code=0, tf=0xffffffff80f976d0 ) at /usr/src/sys/kern/subr_kdb.c:653 Python Exception Installation error: gdb.execute_unwinders function is missing: #9 0xffffffff80820d26 in trap (frame=0xffffffff80f976d0 ) at /usr/src/sys/amd64/amd64/trap.c:381 #10 0xffffffff80809623 in nmi_calltrap () at /usr/src/sys/amd64/amd64/exception.S:514 Python Exception Installation error: gdb.execute_unwinders function is missing: #11 0xffffffff80619e1f in __mtx_assert (c=, what=, file=, line=) at /usr/src/sys/kern/kern_mutex.c:842 Backtrace stopped: previous frame inner to this frame (corrupt stack?) Did I miss something? Thanks! -- Andriy Gapon From owner-freebsd-current@freebsd.org Fri Oct 2 07:47:31 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7A987A0DA0B for ; Fri, 2 Oct 2015 07:47:31 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from outpost1.zedat.fu-berlin.de (outpost1.zedat.fu-berlin.de [130.133.4.66]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 31B531A2C; Fri, 2 Oct 2015 07:47:31 +0000 (UTC) (envelope-from ohartman@zedat.fu-berlin.de) Received: from inpost2.zedat.fu-berlin.de ([130.133.4.69]) by outpost.zedat.fu-berlin.de (Exim 4.85) with esmtp (envelope-from ) id <1Zhv3v-0012js-LB>; Fri, 02 Oct 2015 09:47:27 +0200 Received: from p578a69f9.dip0.t-ipconnect.de ([87.138.105.249] helo=freyja.zeit4.iv.bundesimmobilien.de) by inpost2.zedat.fu-berlin.de (Exim 4.85) with esmtpsa (envelope-from ) id <1Zhv3v-001HFp-DS>; Fri, 02 Oct 2015 09:47:27 +0200 Date: Fri, 2 Oct 2015 09:47:21 +0200 From: "O. Hartmann" To: Eric Joyner Cc: Sean Bruno , "Pieper, Jeffrey E" , Hans Petter Selasky , freebsd-current Subject: Re: CURRENT: net/igb broken Message-ID: <20151002094721.1f890e19@freyja.zeit4.iv.bundesimmobilien.de> In-Reply-To: References: <20150915125618.0f752596@freyja.zeit4.iv.bundesimmobilien.de> <55F7FCB5.5090809@selasky.org> <2A35EA60C3C77D438915767F458D65688077F87B@ORSMSX111.amr.corp.intel.com> <20150917133509.6c87f5b6@freyja.zeit4.iv.bundesimmobilien.de> <20150917133712.0ffd01ee@freyja.zeit4.iv.bundesimmobilien.de> <55FC40CB.7090504@freebsd.org> <55FDA830.7030307@freebsd.org> <20150921105848.386d6ae0@freyja.zeit4.iv.bundesimmobilien.de> <20150922082323.6f861448@freyja.zeit4.iv.bundesimmobilien.de> <5601B591.6000005@freebsd.org> Organization: FU Berlin X-Mailer: Claws Mail 3.12.0 (GTK+ 2.24.28; amd64-portbld-freebsd11.0) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Originating-IP: 87.138.105.249 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Oct 2015 07:47:31 -0000 On Thu, 01 Oct 2015 15:39:11 +0000 Eric Joyner wrote: > Oliver, > > did you try Sean's suggestion? > > - Eric > > On Tue, Sep 22, 2015 at 1:10 PM Sean Bruno wrote: > > > -----BEGIN PGP SIGNED MESSAGE----- > > Hash: SHA512 > > > > > > > > On 09/21/15 23:23, O. Hartmann wrote: > > > On Mon, 21 Sep 2015 21:13:18 +0000 Eric Joyner > > > wrote: > > > > > >> If you do a diff between r288057 and r287761, there are no > > >> differences between the sys/dev/e1000, sys/modules/em, and > > >> sys/modules/igb directories. Are you sure r287761 actually > > >> works? > > > > > > I'm quite sure r287761 works (and r287762 doesn't), double checked > > > this this morning again. I also checked r288093 and it is still not > > > working. > > > > > > The ensure that I'm not the culprit and stupid here: > > > > > > I use a NanoBSD environment and the only thing that gets exchanged, > > > is the underlying OS/OS revision. The configuration always stays > > > the same. The base system for all of my tests is built from a clean > > > source - (deleted obj/ dir, clean, fresh build into obj/ for every > > > test I ran). > > > > > > I realised a funny thing. Playing around with enabling/disabling > > > TSO (I have been told that could be the culprit in an earlier Email > > > from this list) with the commend sequence: > > > > > > ifconfig igb1 down ifconfig igb1 -tso ifconfig igb1 up ifconfig > > > igb1 down ifconfig igb1 tso ifconfig igb1 up . . . > > > > > > while a ping is pinging in the background a remote host connected > > > to that specific interface, the ping does work for a while and dies > > > then after a round trip of roughly 10 - 20. I can reproduce this. > > > > > > is that observation of any help? > > > > > > Regards, > > > > > > oh > > > > > >> > > >> On Mon, Sep 21, 2015 at 1:58 AM O. Hartmann > > >> wrote: > > >> > > >>> On Sat, 19 Sep 2015 11:23:44 -0700 Sean Bruno > > >>> wrote: > > >>> > > > > > > > > > On 09/18/15 10:20, Eric Joyner wrote: > > >>>>>> He has an i210 -- he would want to revert > > >>>>>> e1000_i210.[ch], too. > > >>>>>> > > >>>>>> Sorry for the thrash Sean -- it sounds like it would be a > > >>>>>> good idea for you should revert this patch, and Jeff and > > >>>>>> I can go look at trying these shared code updates and igb > > >>>>>> changes internally again. We at Intel really could've > > >>>>>> done a better job of making sure these changes worked > > >>>>>> across a wider variety of devices. > > >>>>>> > > >>>>>> - Eric > > > > > > I've reverted the changes to head. I'll reopen the reviews and we > > > can proceed from there. > > > > > > sean > > > > > > > > >>>>>> > > >>>>>> On Fri, Sep 18, 2015 at 9:50 AM Sean Bruno > > >>>>>> > wrote: > > >>>>>> > > >>>>>> > > >>>>>>> > > >>>>>>> r287762 broke the system > > >>>>>> > > >>>>>> > > >>>>>> Before I revert this changeset *again* can you test > > >>>>>> revert r287762 from if_igb.c, e1000_82575.c and > > >>>>>> e1000_82575.h *only* > > >>>>>> > > >>>>>> That narrows down the change quite a bit. > > >>>>>> > > >>>>>> sean _______________________________________________ > > >>>>>> freebsd-current@freebsd.org > > >>>>>> mailing list > > >>>>>> https://lists.freebsd.org/mailman/listinfo/freebsd-current > > >>>>>> To unsubscribe, send any mail to > > >>>>>> "freebsd-current-unsubscribe@freebsd.org > > >>>>>> " > > >>>>>> > > >>> > > >>> I'm now on r288057 on that specific machine, supposedly > > >>> reverted changes that seemingly has been identified as the > > >>> culprit. Still NO change in behaviour! > > >>> > > >>> r287761 works with the same configuration on igb (i210), any > > >>> further does not. Not ping/connect from the outside, no > > >>> ping/connect from the inside. Tried different protocols (SAMBA, > > >>> ssh, LDAP, DNS). Affected is/are only boxes with the igb driver > > >>> and i210 chipset (we do not have other chips covered by igb). > > >>> > > >>> Regards, Oliver > > >>> > > >> _______________________________________________ > > >> freebsd-current@freebsd.org mailing list > > >> https://lists.freebsd.org/mailman/listinfo/freebsd-current To > > >> unsubscribe, send any mail to > > >> "freebsd-current-unsubscribe@freebsd.org" > > > > > > > > > > > > For my entertainment (and HPS's), can you run HEAD and revert r287775? > > > > sean > > -----BEGIN PGP SIGNATURE----- > > Version: GnuPG v2 > > > > iQF8BAEBCgBmBQJWAbWOXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w > > ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXRCQUFENDYzMkU3MTIxREU4RDIwOTk3REQx > > MjAxRUZDQTFFNzI3RTY0AAoJEBIB78oecn5kPTAH/jmm1tudLRYVtC+xb9NXHQgr > > dl8/fZC8/xL3m0EVM8pWdKlRbF1tHUDSB/2ftYUBEe6SIkab2IZx2Z/0VgdflrbB > > 05HQUuq1yM3dYBiEAjyM0oK6lfeWu2Jg8nOaA5YWi1GO2OfkuDfXRUkK3sm7xa0C > > PE+ZMlfofQCV0RyDu2ew17yZKYRbCXdc+GYg6CGNRRVJHeITZPyAAh8X1d7pC8G3 > > 8vJLKC8JOmg0i5yToYSkKvXdrReHUpzF+hZKgxsl5Lb4BhcHEukkSWQVsJ9IuVGU > > 615sN6eVub2+OBbxJyV+CcjUVwdLJba/YBUXhWdKslDrN2z9l/sAFHCxDJlmAvc= > > =zdDL > > -----END PGP SIGNATURE----- > > _______________________________________________ > > freebsd-current@freebsd.org mailing list > > https://lists.freebsd.org/mailman/listinfo/freebsd-current > > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" > > > _______________________________________________ > freebsd-current@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" I did as suggested: checking out the most recent HEAD of CURRENT this morning, which is/was for me r288474. I applied then "svn merge -c -287775 .", which reverted(?) only r287775, which is something with tcp_output.c or so. I did not remember. I recompiled a fresh world (cleaning up /usr/obj completely by deleting the folder) and try running the target system with the created image. Result: the same as >r287761, it doesn't work. I reverted back to r287761, which works for me on the specific target hardware (Fujitsu Primergy RX 1330 M1). From owner-freebsd-current@freebsd.org Fri Oct 2 09:04:50 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ADBE1A0EEEC for ; Fri, 2 Oct 2015 09:04:50 +0000 (UTC) (envelope-from freebsd-listen@fabiankeil.de) Received: from smtprelay02.ispgateway.de (smtprelay02.ispgateway.de [80.67.18.44]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6E0DC1849 for ; Fri, 2 Oct 2015 09:04:50 +0000 (UTC) (envelope-from freebsd-listen@fabiankeil.de) Received: from [78.35.141.154] (helo=fabiankeil.de) by smtprelay02.ispgateway.de with esmtpsa (TLSv1.2:AES128-GCM-SHA256:128) (Exim 4.84) (envelope-from ) id 1ZhwA9-0005yR-MS for freebsd-current@FreeBSD.org; Fri, 02 Oct 2015 10:57:57 +0200 Date: Fri, 2 Oct 2015 10:33:30 +0200 From: Fabian Keil To: freebsd-current@FreeBSD.org Subject: Re: panic: getblk: size(131072) > MAXBCACHEBUF(65536) Message-ID: <3125b5a8.22b98373@fabiankeil.de> In-Reply-To: <20151001163758.GA2188@raichu> References: <5afc3b28.65902f68@fabiankeil.de> <20151001163758.GA2188@raichu> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; boundary="Sig_/Yqx=/NDJQFLeI4up0IGMbv4"; protocol="application/pgp-signature" X-Df-Sender: Nzc1MDY3 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Oct 2015 09:04:50 -0000 --Sig_/Yqx=/NDJQFLeI4up0IGMbv4 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Mark Johnston wrote: > On Thu, Oct 01, 2015 at 03:23:56PM +0200, Fabian Keil wrote: > > Shortly after upgrading to a kernel based on r288437 I got the following > > panic: > >=20 > > Unread portion of the kernel message buffer: > > [5112] panic: getblk: size(131072) > MAXBCACHEBUF(65536) > > [...] > Thanks for the report. This should be fixed as of r288451. (Sorry for > misspelling your first name in the commit message!) No problem. Thanks for the quick fix. Fabian --Sig_/Yqx=/NDJQFLeI4up0IGMbv4 Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iEYEARECAAYFAlYOQVgACgkQBYqIVf93VJ2NGACgxCpjUxt9ouCdS/tVqeUIhSNC r9MAn3gc/PSpPNn1JXo0+0Mpi2Z7QJYg =Yvvs -----END PGP SIGNATURE----- --Sig_/Yqx=/NDJQFLeI4up0IGMbv4-- From owner-freebsd-current@freebsd.org Fri Oct 2 10:41:07 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A71D5A0E24A for ; Fri, 2 Oct 2015 10:41:07 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 8CBB11D11; Fri, 2 Oct 2015 10:41:07 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id C71F8C2F; Fri, 2 Oct 2015 10:41:07 +0000 (UTC) Date: Fri, 2 Oct 2015 10:40:59 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: phk@FreeBSD.org, araujo@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <982543886.121.1443782467293.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_amd64_gcc4.9 - Build #588 - Failure MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_amd64_gcc4.9 X-Jenkins-Result: FAILURE Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Oct 2015 10:41:07 -0000 FreeBSD_HEAD_amd64_gcc4.9 - Build #588 - Failure: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.= 9/588/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.9/= 588/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.9/5= 88/console Change summaries: 288484 by phk: Fail the sbuf if vsnprintf(3) fails. 288482 by araujo: The rpc.yppasswdd has an option to not allow shell changes (-s), but is always passed a shell by the remote yppasswd. If an NIS client overrides th= e shell provided by the ypserv, then yppasswd (pam_unix, actually, afaict) will pass this new shell to the yppasswdd. If this shell has been set on th= e client to a shell which is invalid on the server, a user will never be able to change their password on the client. PR:=09=0967142 Submitted by:=09russell@rucus.ru.ac.za Approved by:=09bapt (mentor) Sponsored by:=09EuroBSDCon Sweden. The end of the build log: [...truncated 177123 lines...] ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:818:1: warning: 'static char16_t* std::__1::char_= traits::assign(std::__1::char_traits::char_type*, size_= t, std::__1::char_traits::char_type)': visibility attribute ignor= ed because it [-Wattributes] char_traits::assign(char_type* __s, size_t __n, char_type __a) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:734:29: warning: conflicts with previous declarat= ion here [-Wattributes] static char_type* assign(char_type* __s, size_t __n, char_type _= _a); ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:863:1: warning: 'static int std::__1::char_traits= ::compare(const char_type*, const char_type*, size_t)': visibilit= y attribute ignored because it [-Wattributes] char_traits::compare(const char_type* __s1, const char_type* __s= 2, size_t __n) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:842:29: warning: conflicts with previous declarat= ion here [-Wattributes] static int compare(const char_type* __s1, const char_type= * __s2, size_t __n); ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:877:1: warning: 'static size_t std::__1::char_tra= its::length(const char_type*)': visibility attribute ignored beca= use it [-Wattributes] char_traits::length(const char_type* __s) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:843:29: warning: conflicts with previous declarat= ion here [-Wattributes] static size_t length(const char_type* __s); ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:887:1: warning: 'static const char32_t* std::__1:= :char_traits::find(const char_type*, size_t, const char_type&)': = visibility attribute ignored because it [-Wattributes] char_traits::find(const char_type* __s, size_t __n, const char_t= ype& __a) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:844:29: warning: conflicts with previous declarat= ion here [-Wattributes] static const char_type* find(const char_type* __s, size_t __n, const c= har_type& __a); ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:900:1: warning: 'static char32_t* std::__1::char_= traits::move(std::__1::char_traits::char_type*, const c= har_type*, size_t)': visibility attribute ignored because it [-Wattributes] char_traits::move(char_type* __s1, const char_type* __s2, size_t= __n) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:845:29: warning: conflicts with previous declarat= ion here [-Wattributes] static char_type* move(char_type* __s1, const char_type* __s2, s= ize_t __n); ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:920:1: warning: 'static char32_t* std::__1::char_= traits::copy(std::__1::char_traits::char_type*, const c= har_type*, size_t)': visibility attribute ignored because it [-Wattributes] char_traits::copy(char_type* __s1, const char_type* __s2, size_t= __n) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:846:29: warning: conflicts with previous declarat= ion here [-Wattributes] static char_type* copy(char_type* __s1, const char_type* __s2, s= ize_t __n); ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:931:1: warning: 'static char32_t* std::__1::char_= traits::assign(std::__1::char_traits::char_type*, size_= t, std::__1::char_traits::char_type)': visibility attribute ignor= ed because it [-Wattributes] char_traits::assign(char_type* __s, size_t __n, char_type __a) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:847:29: warning: conflicts with previous declarat= ion here [-Wattributes] static char_type* assign(char_type* __s, size_t __n, char_type _= _a); ^ --- usr.sbin.all__D --- --- bridge_if.So --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -fpic -DPIC -O2 -pipe -DS= NMPTREE_TYPES -I. -std=3Dgnu99 -fstack-protector -Wsystem-headers -Wall -Wn= o-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototy= pes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wsh= adow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-ex= terns -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /buil= ds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_if.= c -o bridge_if.So --- lib.all__D --- In file included from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/__mutex_base:16:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/mutex:176, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/__locale:18, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/ios:216, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/iostream:38, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.hpp:33, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.cpp:26: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/system_error:345:1: warning: type attributes ignored aft= er type is already defined [-Wattributes] }; ^ In file included from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/mutex:176:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/__locale:18, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/ios:216, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/iostream:38, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.hpp:33, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.cpp:26: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/__mutex_base:264:1: warning: type attributes ignored aft= er type is already defined [-Wattributes] }; ^ In file included from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/iostream:38:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.hpp:33, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.cpp:26: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/ios:387:1: warning: type attributes ignored after type i= s already defined [-Wattributes] }; ^ In file included from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/cstdlib:85:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.hpp:32, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.cpp:26: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/locale:2845:1: warning: type attributes ignored after ty= pe is already defined [-Wattributes] _LIBCPP_EXTERN_TEMPLATE2(class _LIBCPP_TYPE_VIS moneypunct_byname) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/locale:2846:1: warning: type attributes ignored after ty= pe is already defined [-Wattributes] _LIBCPP_EXTERN_TEMPLATE2(class _LIBCPP_TYPE_VIS moneypunct_byname) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/locale:2847:1: warning: type attributes ignored after ty= pe is already defined [-Wattributes] _LIBCPP_EXTERN_TEMPLATE2(class _LIBCPP_TYPE_VIS moneypunct_byname) ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/locale:2848:1: warning: type attributes ignored after ty= pe is already defined [-Wattributes] _LIBCPP_EXTERN_TEMPLATE2(class _LIBCPP_TYPE_VIS moneypunct_byname) ^ In file included from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/ostream:142:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/istream:163, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/iostream:40, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.hpp:33, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.cpp:26: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/bitset:636:54: warning: attributes ignored on template i= nstantiation [-Wattributes] template struct _LIBCPP_TYPE_VIS_ONLY hash >; ^ --- env_test --- --- env_test --- /usr/local/bin/x86_64-portbld-freebsd10.1-g++ -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -I/builds/FreeBSD_HEAD_amd64= _gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1 -std=3D= gnu++11 -L/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_g= cc4.9/tmp/../lib/libc++ --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/b= uilds/FreeBSD_HEAD_amd64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -O2 -p= ipe -DHAVE_CONFIG_H -DATF_C_TESTS_BASE=3D'"/usr/tests/lib/atf/libatf-c"' -D= ATF_INCLUDEDIR=3D'"/usr/include"' -I/builds/FreeBSD_HEAD_amd64_gcc4.9/contr= ib/atf -fstack-protector -Wsystem-headers -Wall -Wno-format-y2k -W -Wno-unu= sed-parameter -Wpointer-arith -Wno-uninitialized -o env_test env_test.o = test_helpers.o -lprivateatf-c++ -lprivateatf-c -lprivateatf-c test_helpers.o: file not recognized: File truncated collect2: error: ld returned 1 exit status *** [env_test] Error code 1 make[8]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++/te= sts/detail 1 error make[8]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++/te= sts/detail --- usr.sbin.all__D --- --- bridge_port.So --- --- lib.all__D --- *** [env_test] Error code 2 make[7]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++/te= sts/detail --- usr.sbin.all__D --- /usr/local/bin/x86_64-portbld-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD= _amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/include -L/build= s/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/usr/li= b --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd= 64_gcc4.9/tmp -B/usr/local/x86_64-freebsd/bin/ -fpic -DPIC -O2 -pipe -DS= NMPTREE_TYPES -I. -std=3Dgnu99 -fstack-protector -Wsystem-headers -Wall -Wn= o-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototy= pes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wsh= adow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-ex= terns -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /buil= ds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_por= t.c -o bridge_port.So --- lib.all__D --- --- application_test --- In file included from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/__locale:15:0, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/ios:216, from /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_= HEAD_amd64_gcc4.9/tmp/usr/include/c++/v1/iostream:38, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.hpp:33, from /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++= /detail/test_helpers.cpp:26: /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string: In instantiation of 'std::__1::basic_string<_Cha= rT, _Traits, _Allocator>::size_type std::__1::basic_string<_CharT, _Traits,= _Allocator>::capacity() const [with _CharT =3D char; _Traits =3D std::__1:= :char_traits; _Allocator =3D std::__1::allocator; std::__1::bas= ic_string<_CharT, _Traits, _Allocator>::size_type =3D long unsigned int]': /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:468:9: required from 'void std::__1::basic_str= ingbuf<_CharT, _Traits, _Allocator>::str(const string_type&) [with _CharT = =3D char; _Traits =3D std::__1::char_traits; _Allocator =3D std::__1:= :allocator; std::__1::basic_stringbuf<_CharT, _Traits, _Allocator>::s= tring_type =3D std::__1::basic_string, st= d::__1::allocator >]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:244:22: required from 'std::__1::basic_stringb= uf<_CharT, _Traits, _Allocator>::basic_stringbuf(std::__1::ios_base::openmo= de) [with _CharT =3D char; _Traits =3D std::__1::char_traits; _Alloca= tor =3D std::__1::allocator; std::__1::ios_base::openmode =3D unsigne= d int]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:779:34: required from 'std::__1::basic_ostring= stream<_CharT, _Traits, _Allocator>::basic_ostringstream(std::__1::ios_base= ::openmode) [with _CharT =3D char; _Traits =3D std::__1::char_traits;= _Allocator =3D std::__1::allocator; std::__1::ios_base::openmode =3D= unsigned int]' /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/detail/test_helpers.c= pp:76:5: required from here /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:1435:30: warning: enumeral and non-enumeral type = in conditional expression {return (__is_long() ? __get_long_cap() : __min_cap) - 1;} ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string: In instantiation of 'static std::__1::basic_stri= ng<_CharT, _Traits, _Allocator>::size_type std::__1::basic_string<_CharT, _= Traits, _Allocator>::__recommend(std::__1::basic_string<_CharT, _Traits, _A= llocator>::size_type) [with _CharT =3D char; _Traits =3D std::__1::char_tra= its; _Allocator =3D std::__1::allocator; std::__1::basic_string= <_CharT, _Traits, _Allocator>::size_type =3D long unsigned int]': /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:2212:43: required from 'typename std::__1::enab= le_if::value, void>::type s= td::__1::basic_string<_CharT, _Traits, _Allocator>::__init(_ForwardIterator= , _ForwardIterator) [with _ForwardIterator =3D char*; _CharT =3D char; _Tra= its =3D std::__1::char_traits; _Allocator =3D std::__1::allocator; typename std::__1::enable_if::value, void>::type =3D void]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:2241:27: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator>::basic_string(_InputIterator, _InputIterator, = const allocator_type&) [with _InputIterator =3D char*; _CharT =3D char; _Tr= aits =3D std::__1::char_traits; _Allocator =3D std::__1::allocator; std::__1::basic_string<_CharT, _Traits, _Allocator>::allocator_type = =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:444:72: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator> std::__1::basic_stringbuf<_CharT, _Traits, _Al= locator>::str() const [with _CharT =3D char; _Traits =3D std::__1::char_tra= its; _Allocator =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:845:22: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator> std::__1::basic_ostringstream<_CharT, _Traits,= _Allocator>::str() const [with _CharT =3D char; _Traits =3D std::__1::char= _traits; _Allocator =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/detail/test_helpers.c= pp:76:5: required from here /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:1775:34: warning: enumeral and non-enumeral type = in conditional expression {return (__s < __min_cap ? __min_cap : ^ /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string: In instantiation of 'static std::__1::basic_stri= ng<_CharT, _Traits, _Allocator>::size_type std::__1::basic_string<_CharT, _= Traits, _Allocator>::__align_it(std::__1::basic_string<_CharT, _Traits, _Al= locator>::size_type) [with typename std::__1::basic_string<_CharT, _Traits,= _Allocator>::__alloc_traits::size_type __a =3D 16ul; _CharT =3D char; _Tra= its =3D std::__1::char_traits; _Allocator =3D std::__1::allocator; std::__1::basic_string<_CharT, _Traits, _Allocator>::size_type =3D long= unsigned int]': /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:1776:28: required from 'static std::__1::basic_= string<_CharT, _Traits, _Allocator>::size_type std::__1::basic_string<_Char= T, _Traits, _Allocator>::__recommend(std::__1::basic_string<_CharT, _Traits= , _Allocator>::size_type) [with _CharT =3D char; _Traits =3D std::__1::char= _traits; _Allocator =3D std::__1::allocator; std::__1::basic_st= ring<_CharT, _Traits, _Allocator>::size_type =3D long unsigned int]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:2212:43: required from 'typename std::__1::enab= le_if::value, void>::type s= td::__1::basic_string<_CharT, _Traits, _Allocator>::__init(_ForwardIterator= , _ForwardIterator) [with _ForwardIterator =3D char*; _CharT =3D char; _Tra= its =3D std::__1::char_traits; _Allocator =3D std::__1::allocator; typename std::__1::enable_if::value, void>::type =3D void]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:2241:27: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator>::basic_string(_InputIterator, _InputIterator, = const allocator_type&) [with _InputIterator =3D char*; _CharT =3D char; _Tr= aits =3D std::__1::char_traits; _Allocator =3D std::__1::allocator; std::__1::basic_string<_CharT, _Traits, _Allocator>::allocator_type = =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:444:72: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator> std::__1::basic_stringbuf<_CharT, _Traits, _Al= locator>::str() const [with _CharT =3D char; _Traits =3D std::__1::char_tra= its; _Allocator =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/sstream:845:22: required from 'std::__1::basic_string<= _CharT, _Traits, _Allocator> std::__1::basic_ostringstream<_CharT, _Traits,= _Allocator>::str() const [with _CharT =3D char; _Traits =3D std::__1::char= _traits; _Allocator =3D std::__1::allocator]' /builds/FreeBSD_HEAD_amd64_gcc4.9/contrib/atf/atf-c++/detail/test_helpers.c= pp:76:5: required from here /builds/FreeBSD_HEAD_amd64_gcc4.9/obj/builds/FreeBSD_HEAD_amd64_gcc4.9/tmp/= usr/include/c++/v1/string:1771:35: warning: suggest parentheses around '+' = in operand of '&' [-Wparentheses] {return __s + (__a-1) & ~(__a-1);} ^ --- usr.sbin.all__D --- A failure has been detected in another branch of the parallel make make[6]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin/bsnmpd/modul= es/snmp_bridge *** [_sub.all] Error code 2 make[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin/bsnmpd/modul= es 1 error make[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin/bsnmpd/modul= es *** [_sub.all] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin/bsnmpd 1 error make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin/bsnmpd *** [all_subdir_bsnmpd] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin 1 error make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.sbin *** [usr.sbin.all__D] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 --- lib.all__D --- A failure has been detected in another branch of the parallel make make[8]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++/te= sts/detail *** [application_test] Error code 2 make[7]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++/te= sts/detail 2 errors make[7]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++/te= sts/detail *** [_sub.all] Error code 2 make[6]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++/te= sts 1 error make[6]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++/te= sts *** [_sub.all] Error code 2 make[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++ 1 error make[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf/libatf-c++ *** [_sub.all] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf 1 error make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib/atf *** [all_subdir_atf] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib 1 error make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/lib *** [lib.all__D] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 --- usr.bin.all__D --- A failure has been detected in another branch of the parallel make make[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/clang/tblgen *** [all_subdir_tblgen] Error code 2 make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/clang 1 error make[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin/clang *** [all_subdir_clang] Error code 2 make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin 1 error make[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9/usr.bin *** [usr.bin.all__D] Error code 2 make[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 3 errors make[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 *** [everything] Error code 2 make[1]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 1 error make[1]: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 *** [buildworld] Error code 2 make: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 1 error make: stopped in /builds/FreeBSD_HEAD_amd64_gcc4.9 Build step 'Execute shell' marked build as failure [WARNINGS] Skipping publisher since build result is FAILURE IRC notifier plugin: Sending notification to: #freebsd-commits Email was triggered for: Failure - Any Sending email for trigger: Failure - Any From owner-freebsd-current@freebsd.org Fri Oct 2 14:15:01 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C11B0A0E827 for ; Fri, 2 Oct 2015 14:15:01 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id B211812BE; Fri, 2 Oct 2015 14:15:01 +0000 (UTC) (envelope-from jenkins-admin@FreeBSD.org) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 72DA2CA4; Fri, 2 Oct 2015 14:14:59 +0000 (UTC) Date: Fri, 2 Oct 2015 14:14:21 +0000 (GMT) From: jenkins-admin@FreeBSD.org To: ed@FreeBSD.org, mav@FreeBSD.org, cperciva@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org Message-ID: <1925297915.123.1443795297420.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <982543886.121.1443782467293.JavaMail.jenkins@jenkins-9.freebsd.org> References: <982543886.121.1443782467293.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: FreeBSD_HEAD_amd64_gcc4.9 - Build #589 - Fixed MIME-Version: 1.0 X-Jenkins-Job: FreeBSD_HEAD_amd64_gcc4.9 X-Jenkins-Result: SUCCESS Precedence: bulk Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Oct 2015 14:15:01 -0000 FreeBSD_HEAD_amd64_gcc4.9 - Build #589 - Fixed: Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.9/589/ Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.9/589/changes Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc4.9/589/console Change summaries: 288488 by mav: Document CD block size of 2048. 288487 by ed: Make truss print CloudABI system call names. This change adds the bits that are necessary to fetch system call arguments and return values from trapframes for CloudABI. This allows us to properly print system calls with the right name. We need to make sure that we properly convert error numbers when system calls fail. We still need to improve truss to pretty-print some of the system calls that have flags. 288486 by mav: Set default block size for CD to expected 2048 bytes. 288485 by cperciva: Final step of eliminating the "games" distribution: Merge src/games (or what's left of it, at least) into src/usr.bin. This change will not be MFCed. Discussed at: EuroBSDCon 2014 Committed from: EuroBSDCon 2015 From owner-freebsd-current@freebsd.org Fri Oct 2 14:39:08 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 85EA0A0DB2B for ; Fri, 2 Oct 2015 14:39:08 +0000 (UTC) (envelope-from nparhar@gmail.com) Received: from mail-pa0-x22a.google.com (mail-pa0-x22a.google.com [IPv6:2607:f8b0:400e:c03::22a]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5797B1842; Fri, 2 Oct 2015 14:39:08 +0000 (UTC) (envelope-from nparhar@gmail.com) Received: by pacex6 with SMTP id ex6so108460480pac.0; Fri, 02 Oct 2015 07:39:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:mail-followup-to :references:mime-version:content-type:content-disposition :in-reply-to:user-agent; bh=HDhEPk3nDzq2EaFFEJTCiEB517gKxsKLuzxNv4qmXjI=; b=QBRUhmJzw7f/gvUfJj7isDGTmjACg16sTVc1UdXsSaVQJjBp2GLXqXILeMvMax6Pzk p8zp86aYhkSVw4VJyqbvJurJ4t/OOPizRVLxgwLRGgYlTyWUMQXo8gn5Np4x9R1IsqLQ Wg/WZvK5doZQeAK+ApztWjWuBvYG+Y4LX/m0/3aI8jd578MIVc8RkVdFa1avgu37QbfH 2yEqYDa/iSRpqAOsXjMWCjHbHTdqBbmR/2SXbbYxlTWZT/UfXJeUP+sJe6IGtDwp+AXx DwwSBenlNxS2U0sbKEokl8oeQqhNQ+/GcwiGGlEECSq53ON35T6/AJIvTHpKSKbwNf+2 Rx5w== X-Received: by 10.66.139.231 with SMTP id rb7mr20299712pab.5.1443796747566; Fri, 02 Oct 2015 07:39:07 -0700 (PDT) Received: from ox (c-24-6-44-228.hsd1.ca.comcast.net. [24.6.44.228]) by smtp.gmail.com with ESMTPSA id ne10sm9749401pbc.96.2015.10.02.07.39.05 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 02 Oct 2015 07:39:06 -0700 (PDT) Sender: Navdeep Parhar Date: Fri, 2 Oct 2015 07:39:01 -0700 From: Navdeep Parhar To: Andriy Gapon Cc: John Baldwin , freebsd-current@FreeBSD.org Subject: Re: kgdb ported to devel/gdb Message-ID: <20151002143901.GA16147@ox> Mail-Followup-To: Andriy Gapon , John Baldwin , freebsd-current@FreeBSD.org References: <2662739.EWKL7pkiRb@ralph.baldwin.cx> <560E21E1.6010002@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <560E21E1.6010002@FreeBSD.org> User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Oct 2015 14:39:08 -0000 On Fri, Oct 02, 2015 at 09:19:13AM +0300, Andriy Gapon wrote: > On 01/09/2015 00:32, John Baldwin wrote: > > Over the past several months I have ported kgdb to the version of gdb in ports. > > I have a pending patch to the gdb port to add fork following, but once that is > > done (and possibly after updating to 7.10) I will try to add my existing work > > as a KGDB option on the port. Until such time, you can try the newer kgdb by > > checking out my branch from git. > > > > Here's my cheat sheet on how to build the newer kgdb. Note that if you build > > a world with my cross-libkvm patches you should get a kgdb that can debug > > i386 cores on amd64 and vice versa. > > > > All of the targets that the native devel/gdb support have their backends > > ported (so x86, sparc64, powerpc and powerpc64). I have not yet ported > > arm or mips since those don't work for userland yet in upstream gdb. I > > have only compiled non-x86 backends. Testing of the new kgdb on sparc64 > > and powerpc would be appreciated. > > > > Steps: > > > > % git clone https://github.com/bsdjhb/gdb.git > > % git checkout freebsd-7.9.1-kgdb > > % fetch http://www.freebsd.org/~jhb/gdb/build > > % pkg install devel/gdb > > > > # Having gdb installed will mean you get the python bindings in the right > > # place. > > > > % pkg install gmake > > > > # I think this is the only build tool you need? > > > > % ./build > > % cd obj > > > > # Replace 'obj' with 'obj.' for all but amd64 > > > > % gmake > > > > # ... wait > > > > You will now have a binary at 'obj/gdb/kgdb'. I just run it from my obj > > tree currently when testing. Once it becomes part of the port it will get > > installed as /usr/local/bin/kgdb791 or some such. > > John, > > first of all, thank you very much for this! > > I followed your instructions substituting freebsd-7.10-kgdb for > freebsd-7.9.1-kgdb branch (devel/gdb is also at version 7.10) and the build > process worked just fine. > However, when I try to use the new kgdb it works, but I get some annoying > diagnostics: > > ... Andriy, The patch is also available in D3727. I downloaded the raw diff from there, applied it to $PORTS/devel/gdb, and built it as a port (with the KGDB support option enabled of course). Everything works. Can you try that? https://reviews.freebsd.org/D3727 Regards, Navdeep From owner-freebsd-current@freebsd.org Fri Oct 2 15:53:02 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A3853A0EDFC for ; Fri, 2 Oct 2015 15:53:02 +0000 (UTC) (envelope-from sbruno@freebsd.org) Received: from mail.ignoranthack.me (ignoranthack.me [199.102.79.106]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7E1D51A86 for ; Fri, 2 Oct 2015 15:53:01 +0000 (UTC) (envelope-from sbruno@freebsd.org) Received: from [192.168.100.102] (unknown [50.136.155.142]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: sbruno@ignoranthack.me) by mail.ignoranthack.me (Postfix) with ESMTPSA id 87C34193E80; Fri, 2 Oct 2015 15:52:59 +0000 (UTC) Subject: Re: CURRENT: net/igb broken To: "O. Hartmann" , Eric Joyner References: <20150915125618.0f752596@freyja.zeit4.iv.bundesimmobilien.de> <55F7FCB5.5090809@selasky.org> <2A35EA60C3C77D438915767F458D65688077F87B@ORSMSX111.amr.corp.intel.com> <20150917133509.6c87f5b6@freyja.zeit4.iv.bundesimmobilien.de> <20150917133712.0ffd01ee@freyja.zeit4.iv.bundesimmobilien.de> <55FC40CB.7090504@freebsd.org> <55FDA830.7030307@freebsd.org> <20150921105848.386d6ae0@freyja.zeit4.iv.bundesimmobilien.de> <20150922082323.6f861448@freyja.zeit4.iv.bundesimmobilien.de> <5601B591.6000005@freebsd.org> <20151002094721.1f890e19@freyja.zeit4.iv.bundesimmobilien.de> Cc: "Pieper, Jeffrey E" , Hans Petter Selasky , freebsd-current From: Sean Bruno X-Enigmail-Draft-Status: N1110 Message-ID: <560EA859.2030500@freebsd.org> Date: Fri, 2 Oct 2015 08:52:57 -0700 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 MIME-Version: 1.0 In-Reply-To: <20151002094721.1f890e19@freyja.zeit4.iv.bundesimmobilien.de> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Oct 2015 15:53:02 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 On 10/02/15 00:47, O. Hartmann wrote: > On Thu, 01 Oct 2015 15:39:11 +0000 Eric Joyner > wrote: > >> Oliver, >> >> did you try Sean's suggestion? >> >> - Eric >> >> On Tue, Sep 22, 2015 at 1:10 PM Sean Bruno >> wrote: >> > > > On 09/21/15 23:23, O. Hartmann wrote: >>>>> On Mon, 21 Sep 2015 21:13:18 +0000 Eric Joyner >>>>> wrote: >>>>> >>>>>> If you do a diff between r288057 and r287761, there are >>>>>> no differences between the sys/dev/e1000, sys/modules/em, >>>>>> and sys/modules/igb directories. Are you sure r287761 >>>>>> actually works? >>>>> >>>>> I'm quite sure r287761 works (and r287762 doesn't), double >>>>> checked this this morning again. I also checked r288093 and >>>>> it is still not working. >>>>> >>>>> The ensure that I'm not the culprit and stupid here: >>>>> >>>>> I use a NanoBSD environment and the only thing that gets >>>>> exchanged, is the underlying OS/OS revision. The >>>>> configuration always stays the same. The base system for >>>>> all of my tests is built from a clean source - (deleted >>>>> obj/ dir, clean, fresh build into obj/ for every test I >>>>> ran). >>>>> >>>>> I realised a funny thing. Playing around with >>>>> enabling/disabling TSO (I have been told that could be the >>>>> culprit in an earlier Email from this list) with the >>>>> commend sequence: >>>>> >>>>> ifconfig igb1 down ifconfig igb1 -tso ifconfig igb1 up >>>>> ifconfig igb1 down ifconfig igb1 tso ifconfig igb1 up . . >>>>> . >>>>> >>>>> while a ping is pinging in the background a remote host >>>>> connected to that specific interface, the ping does work >>>>> for a while and dies then after a round trip of roughly 10 >>>>> - 20. I can reproduce this. >>>>> >>>>> is that observation of any help? >>>>> >>>>> Regards, >>>>> >>>>> oh >>>>> >>>>>> >>>>>> On Mon, Sep 21, 2015 at 1:58 AM O. Hartmann >>>>>> wrote: >>>>>> >>>>>>> On Sat, 19 Sep 2015 11:23:44 -0700 Sean Bruno >>>>>>> wrote: >>>>>>> >>>>> >>>>> >>>>> On 09/18/15 10:20, Eric Joyner wrote: >>>>>>>>>> He has an i210 -- he would want to revert >>>>>>>>>> e1000_i210.[ch], too. >>>>>>>>>> >>>>>>>>>> Sorry for the thrash Sean -- it sounds like it >>>>>>>>>> would be a good idea for you should revert this >>>>>>>>>> patch, and Jeff and I can go look at trying these >>>>>>>>>> shared code updates and igb changes internally >>>>>>>>>> again. We at Intel really could've done a better >>>>>>>>>> job of making sure these changes worked across a >>>>>>>>>> wider variety of devices. >>>>>>>>>> >>>>>>>>>> - Eric >>>>> >>>>> I've reverted the changes to head. I'll reopen the reviews >>>>> and we can proceed from there. >>>>> >>>>> sean >>>>> >>>>> >>>>>>>>>> >>>>>>>>>> On Fri, Sep 18, 2015 at 9:50 AM Sean Bruno >>>>>>>>>> > >>>>>>>>>> wrote: >>>>>>>>>> >>>>>>>>>> >>>>>>>>>>> >>>>>>>>>>> r287762 broke the system >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> Before I revert this changeset *again* can you >>>>>>>>>> test revert r287762 from if_igb.c, e1000_82575.c >>>>>>>>>> and e1000_82575.h *only* >>>>>>>>>> >>>>>>>>>> That narrows down the change quite a bit. >>>>>>>>>> >>>>>>>>>> sean >>>>>>>>>> _______________________________________________ >>>>>>>>>> freebsd-current@freebsd.org >>>>>>>>>> mailing >>>>>>>>>> list >>>>>>>>>> https://lists.freebsd.org/mailman/listinfo/freebsd-current >>>>>>>>>> >>>>>>>>>> To unsubscribe, send any mail to >>>>>>>>>> "freebsd-current-unsubscribe@freebsd.org >>>>>>>>>> " >>>>>>>>>> >>>>>>> >>>>>>> >>>>>>>>>> I'm now on r288057 on that specific machine, supposedly >>>>>>> reverted changes that seemingly has been identified as >>>>>>> the culprit. Still NO change in behaviour! >>>>>>> >>>>>>> r287761 works with the same configuration on igb >>>>>>> (i210), any further does not. Not ping/connect from the >>>>>>> outside, no ping/connect from the inside. Tried >>>>>>> different protocols (SAMBA, ssh, LDAP, DNS). Affected >>>>>>> is/are only boxes with the igb driver and i210 chipset >>>>>>> (we do not have other chips covered by igb). >>>>>>> >>>>>>> Regards, Oliver >>>>>>> >>>>>> _______________________________________________ >>>>>> freebsd-current@freebsd.org mailing list >>>>>> https://lists.freebsd.org/mailman/listinfo/freebsd-current >>>>>> To unsubscribe, send any mail to >>>>>> "freebsd-current-unsubscribe@freebsd.org" >>>>> >>>>> > > > For my entertainment (and HPS's), can you run HEAD and revert > r287775? > > sean >>> _______________________________________________ >>> freebsd-current@freebsd.org mailing list >>> https://lists.freebsd.org/mailman/listinfo/freebsd-current To >>> unsubscribe, send any mail to >>> "freebsd-current-unsubscribe@freebsd.org" >>> >> _______________________________________________ >> freebsd-current@freebsd.org mailing list >> https://lists.freebsd.org/mailman/listinfo/freebsd-current To >> unsubscribe, send any mail to >> "freebsd-current-unsubscribe@freebsd.org" > > I did as suggested: > > checking out the most recent HEAD of CURRENT this morning, which > is/was for me r288474. I applied then "svn merge -c -287775 .", > which reverted(?) only r287775, which is something with > tcp_output.c or so. I did not remember. > Thanks. This is what I intended. > I recompiled a fresh world (cleaning up /usr/obj completely by > deleting the folder) and try running the target system with the > created image. > > Result: the same as >r287761, it doesn't work. I reverted back to > r287761, which works for me on the specific target hardware > (Fujitsu Primergy RX 1330 M1). > What's really confusing me is that I've reverted r287762 and you are still having problems. Can you set bootverbose (boot_verbose="YES" in loader.conf) with the current version of -CURRENT and post the dmesg somewhere for me to look at? sean -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQF8BAEBCgBmBQJWDqhWXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXRCQUFENDYzMkU3MTIxREU4RDIwOTk3REQx MjAxRUZDQTFFNzI3RTY0AAoJEBIB78oecn5kxMAH/i1I5T7RERbF7yF7OBI2eoBq fOytD8/KJSlNEe3bOOsF2ZFXtFzhwoJAjY3ykXPpc9yyWh4cqxAi6OuAkFR/fmtU BC/tbo6eiuRA9lYUa1TpjwI72ru8xG2uYVVlc5lm5Z9ndDmo+eRwM5TPnjJHNCGz x9VXqv4rTi0kWIcPA67lKxnMFSStsMPwr9yIj87pyGoIVGWYb3VSnMNDbNDrYeUI X3z+WaQjstyxZpIUNl8iqR3zloNyCO9unrT9m6ZrWWUDC3V2Fqud5mdia5yADk2F C+ct7nBkd/j9zQY0Qptpn5N3MInhnvZGR+LhTD4KYhgSm4GEfHJc7h6Hl4aeEvM= =NtTU -----END PGP SIGNATURE----- From owner-freebsd-current@freebsd.org Fri Oct 2 16:17:16 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1702AA0DEBF for ; Fri, 2 Oct 2015 16:17:16 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from bigwig.baldwin.cx (bigwig.baldwin.cx [IPv6:2001:470:1f11:75::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CBB521614; Fri, 2 Oct 2015 16:17:15 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from ralph.baldwin.cx (c-73-231-226-104.hsd1.ca.comcast.net [73.231.226.104]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id CBB2CB94F; Fri, 2 Oct 2015 12:17:14 -0400 (EDT) From: John Baldwin To: Andriy Gapon Cc: freebsd-current@freebsd.org Subject: Re: kgdb ported to devel/gdb Date: Fri, 02 Oct 2015 09:01:35 -0700 Message-ID: <2944822.yR2dCQZvb6@ralph.baldwin.cx> User-Agent: KMail/4.14.3 (FreeBSD/10.2-PRERELEASE; KDE/4.14.3; amd64; ; ) In-Reply-To: <560E21E1.6010002@FreeBSD.org> References: <2662739.EWKL7pkiRb@ralph.baldwin.cx> <560E21E1.6010002@FreeBSD.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Fri, 02 Oct 2015 12:17:14 -0400 (EDT) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Oct 2015 16:17:16 -0000 On Friday, October 02, 2015 09:19:13 AM Andriy Gapon wrote: > On 01/09/2015 00:32, John Baldwin wrote: > > Over the past several months I have ported kgdb to the version of gdb in ports. > > I have a pending patch to the gdb port to add fork following, but once that is > > done (and possibly after updating to 7.10) I will try to add my existing work > > as a KGDB option on the port. Until such time, you can try the newer kgdb by > > checking out my branch from git. > > > > Here's my cheat sheet on how to build the newer kgdb. Note that if you build > > a world with my cross-libkvm patches you should get a kgdb that can debug > > i386 cores on amd64 and vice versa. > > > > All of the targets that the native devel/gdb support have their backends > > ported (so x86, sparc64, powerpc and powerpc64). I have not yet ported > > arm or mips since those don't work for userland yet in upstream gdb. I > > have only compiled non-x86 backends. Testing of the new kgdb on sparc64 > > and powerpc would be appreciated. > > > > Steps: > > > > % git clone https://github.com/bsdjhb/gdb.git > > % git checkout freebsd-7.9.1-kgdb > > % fetch http://www.freebsd.org/~jhb/gdb/build > > % pkg install devel/gdb > > > > # Having gdb installed will mean you get the python bindings in the right > > # place. > > > > % pkg install gmake > > > > # I think this is the only build tool you need? > > > > % ./build > > % cd obj > > > > # Replace 'obj' with 'obj.' for all but amd64 > > > > % gmake > > > > # ... wait > > > > You will now have a binary at 'obj/gdb/kgdb'. I just run it from my obj > > tree currently when testing. Once it becomes part of the port it will get > > installed as /usr/local/bin/kgdb791 or some such. > > John, > > first of all, thank you very much for this! > > I followed your instructions substituting freebsd-7.10-kgdb for > freebsd-7.9.1-kgdb branch (devel/gdb is also at version 7.10) and the build > process worked just fine. > However, when I try to use the new kgdb it works, but I get some annoying > diagnostics: > > (kgdb) bt > Python Exception Installation error: > gdb.execute_unwinders function is missing: > Python Exception No module named gdb.frames: > #0 doadump (textdump=1) at /usr/src/sys/kern/kern_shutdown.c:291 > #1 0xffffffff8063453f in kern_reboot (howto=260) at > /usr/src/sys/kern/kern_shutdown.c:359 > Python Exception Installation error: > gdb.execute_unwinders function is missing: > Python Exception Installation error: > gdb.execute_unwinders function is missing: > #2 0xffffffff80634ba4 in vpanic (fmt=, ap=) at > /usr/src/sys/kern/kern_shutdown.c:635 > Python Exception Installation error: > gdb.execute_unwinders function is missing: > #3 0xffffffff806348a3 in panic (fmt=) at > /usr/src/sys/kern/kern_shutdown.c:568 > Python Exception Installation error: > gdb.execute_unwinders function is missing: > #4 0xffffffff8041bba7 in db_panic (addr=, > have_addr=, count=, modif=) at > /usr/src/sys/ddb/db_command.c:473 > Python Exception Installation error: > gdb.execute_unwinders function is missing: > #5 0xffffffff8041b67b in db_command (last_cmdp=, cmd_table=0x0, > dopager=) at /usr/src/sys/ddb/db_command.c:440 > #6 0xffffffff8041b524 in db_command_loop () at /usr/src/sys/ddb/db_command.c:493 > Python Exception Installation error: > gdb.execute_unwinders function is missing: > #7 0xffffffff8041de0b in db_trap (type=, code=) at > /usr/src/sys/ddb/db_main.c:251 > Python Exception Installation error: > gdb.execute_unwinders function is missing: > Python Exception Installation error: > gdb.execute_unwinders function is missing: > #8 0xffffffff80669de8 in kdb_trap (type=19, code=0, tf=0xffffffff80f976d0 > ) at /usr/src/sys/kern/subr_kdb.c:653 > Python Exception Installation error: > gdb.execute_unwinders function is missing: > #9 0xffffffff80820d26 in trap (frame=0xffffffff80f976d0 ) at > /usr/src/sys/amd64/amd64/trap.c:381 > #10 0xffffffff80809623 in nmi_calltrap () at > /usr/src/sys/amd64/amd64/exception.S:514 > Python Exception Installation error: > gdb.execute_unwinders function is missing: > #11 0xffffffff80619e1f in __mtx_assert (c=, what=, > file=, line=) at /usr/src/sys/kern/kern_mutex.c:842 > Backtrace stopped: previous frame inner to this frame (corrupt stack?) > > Did I miss something? > Thanks! I've noticed this as well. I've taken to building gdb without python support for my testing when building out of git for now. -- John Baldwin From owner-freebsd-current@freebsd.org Fri Oct 2 20:49:36 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D8458A0DFD8 for ; Fri, 2 Oct 2015 20:49:36 +0000 (UTC) (envelope-from wjw@digiware.nl) Received: from smtp.digiware.nl (smtp.digiware.nl [31.223.170.169]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9BBC318C2 for ; Fri, 2 Oct 2015 20:49:35 +0000 (UTC) (envelope-from wjw@digiware.nl) Received: from rack1.digiware.nl (unknown [127.0.0.1]) by smtp.digiware.nl (Postfix) with ESMTP id 06861153408 for ; Fri, 2 Oct 2015 22:49:27 +0200 (CEST) X-Virus-Scanned: amavisd-new at digiware.nl Received: from smtp.digiware.nl ([127.0.0.1]) by rack1.digiware.nl (rack1.digiware.nl [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id PW6uNzXEKmYz; Fri, 2 Oct 2015 22:49:07 +0200 (CEST) Received: from [IPv6:2001:4cb8:3:1:1c3d:df1e:6ba6:3d00] (unknown [IPv6:2001:4cb8:3:1:1c3d:df1e:6ba6:3d00]) by smtp.digiware.nl (Postfix) with ESMTPA id C191F153416 for ; Fri, 2 Oct 2015 22:49:07 +0200 (CEST) Subject: Wrong temperature with AMD and amdtemp.ko References: <560EDCA9.1070101@withagen.nl> To: freebsd current From: Willem Jan Withagen X-Forwarded-Message-Id: <560EDCA9.1070101@withagen.nl> Message-ID: <560EEDC3.90809@digiware.nl> Date: Fri, 2 Oct 2015 22:49:07 +0200 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 MIME-Version: 1.0 In-Reply-To: <560EDCA9.1070101@withagen.nl> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Oct 2015 20:49:36 -0000 Hi 10.2-STABLE FreeBSD 10.2-STABLE #0 r287102: Mon Aug 24 Processor: Opteron 6812, in Supermicro H8SGL dev.cpu.7.temperature: 11.1C dev.cpu.6.temperature: 11.1C dev.cpu.5.temperature: 11.1C dev.cpu.4.temperature: 11.1C dev.cpu.3.temperature: 11.1C dev.cpu.2.temperature: 11.1C dev.cpu.1.temperature: 11.1C dev.cpu.0.temperature: 11.1C But I'm pretty sure it is not 11.1C in the datacenter.... Or should I not use amdtemp.ko for this? --WjW From owner-freebsd-current@freebsd.org Fri Oct 2 21:06:40 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CAFE2A0ECA0 for ; Fri, 2 Oct 2015 21:06:40 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from mx2.freebsd.org (mx2.freebsd.org [8.8.178.116]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx2.freebsd.org", Issuer "Gandi Standard SSL CA 2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BB86417B3 for ; Fri, 2 Oct 2015 21:06:40 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from hammer.pct.niksun.com (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx2.freebsd.org (Postfix) with ESMTP id 62E736A580; Fri, 2 Oct 2015 21:06:40 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Subject: Re: Wrong temperature with AMD and amdtemp.ko To: Willem Jan Withagen , freebsd current References: <560EDCA9.1070101@withagen.nl> <560EEDC3.90809@digiware.nl> From: Jung-uk Kim Message-ID: <560EF1DF.3030409@FreeBSD.org> Date: Fri, 2 Oct 2015 17:06:39 -0400 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 MIME-Version: 1.0 In-Reply-To: <560EEDC3.90809@digiware.nl> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Oct 2015 21:06:40 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 On 10/02/2015 16:49, Willem Jan Withagen wrote: > > Hi > > 10.2-STABLE FreeBSD 10.2-STABLE #0 r287102: Mon Aug 24 > > Processor: Opteron 6812, in Supermicro H8SGL > > dev.cpu.7.temperature: 11.1C dev.cpu.6.temperature: 11.1C > dev.cpu.5.temperature: 11.1C dev.cpu.4.temperature: 11.1C > dev.cpu.3.temperature: 11.1C dev.cpu.2.temperature: 11.1C > dev.cpu.1.temperature: 11.1C dev.cpu.0.temperature: 11.1C > > But I'm pretty sure it is not 11.1C in the datacenter.... > > Or should I not use amdtemp.ko for this? amdtemp(4): For Family 10h and later processors, “(the reported temperature) is a non-physical temperature measured on an arbitrary scale and it does not represent an actual physical temperature like die or case temperature. Instead, it specifies the processor temperature relative to the point at which the system must supply the maximum cooling for the processor's specified maximum case temperature and maximum thermal power dissipation” according to BIOS and Kernel Developer's Guide (BKDG) for AMD Processors, http://developer.amd.com/documentation/guides/Pages/default.aspx. Jung-uk Kim -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBCAAGBQJWDvHaAAoJEHyflib82/FGrvwIAIHhM5bDxODIycXkuqoNWutC MUO7KsFcQuU+pGpV+Ip70ZehRbbdjbo/3sD4oqispWKwKuUgihPBiRn7v/Ad2fxN crvZ4MJXalQmr7+ipELWVtD8/TkzIX6npLMvjRr/adnkzDleGuEErG45z77w/6uj SdJVkvAp15Ji1qu2UWXCipg8mWpPvZjgNwDeeK3ryo5ZsE9YaeWOKJG9eP9sjTcx zoYC7LR/aVFFDZTlx6EY6SLHTZNs/jBsFkr6iF6xeIa9dsnwrI7ebNat8ApGQTX2 sydzIECiElqKiYNwk9XEn+e3aNgryoBhGx2Ax+fWxHHBB+kojhnFBHVQ1Qg2WaE= =ixlS -----END PGP SIGNATURE----- From owner-freebsd-current@freebsd.org Fri Oct 2 21:32:41 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 04BCEA0D326 for ; Fri, 2 Oct 2015 21:32:41 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from gw.catspoiler.org (unknown [IPv6:2602:304:b010:ef20::f2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "gw.catspoiler.org", Issuer "gw.catspoiler.org" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id DB4771BA3 for ; Fri, 2 Oct 2015 21:32:40 +0000 (UTC) (envelope-from truckman@FreeBSD.org) Received: from FreeBSD.org (mousie.catspoiler.org [192.168.101.2]) by gw.catspoiler.org (8.15.2/8.15.2) with ESMTP id t92LWS1A089197; Fri, 2 Oct 2015 14:32:32 -0700 (PDT) (envelope-from truckman@FreeBSD.org) Message-Id: <201510022132.t92LWS1A089197@gw.catspoiler.org> Date: Fri, 2 Oct 2015 14:32:28 -0700 (PDT) From: Don Lewis Subject: Re: Wrong temperature with AMD and amdtemp.ko To: wjw@digiware.nl cc: freebsd-current@freebsd.org In-Reply-To: <560EEDC3.90809@digiware.nl> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Oct 2015 21:32:41 -0000 On 2 Oct, Willem Jan Withagen wrote: > > Hi > > 10.2-STABLE FreeBSD 10.2-STABLE #0 r287102: Mon Aug 24 > > Processor: Opteron 6812, in Supermicro H8SGL > > dev.cpu.7.temperature: 11.1C > dev.cpu.6.temperature: 11.1C > dev.cpu.5.temperature: 11.1C > dev.cpu.4.temperature: 11.1C > dev.cpu.3.temperature: 11.1C > dev.cpu.2.temperature: 11.1C > dev.cpu.1.temperature: 11.1C > dev.cpu.0.temperature: 11.1C > > But I'm pretty sure it is not 11.1C in the datacenter.... > > Or should I not use amdtemp.ko for this? The definition of the value that can be read from the temperature register is pretty strange. For AMD Family 15h processors, the BIOS and Kernel Developer's Guide (BKDG) says this: Tctl is a processor temperature control value used for processor thermal management. Tctl is accessible through D18F3xA4[CurTmp]. Tctl is a temperature on its own scale aligned to the processors cooling requirements. Therefore Tctl does not represent a temperature which could be measured on the die or the case of the processor. Instead, it specifies the processor temperature relative to the maximum operating temperature, Tctl,max. Tctl,max is specified in the power and thermal data sheet. Tctl is defined as follows for all parts: A: For Tctl = Tctl_max to 255.875: the temperature of the part is [Tctl - Tctl_max] over the maximum operat- ing temperature. The processor may take corrective actions that affects performance, such as HTC, to support the return to Tctl range A. B: For Tctl = 0 to Tctl_max - 0.125: the temperature of the part is [Tctl_max - Tctl] under the maximum operating temperature. It would be nice to report Tctl_max so that we could at least know how far the temperature is from the limit, but I don't know if that is available. It might be the value in the HtcTmpLmt register, but the BKDG is unclear about that. If not, we would have to build a table of values from the datasheet. From owner-freebsd-current@freebsd.org Sat Oct 3 10:42:25 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 26409A0F4A6 for ; Sat, 3 Oct 2015 10:42:25 +0000 (UTC) (envelope-from wjw@digiware.nl) Received: from smtp.digiware.nl (unknown [IPv6:2001:4cb8:90:ffff::3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B181F1BEA; Sat, 3 Oct 2015 10:42:24 +0000 (UTC) (envelope-from wjw@digiware.nl) Received: from rack1.digiware.nl (unknown [127.0.0.1]) by smtp.digiware.nl (Postfix) with ESMTP id 23A96153408; Sat, 3 Oct 2015 12:42:20 +0200 (CEST) X-Virus-Scanned: amavisd-new at digiware.nl Received: from smtp.digiware.nl ([127.0.0.1]) by rack1.digiware.nl (rack1.digiware.nl [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id LA2mMX5mQz-8; Sat, 3 Oct 2015 12:42:08 +0200 (CEST) Received: from [IPv6:2001:4cb8:3:1:1c3d:df1e:6ba6:3d00] (unknown [IPv6:2001:4cb8:3:1:1c3d:df1e:6ba6:3d00]) by smtp.digiware.nl (Postfix) with ESMTPA id 655E5153401; Sat, 3 Oct 2015 12:42:08 +0200 (CEST) Subject: Re: Wrong temperature with AMD and amdtemp.ko To: Don Lewis References: <201510022132.t92LWS1A089197@gw.catspoiler.org> Cc: freebsd-current@freebsd.org From: Willem Jan Withagen Message-ID: <560FB101.3060309@digiware.nl> Date: Sat, 3 Oct 2015 12:42:09 +0200 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 MIME-Version: 1.0 In-Reply-To: <201510022132.t92LWS1A089197@gw.catspoiler.org> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Oct 2015 10:42:25 -0000 On 2-10-2015 23:32, Don Lewis wrote: > On 2 Oct, Willem Jan Withagen wrote: >> >> Hi >> >> 10.2-STABLE FreeBSD 10.2-STABLE #0 r287102: Mon Aug 24 >> >> Processor: Opteron 6812, in Supermicro H8SGL >> >> dev.cpu.7.temperature: 11.1C >> dev.cpu.6.temperature: 11.1C >> dev.cpu.5.temperature: 11.1C >> dev.cpu.4.temperature: 11.1C >> dev.cpu.3.temperature: 11.1C >> dev.cpu.2.temperature: 11.1C >> dev.cpu.1.temperature: 11.1C >> dev.cpu.0.temperature: 11.1C >> >> But I'm pretty sure it is not 11.1C in the datacenter.... >> >> Or should I not use amdtemp.ko for this? > > The definition of the value that can be read from the temperature > register is pretty strange. For AMD Family 15h processors, the BIOS and > Kernel Developer's Guide (BKDG) says this: > > Tctl is a processor temperature control value used for processor > thermal management. Tctl is accessible through D18F3xA4[CurTmp]. > Tctl is a temperature on its own scale aligned to the processors > cooling requirements. Therefore Tctl does not represent a temperature > which could be measured on the die or the case of the processor. > Instead, it specifies the processor temperature relative to the > maximum operating temperature, Tctl,max. Tctl,max is specified in the > power and thermal data sheet. Tctl is defined as follows for all > parts: > > A: For Tctl = Tctl_max to 255.875: the temperature of the part is > [Tctl - Tctl_max] over the maximum operat- ing temperature. The > processor may take corrective actions that affects performance, such > as HTC, to support the return to Tctl range A. > > B: For Tctl = 0 to Tctl_max - 0.125: the temperature of the part is > [Tctl_max - Tctl] under the maximum operating temperature. > > It would be nice to report Tctl_max so that we could at least know how > far the temperature is from the limit, but I don't know if that is > available. It might be the value in the HtcTmpLmt register, but the > BKDG is unclear about that. If not, we would have to build a table of > values from the datasheet. And On 2-10-2015 23:06, Jung-uk Kim wrote: > On 10/02/2015 16:49, Willem Jan Withagen wrote: > amdtemp(4): > > For Family 10h and later processors, “(the reported temperature) is a > non-physical temperature measured on an arbitrary scale and it does not > represent an actual physical temperature like die or case temperature. > Instead, it specifies the processor temperature relative to the point at > which the system must supply the maximum cooling for the processor's > specified maximum case temperature and maximum thermal power dissipation” > according to BIOS and Kernel Developer's Guide (BKDG) for AMD Processors, > http://developer.amd.com/documentation/guides/Pages/default.aspx. If one boots into the BIOS, the BIOS suggests that it knows how to do this conversion.... Perhaps one can question the ultimate correctness of the outcome, but the 51.3C value suggests some accuracy. Thusfar I have not been able to locate the "Power and Thermal Datasheet" for the family 15h.... Perhaps need to disassemble the bios, or check other tools or OSes on how they do this. --WjW