<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="http://www.seirios.org/seirios/dokuwiki/lib/exe/css.php?s=feed" type="text/css"?>
<rss version="2.0">
    <channel xmlns:g="http://base.google.com/ns/1.0">
        <title>ほほほのほ</title>
        <description></description>
        <link>http://www.seirios.org/seirios/dokuwiki/</link>
        <lastBuildDate>Sat, 23 May 2026 15:42:04 +0000</lastBuildDate>
        <generator>FeedCreator 1.8</generator>
        <image>
            <url>http://www.seirios.org/seirios/dokuwiki/lib/exe/fetch.php?media=wiki:dokuwiki.svg</url>
            <title>ほほほのほ</title>
            <link>http://www.seirios.org/seirios/dokuwiki/</link>
        </image>
        <item>
            <title>Fluentd</title>
            <link>http://www.seirios.org/seirios/dokuwiki/doku.php?id=serverapp:logging:fluentd</link>
            <description>
&lt;h1 class=&quot;sectionedit1&quot; id=&quot;fluentd&quot;&gt;Fluentd&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;
logの収集を行う手法には様々あるが、UNIX系OSでは、標準的にはsyslogを利用することが多いと思われる。
&lt;/p&gt;

&lt;p&gt;
しかし、syslogdでは、logの正規化などの処理をうまく行うには大幅な仕掛けが必要なため、今更ながら fluentd を利用することにした。
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Fluentd&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;fluentd&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:1,&amp;quot;range&amp;quot;:&amp;quot;1-343&amp;quot;} --&gt;
&lt;h2 class=&quot;sectionedit2&quot; id=&quot;what_is_fluentd&quot;&gt;What is fluentd&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;https://www.fluentd.org&quot; class=&quot;urlextern&quot; title=&quot;https://www.fluentd.org&quot;&gt;fluentd&lt;/a&gt; 本家&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;https://tagomoris.hatenablog.com/entry/2013/12/03/150656&quot; class=&quot;urlextern&quot; title=&quot;https://tagomoris.hatenablog.com/entry/2013/12/03/150656&quot;&gt;Fluentdとはどのようなソフトウェアなのか&lt;/a&gt;tagomorisさんの記事&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;https://abicky.net/2017/10/23/110103/&quot; class=&quot;urlextern&quot; title=&quot;https://abicky.net/2017/10/23/110103/&quot;&gt;fluentdの基礎知識&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;https://knowledge.sakura.ad.jp/1336/&quot; class=&quot;urlextern&quot; title=&quot;https://knowledge.sakura.ad.jp/1336/&quot;&gt;柔軟なログ収集を可能にする「fluentd」入門&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;
fluentdはrubyで動作するlog収集・管理ツールである。その特徴を以下に挙げる。
&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; さまざまなソースからのイベントをさまざまな媒体に出力できる&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; ログの種類はタグで管理される&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; ログの内容はJSON形式&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;
これにより、データのDBへの入出力や検索などを楽にすることができる。
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;What is fluentd&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;what_is_fluentd&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:2,&amp;quot;range&amp;quot;:&amp;quot;344-1115&amp;quot;} --&gt;
&lt;h2 class=&quot;sectionedit3&quot; id=&quot;本記事で想定する_fluentd_利用方法&quot;&gt;本記事で想定する fluentd 利用方法&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;
今回は、以下のような形式でfluentdを利用する。
&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; 各サービスサーバーからlogging system(以下log server)へは、syslogを利用してlogを転送する&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; log serverでは、fluentdがsyslog portを利用してlogを待ち受ける&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; fluentdは、受診したlogを&lt;code&gt;/zdata/fluentd&lt;/code&gt;にfileとして書き出す&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; 将来は、PostgreSQL等に書き出すことも考慮するが、今はfileに書き出す。&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Service Serverには、原則として追加となるdaemonやProgram/Scriptは設置しない&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; log serverは二重化するが、同期はしない。二重化は、syslog側で、複数台にlogを飛ばすことで行う&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;\u672c\u8a18\u4e8b\u3067\u60f3\u5b9a\u3059\u308b fluentd \u5229\u7528\u65b9\u6cd5&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;\u672c\u8a18\u4e8b\u3067\u60f3\u5b9a\u3059\u308b_fluentd_\u5229\u7528\u65b9\u6cd5&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:3,&amp;quot;range&amp;quot;:&amp;quot;1116-1854&amp;quot;} --&gt;
&lt;h2 class=&quot;sectionedit4&quot; id=&quot;install_fluentd_on_freebsd&quot;&gt;Install fluentd on FreeBSD&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;
fluentdを(例によって) FreeBSD で作成したVMにInstallしてみる。
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Install fluentd on FreeBSD&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;install_fluentd_on_freebsd&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:4,&amp;quot;range&amp;quot;:&amp;quot;1855-1974&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit5&quot; id=&quot;osの準備&quot;&gt;OSの準備&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;

&lt;p&gt;
VMの諸元は以下の通り
&lt;/p&gt;
&lt;div class=&quot;table sectionedit6&quot;&gt;&lt;table class=&quot;inline&quot;&gt;
	&lt;tr class=&quot;row0&quot;&gt;
		&lt;th class=&quot;col0&quot;&gt; CPU &lt;/th&gt;&lt;td class=&quot;col1&quot;&gt; vCPU x2 &lt;/td&gt;&lt;td class=&quot;col2&quot;&gt; &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row1&quot;&gt;
		&lt;th class=&quot;col0&quot;&gt; Memory &lt;/th&gt;&lt;td class=&quot;col1&quot;&gt; 2G &lt;/td&gt;&lt;td class=&quot;col2&quot;&gt; &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row2&quot;&gt;
		&lt;th class=&quot;col0&quot;&gt; Disk 0 &lt;/th&gt;&lt;td class=&quot;col1&quot;&gt; 20G &lt;/td&gt;&lt;td class=&quot;col2&quot;&gt; Boot disk &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row3&quot;&gt;
		&lt;th class=&quot;col0&quot;&gt; Disk 1 &lt;/th&gt;&lt;td class=&quot;col1&quot;&gt; 100G &lt;/td&gt;&lt;td class=&quot;col2&quot;&gt; Data Disk &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row4&quot;&gt;
		&lt;th class=&quot;col0&quot;&gt; NIC 0 &lt;/th&gt;&lt;td class=&quot;col1&quot;&gt; &lt;/td&gt;&lt;td class=&quot;col2&quot;&gt; Management I/F &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row5&quot;&gt;
		&lt;th class=&quot;col0&quot;&gt; NIC 1 &lt;/th&gt;&lt;td class=&quot;col1&quot;&gt; &lt;/td&gt;&lt;td class=&quot;col2&quot;&gt; Logging I/F &lt;/td&gt;
	&lt;/tr&gt;
	&lt;tr class=&quot;row6&quot;&gt;
		&lt;th class=&quot;col0&quot;&gt; &lt;abbr title=&quot;Operating System&quot;&gt;OS&lt;/abbr&gt; &lt;/th&gt;&lt;td class=&quot;col1&quot;&gt; FreeBSD &lt;/td&gt;&lt;td class=&quot;col2&quot;&gt; 11.2-p4 (2018/10/15) &lt;/td&gt;
	&lt;/tr&gt;
&lt;/table&gt;&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;table&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;table&amp;quot;,&amp;quot;secid&amp;quot;:6,&amp;quot;range&amp;quot;:&amp;quot;2029-2220&amp;quot;} --&gt;
&lt;p&gt;
通常通り、minimum installを行う
&lt;/p&gt;

&lt;p&gt;
fluentdは、大量のFileを扱うことがあるので、limitによる制限を外す必要がある。
&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;code&gt;/etc/sysctl.conf&lt;/code&gt; に&lt;code&gt;kern.maxfiles=65536&lt;/code&gt;及び&lt;code&gt;kern.maxfilesperproc=65536&lt;/code&gt;を追加する&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;
Disk1(/dev/ada1) をZFSにして、/zdataとしてmountする。
&lt;/p&gt;
&lt;ol&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;code&gt;gpart show&lt;/code&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; ここで、ada1が表示された場合、何らかのformatがなされていることになるので、確認する。&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; ada1を完全に消去する前提なら、&lt;code&gt;gpart destroy -F /dev/ada1&lt;/code&gt;を実行&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;code&gt;gpart create -s gpt /dev/ada1&lt;/code&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; これで、ada1にGPT Partitionを作成する&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;code&gt;gpart add -t freebsd-zfs -l log-data /dev/ada1&lt;/code&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;code&gt;-t&lt;/code&gt; で partition type を、&lt;code&gt;-l&lt;/code&gt;で label を指定する&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;code&gt;zpool create -O atime=off -O compression=lz4 -O normalization=formD zdata disk /dev/ada1&lt;/code&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; ZFS poolを作成し。/zdataとしてmountする。&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; ここでは、macOSに合わせて &lt;em&gt;normalization form&lt;/em&gt; を &lt;em&gt;form-D&lt;/em&gt; にし、 &lt;em&gt;lz4&lt;/em&gt; で圧縮するようにしている&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; 必要に応じて、&lt;code&gt;/etc/rc.conf&lt;/code&gt;に、&lt;code&gt;zfs_enable=“YES”&lt;/code&gt;と&lt;code&gt;zfsd_enable=“YES”&lt;/code&gt;を追加する&lt;/div&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;OS\u306e\u6e96\u5099&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;os\u306e\u6e96\u5099&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:5,&amp;quot;range&amp;quot;:&amp;quot;1975-3389&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit7&quot; id=&quot;基盤の準備&quot;&gt;基盤の準備&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;

&lt;p&gt;
FluentdはRubyを利用する。Rubyの環境は、(個人的に)保守がとても面倒なので、RubyEnvを利用することにする
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;\u57fa\u76e4\u306e\u6e96\u5099&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;\u57fa\u76e4\u306e\u6e96\u5099&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:7,&amp;quot;range&amp;quot;:&amp;quot;3390-3556&amp;quot;} --&gt;
&lt;h4 class=&quot;sectionedit8&quot; id=&quot;rbenvのinstall&quot;&gt;rbenvのInstall&lt;/h4&gt;
&lt;div class=&quot;level4&quot;&gt;
&lt;ol&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; rbenvを導入するためにgitとbashが必要&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; あんまり余計なものは入れたくないのだが…仕方がないか。&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;code&gt;pkg install git bash&lt;/code&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level2 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; FreeBSDの標準のUIDを設定する&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level3&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;code&gt;vipw&lt;/code&gt; で、&lt;code&gt;fluentd:*:963:963::0:0:fluentd user:/nonexistent:/usr/sbin/nologin&lt;/code&gt;を追加&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level3&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;code&gt;vi /etc/group&lt;/code&gt; を実行し &lt;code&gt;fluentd:*:963:&lt;/code&gt;を追加&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; githubからrbenvを引っ張ってくる&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;pre class=&quot;code&quot;&gt;# cd /usr/local
# git clone git://github.com/sstephenson/rbenv.git
# mkdir /usr/local/rbenv/plugins
# cd /usr/local/rbenv/plugins
# git clone git://github.com/sstephenson/ruby-build.git&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; 個人の.profile等に以下を追加 &lt;pre class=&quot;code&quot;&gt;# for rbenv...
export RBENV_ROOT=&amp;quot;/usr/local/rbenv&amp;quot;
export PATH=&amp;quot;${RBENV_ROOT}/bin:${PATH}&amp;quot;
eval &amp;quot;$(rbenv init -)&amp;quot;&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; もちろん、以下の作業前に source しておくこと&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; RubyのInstall&lt;/div&gt;
&lt;ol&gt;
&lt;li class=&quot;level2 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; まず、InstallできるRubyのVersionを確認する&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level3&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;code&gt;rbenv install –list&lt;/code&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level2 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; RubyをInstallする&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level3&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;code&gt;sudo rbenv install 2.5.1&lt;/code&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level3&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;code&gt;sudo rbenv rehash&lt;/code&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level2 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; System WideにDefaultを設定する&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level3&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;code&gt;sudo rbenv global 2.5.1&lt;/code&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level2 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; 実行されるrubyのVersionを確認する&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level3&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;code&gt;ruby -v&lt;/code&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;
これで、FreeBSD上に rbenv+ruby 2.5.1を実行できる環境が完成する。
&lt;strong&gt;ただし、ruby関連の実行バイナリーは/usr/local/rbenv/bin配下にあるので注意&lt;/strong&gt;
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;rbenv\u306eInstall&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;rbenv\u306einstall&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:8,&amp;quot;range&amp;quot;:&amp;quot;3557-5009&amp;quot;} --&gt;
&lt;h4 class=&quot;sectionedit9&quot; id=&quot;fluentdの準備&quot;&gt;fluentdの準備&lt;/h4&gt;
&lt;div class=&quot;level4&quot;&gt;

&lt;p&gt;
fluentdのInstallに関する情報は &lt;a href=&quot;https://docs.fluentd.org/v1.0/articles/install-by-gem&quot; class=&quot;urlextern&quot; title=&quot;https://docs.fluentd.org/v1.0/articles/install-by-gem&quot;&gt;ここ&lt;/a&gt; を参照
&lt;/p&gt;
&lt;ol&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;pre class=&quot;code&quot;&gt;gem install fluentd -N&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;
これだけで、fluentdはinstallされる。
&lt;/p&gt;

&lt;p&gt;
fluentdで収集したlog dataは、/zdata/fluentd配下に蓄積する。
&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;# cd /zdata
# mkdir fluentd
# cd fluentd
# fluentd --setup ./fluent
# fluentd -c ./fluent/fluent.conf -vv &amp;amp;&lt;/pre&gt;

&lt;p&gt;
これで、fluentdにメッセージが送れるようになったので、fluentdを停止する
&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;code&gt;pkill -f fluentd&lt;/code&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;
動作確認が取れたところで、一度cleaningする
&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;code&gt;rm -rf /zdata/fluentd &amp;amp;&amp;amp; mkdir /zdata/fluentd &amp;amp;&amp;amp; chown fluentd:fluentd /zdata/fluentd &amp;amp;&amp;amp; chmod 755 /zdata/fluentd&lt;/code&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;fluentd\u306e\u6e96\u5099&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;fluentd\u306e\u6e96\u5099&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:2,&amp;quot;secid&amp;quot;:9,&amp;quot;range&amp;quot;:&amp;quot;5010-5745&amp;quot;} --&gt;
&lt;h4 class=&quot;sectionedit10&quot; id=&quot;起動script&quot;&gt;起動script&lt;/h4&gt;
&lt;div class=&quot;level4&quot;&gt;

&lt;p&gt;
FreeBSDのPORTSから拝借した。&lt;code&gt;/usr/local/etc/rc.d&lt;/code&gt;に配置する
&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;code&gt;/usr/local/etc/rc.d/fluentd&lt;/code&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;dl class=&quot;code&quot;&gt;
&lt;dt&gt;&lt;a href=&quot;http://www.seirios.org/seirios/dokuwiki/doku.php?do=export_code&amp;amp;id=serverapp:logging:fluentd&amp;amp;codeblock=4&quot; title=&quot;この部分をダウンロード&quot; class=&quot;mediafile mf_&quot;&gt;fluentd&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;code bash&quot;&gt;&lt;span class=&quot;co0&quot;&gt;#!/bin/sh&lt;/span&gt;
&amp;nbsp;
&lt;span class=&quot;co0&quot;&gt;# $FreeBSD: head/sysutils/rubygem-fluentd/files/fluentd.in 366153 2014-08-25 21:16:56Z swills $&lt;/span&gt;
&lt;span class=&quot;co0&quot;&gt;#&lt;/span&gt;
&lt;span class=&quot;co0&quot;&gt;# PROVIDE: fluentd&lt;/span&gt;
&lt;span class=&quot;co0&quot;&gt;# REQUIRE: LOGIN&lt;/span&gt;
&lt;span class=&quot;co0&quot;&gt;# KEYWORD: shutdown&lt;/span&gt;
&lt;span class=&quot;co0&quot;&gt;#&lt;/span&gt;
&lt;span class=&quot;co0&quot;&gt;# Add the following lines to /etc/rc.conf.local or /etc/rc.conf&lt;/span&gt;
&lt;span class=&quot;co0&quot;&gt;# to enable this service:&lt;/span&gt;
&lt;span class=&quot;co0&quot;&gt;#&lt;/span&gt;
&lt;span class=&quot;co0&quot;&gt;# fluentd_enable (bool):        Set to NO by default.&lt;/span&gt;
&lt;span class=&quot;co0&quot;&gt;#                               Set it to YES to enable fluentd.&lt;/span&gt;
&lt;span class=&quot;co0&quot;&gt;# fluentd_config (path):        Set to %%PREFIX%%/etc/fluentd/fluent.conf&lt;/span&gt;
&lt;span class=&quot;co0&quot;&gt;#                               by default.&lt;/span&gt;
&lt;span class=&quot;co0&quot;&gt;# fluentd_flags (str):          Set to &amp;quot;&amp;quot; by default.&lt;/span&gt;
&amp;nbsp;
. &lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;etc&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;rc.subr
&amp;nbsp;
&lt;span class=&quot;re2&quot;&gt;name&lt;/span&gt;=fluentd
&lt;span class=&quot;re2&quot;&gt;rcvar&lt;/span&gt;=fluentd_enable
&lt;span class=&quot;re2&quot;&gt;extra_commands&lt;/span&gt;=&lt;span class=&quot;st0&quot;&gt;&amp;quot;init&amp;quot;&lt;/span&gt;
&amp;nbsp;
load_rc_config &lt;span class=&quot;re1&quot;&gt;$name&lt;/span&gt;
&amp;nbsp;
: &lt;span class=&quot;co1&quot;&gt;${fluentd_enable:=&amp;quot;NO&amp;quot;}&lt;/span&gt;
: &lt;span class=&quot;co1&quot;&gt;${fluentd_config=&amp;quot;%%PREFIX%%/etc/fluentd/fluent.conf&amp;quot;}&lt;/span&gt;
: &lt;span class=&quot;co1&quot;&gt;${fluentd_dir=&amp;quot;%%PREFIX%%/etc/fluentd&amp;quot;}&lt;/span&gt;
: &lt;span class=&quot;co1&quot;&gt;${fluentd_user=&amp;quot;%%USER%%&amp;quot;}&lt;/span&gt;
: &lt;span class=&quot;co1&quot;&gt;${fluentd_group=&amp;quot;%%GROUP%%&amp;quot;}&lt;/span&gt;
: &lt;span class=&quot;co1&quot;&gt;${fluentd_flags:=&amp;quot;&amp;quot;}&lt;/span&gt;
&amp;nbsp;
&lt;span class=&quot;re2&quot;&gt;PATH&lt;/span&gt;=&lt;span class=&quot;st0&quot;&gt;&amp;quot;&lt;span class=&quot;es3&quot;&gt;${PATH}&lt;/span&gt;:/usr/local/bin&amp;quot;&lt;/span&gt;
&lt;span class=&quot;co0&quot;&gt;# for rbenv...&lt;/span&gt;
&lt;span class=&quot;kw3&quot;&gt;export&lt;/span&gt; &lt;span class=&quot;re2&quot;&gt;RBENV_ROOT&lt;/span&gt;=&lt;span class=&quot;st0&quot;&gt;&amp;quot;/usr/local/rbenv&amp;quot;&lt;/span&gt;
&lt;span class=&quot;kw3&quot;&gt;export&lt;/span&gt; &lt;span class=&quot;re2&quot;&gt;PATH&lt;/span&gt;=&lt;span class=&quot;st0&quot;&gt;&amp;quot;&lt;span class=&quot;es3&quot;&gt;${RBENV_ROOT}&lt;/span&gt;/bin:&lt;span class=&quot;es3&quot;&gt;${PATH}&lt;/span&gt;&amp;quot;&lt;/span&gt;
&lt;span class=&quot;kw3&quot;&gt;eval&lt;/span&gt; &lt;span class=&quot;st0&quot;&gt;&amp;quot;&lt;span class=&quot;es4&quot;&gt;$(rbenv init -)&lt;/span&gt;&amp;quot;&lt;/span&gt;
&amp;nbsp;
&lt;span class=&quot;re2&quot;&gt;start_precmd&lt;/span&gt;=&lt;span class=&quot;st0&quot;&gt;&amp;quot;fluentd_start_precmd&amp;quot;&lt;/span&gt;
&amp;nbsp;
&lt;span class=&quot;re2&quot;&gt;command&lt;/span&gt;=&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;usr&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;local&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;rbenv&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;shims&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;co1&quot;&gt;${name}&lt;/span&gt;
&lt;span class=&quot;re2&quot;&gt;pidfile&lt;/span&gt;=&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;var&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;run&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;co1&quot;&gt;${name}&lt;/span&gt;&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;co1&quot;&gt;${name}&lt;/span&gt;.pid
&lt;span class=&quot;co0&quot;&gt;#command_interpreter=&amp;quot;/usr/local/rbenv/shims/ruby&amp;quot;&lt;/span&gt;
&lt;span class=&quot;re2&quot;&gt;stop_cmd&lt;/span&gt;=&lt;span class=&quot;st_h&quot;&gt;&#039;pkill -f fluentd&#039;&lt;/span&gt;
&amp;nbsp;
&lt;span class=&quot;re2&quot;&gt;command_args&lt;/span&gt;=&lt;span class=&quot;st0&quot;&gt;&amp;quot;-d &lt;span class=&quot;es2&quot;&gt;$pidfile&lt;/span&gt; -c &lt;span class=&quot;es2&quot;&gt;$fluentd_config&lt;/span&gt;&amp;quot;&lt;/span&gt;
&amp;nbsp;
fluentd_start_precmd&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;
&lt;span class=&quot;br0&quot;&gt;&amp;#123;&lt;/span&gt;
    &lt;span class=&quot;kw2&quot;&gt;install&lt;/span&gt; &lt;span class=&quot;re5&quot;&gt;-d&lt;/span&gt; &lt;span class=&quot;re5&quot;&gt;-o&lt;/span&gt; &lt;span class=&quot;co1&quot;&gt;${fluentd_user}&lt;/span&gt; &lt;span class=&quot;re5&quot;&gt;-g&lt;/span&gt; &lt;span class=&quot;co1&quot;&gt;${fluentd_group}&lt;/span&gt; &lt;span class=&quot;re5&quot;&gt;-m&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;775&lt;/span&gt; &lt;span class=&quot;co1&quot;&gt;${fluentd_dir}&lt;/span&gt;
    &lt;span class=&quot;kw2&quot;&gt;install&lt;/span&gt; &lt;span class=&quot;re5&quot;&gt;-d&lt;/span&gt; &lt;span class=&quot;re5&quot;&gt;-o&lt;/span&gt; &lt;span class=&quot;co1&quot;&gt;${fluentd_user}&lt;/span&gt; &lt;span class=&quot;re5&quot;&gt;-g&lt;/span&gt; &lt;span class=&quot;co1&quot;&gt;${fluentd_group}&lt;/span&gt; &lt;span class=&quot;re5&quot;&gt;-m&lt;/span&gt; &lt;span class=&quot;nu0&quot;&gt;775&lt;/span&gt; &lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;var&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;run&lt;span class=&quot;sy0&quot;&gt;/&lt;/span&gt;fluentd
&lt;span class=&quot;br0&quot;&gt;&amp;#125;&lt;/span&gt;
&amp;nbsp;
run_rc_command &lt;span class=&quot;st0&quot;&gt;&amp;quot;$1&amp;quot;&lt;/span&gt;&lt;/pre&gt;
&lt;/dd&gt;&lt;/dl&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;code&gt;/etc/rc.conf.local&lt;/code&gt;に以下を追記する&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;pre class=&quot;code&quot;&gt;fluentd_enable=&amp;quot;YES&amp;quot;
fluentd_config=&amp;quot;/zdata/fluentd/fluent.conf&amp;quot;
fluentd_dir=&amp;quot;/zdata/fluentd&amp;quot;
fluentd_user=&amp;quot;fluentd&amp;quot;
fluentd_group=&amp;quot;fluentd&amp;quot;
fluentd_flags=&amp;quot;&amp;quot;&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;\u8d77\u52d5script&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;\u8d77\u52d5script&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:4,&amp;quot;secid&amp;quot;:10,&amp;quot;range&amp;quot;:&amp;quot;5746-7585&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit11&quot; id=&quot;fluentdの設定と試験&quot;&gt;fluentdの設定と試験&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;

&lt;p&gt;
設定の細かい部分は &lt;a href=&quot;https://docs.fluentd.org/v1.0/articles/config-file&quot; class=&quot;urlextern&quot; title=&quot;https://docs.fluentd.org/v1.0/articles/config-file&quot;&gt;ここ&lt;/a&gt; を参照
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;fluentd\u306e\u8a2d\u5b9a\u3068\u8a66\u9a13&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;fluentd\u306e\u8a2d\u5b9a\u3068\u8a66\u9a13&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:6,&amp;quot;secid&amp;quot;:11,&amp;quot;range&amp;quot;:&amp;quot;7586-7722&amp;quot;} --&gt;
&lt;h4 class=&quot;sectionedit12&quot; id=&quot;fluentdでsyslogを受ける&quot;&gt;fluentdでsyslogを受ける&lt;/h4&gt;
&lt;div class=&quot;level4&quot;&gt;

&lt;p&gt;
Fluentdは syslog/UDP に来たsyslogメッセージを受け付けることができる。
&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;&amp;lt;source&amp;gt;
  type syslog
  format none
  port 514
  bind 0.0.0.0
  tag syslog
&amp;lt;/source&amp;gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;fluentd\u3067syslog\u3092\u53d7\u3051\u308b&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;fluentd\u3067syslog\u3092\u53d7\u3051\u308b&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:6,&amp;quot;secid&amp;quot;:12,&amp;quot;range&amp;quot;:&amp;quot;7723-7955&amp;quot;} --&gt;
&lt;h4 class=&quot;sectionedit13&quot; id=&quot;受け取ったメッセージをファイルに書き出す&quot;&gt;受け取ったメッセージをファイルに書き出す&lt;/h4&gt;
&lt;div class=&quot;level4&quot;&gt;

&lt;p&gt;
ここでは、上記syslogで受け取った “&lt;strong&gt;syslog&lt;/strong&gt;” tagのついたメッセージを、&lt;code&gt;/zdata/fluentd/syslog&lt;/code&gt;下に書き出す。
&lt;/p&gt;

&lt;p&gt;
Syslogの場合、メッセージの構成が “&lt;strong&gt;Tag.facility.level&lt;/strong&gt;“となっているので、match構文もそれに合わせる必要がある。
&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;&amp;lt;match syslog.*.*&amp;gt;
  @type       file
  buffer_type file
  path        /zdata/fluentd/syslog
&amp;lt;/match&amp;gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;\u53d7\u3051\u53d6\u3063\u305f\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u51fa\u3059&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;\u53d7\u3051\u53d6\u3063\u305f\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u51fa\u3059&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:7,&amp;quot;secid&amp;quot;:13,&amp;quot;range&amp;quot;:&amp;quot;7956-8438&amp;quot;} --&gt;
&lt;h4 class=&quot;sectionedit14&quot; id=&quot;実際にsyslogを送信してみる&quot;&gt;実際にsyslogを送信してみる&lt;/h4&gt;
&lt;div class=&quot;level4&quot;&gt;
&lt;ol&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; fluentdを起動する&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;code&gt;service fluentd start&lt;/code&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; psコマンドでfluentdが起動されていることを確認する&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;code&gt;service fluentd stop&lt;/code&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; psコマンドでfluentdが終了していることを確認する&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; 再度fluentdを起動する&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; localhostからloggerコマンドでlogを送付&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;code&gt;logger -h 127.0.0.1 “Syslog message test from local&lt;/code&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; このメッセージが設定に記載されているlogファイルに記載されればOK&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; remoteからloggerコマンドでlogを送付&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;code&gt;logger -h logger-host “Syslog message test from local&lt;/code&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; このメッセージが設定に記載されているlogファイルに記載されればOK&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;\u5b9f\u969b\u306bsyslog\u3092\u9001\u4fe1\u3057\u3066\u307f\u308b&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;\u5b9f\u969b\u306bsyslog\u3092\u9001\u4fe1\u3057\u3066\u307f\u308b&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:8,&amp;quot;secid&amp;quot;:14,&amp;quot;range&amp;quot;:&amp;quot;8439-9186&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit15&quot; id=&quot;落穂拾い&quot;&gt;落穂拾い&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;a href=&quot;https://docs.fluentd.org/v1.0/articles/quickstart&quot; class=&quot;urlextern&quot; title=&quot;https://docs.fluentd.org/v1.0/articles/quickstart&quot;&gt;fluentdのDocumentation&lt;/a&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;\u843d\u7a42\u62fe\u3044&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;\u843d\u7a42\u62fe\u3044&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:8,&amp;quot;secid&amp;quot;:15,&amp;quot;range&amp;quot;:&amp;quot;9187-9292&amp;quot;} --&gt;
&lt;h4 class=&quot;sectionedit16&quot; id=&quot;plugin_全般&quot;&gt;plugin 全般&lt;/h4&gt;
&lt;div class=&quot;level4&quot;&gt;

&lt;p&gt;
Fluentdは大量のpluginを持っている。pluginを管理するには、&lt;code&gt;fluent-gem&lt;/code&gt;を利用する。
&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;code&gt;fluent-plugin-grep&lt;/code&gt;を導入&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;code&gt;fluent-gem install fluent-plugin-grep&lt;/code&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;plugin \u5168\u822c&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;plugin_\u5168\u822c&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:8,&amp;quot;secid&amp;quot;:16,&amp;quot;range&amp;quot;:&amp;quot;9293-9509&amp;quot;} --&gt;
&lt;h4 class=&quot;sectionedit17&quot; id=&quot;syslog_plugin&quot;&gt;syslog plugin&lt;/h4&gt;
&lt;div class=&quot;level4&quot;&gt;

&lt;p&gt;
Fluentdのsyslog pluginは、標準で2048 byteまでしかメッセージを受け付けない。
これを拡張するには、fluent.confのsyslog設定の中で、&lt;code&gt;message_length_limit 8192&lt;/code&gt;などとする。
&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;&amp;lt;source&amp;gt;
  @type               syslog
  #....
  message_length_limit 8192
&amp;lt;/source&amp;gt;&lt;/pre&gt;

&lt;p&gt;
syslog pluginは、標準では、送信元の情報を出力しない。これを出力するには &lt;code&gt;include_source_host  true&lt;/code&gt;を&lt;strong&gt;source&lt;/strong&gt;セクションに追記する
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;syslog plugin&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;syslog_plugin&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:8,&amp;quot;secid&amp;quot;:17,&amp;quot;range&amp;quot;:&amp;quot;9510-10021&amp;quot;} --&gt;
&lt;h2 class=&quot;sectionedit18&quot; id=&quot;update_fluentd_on_freebsd&quot;&gt;Update fluentd on FreeBSD&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Update fluentd on FreeBSD&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;update_fluentd_on_freebsd&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:9,&amp;quot;secid&amp;quot;:18,&amp;quot;range&amp;quot;:&amp;quot;10022-10060&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit19&quot; id=&quot;fluentdの更新&quot;&gt;fluentdの更新&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;

&lt;p&gt;
FluentdのUpdateは、gemを更新するだけで良い。
&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;code&gt;gem outdated&lt;/code&gt; : 更新が必要なgemを探す&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;code&gt;gem update&lt;/code&gt; / &lt;code&gt;gem update [gem name]&lt;/code&gt; : gemを更新する&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;
つまり、&lt;code&gt;gem outdated&lt;/code&gt;して&lt;code&gt;gem update&lt;/code&gt; すればOK
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;fluentd\u306e\u66f4\u65b0&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;fluentd\u306e\u66f4\u65b0&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:9,&amp;quot;secid&amp;quot;:19,&amp;quot;range&amp;quot;:&amp;quot;10061-10332&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit20&quot; id=&quot;rubyのversion_up&quot;&gt;RubyのVersion up&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;

&lt;p&gt;
本環境の場合、ruby自体の更新を行う場合、以下の作業が必要になる。
&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;# cd /usr/local/rbenv
# git pull
# cd /usr/local/rbenv/plugins/ruby-build
# git pull
# rbenv install [target version]
# rbenv rehash
# rbenv global [target version]&lt;/pre&gt;

&lt;p&gt;
これで、Ruby自体のVersionが上がる。しかし。この状態では、&lt;strong&gt;ruby環境全てを更新してしまった&lt;/strong&gt;ので、当然fluentdは起動できなくなる。
そこで、以下の作業を実行し、fluentdをinstallする
&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;# gem install fluentd -N&lt;/pre&gt;

&lt;p&gt;
これで、&lt;code&gt;service fluentd stop; service fluentd start&lt;/code&gt; を実行すれば、fluentdが更新されるはず。
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Ruby\u306eVersion up&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;ruby\u306eversion_up&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:9,&amp;quot;secid&amp;quot;:20,&amp;quot;range&amp;quot;:&amp;quot;10333-&amp;quot;} --&gt;</description>
            <author>seirios@undisclosed.example.com (seirios)</author>
            <pubDate>Tue, 22 Dec 2020 08:19:37 +0000</pubDate>
        </item>
        <item>
            <title>FreeBSD 12.1-RELEASE and NextCloud</title>
            <link>http://www.seirios.org/seirios/dokuwiki/doku.php?id=tweet:2020:1215_01</link>
            <description>
&lt;h1 class=&quot;sectionedit1&quot; id=&quot;freebsd_121-release_and_nextcloud&quot;&gt;FreeBSD 12.1-RELEASE and NextCloud&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;
NextCloudを利用してファイル共有サービスを建てる。
&lt;/p&gt;

&lt;p&gt;
例によってFreeBSDで実装するが、今回は DB に PostgreSQL 13を利用することにする。
&lt;/p&gt;

&lt;p&gt;
Installに関しては &lt;a href=&quot;https://vermaden.wordpress.com/2020/01/04/nextcloud-17-on-freebsd-12-1/&quot; class=&quot;urlextern&quot; title=&quot;https://vermaden.wordpress.com/2020/01/04/nextcloud-17-on-freebsd-12-1/&quot;&gt;https://vermaden.wordpress.com/2020/01/04/nextcloud-17-on-freebsd-12-1/&lt;/a&gt; を参考にしたが、ZFS関連などでいろいろ「本質的には不要」なファイルもあるので、その辺を省く。
&lt;/p&gt;

&lt;p&gt;
NextCloudは更新が早いので、最新版に追従することを考えて、NextCloud自身はportsを利用しないでInstallすることにする。
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;FreeBSD 12.1-RELEASE and NextCloud&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;freebsd_121-release_and_nextcloud&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:1,&amp;quot;range&amp;quot;:&amp;quot;1-623&amp;quot;} --&gt;
&lt;h2 class=&quot;sectionedit2&quot; id=&quot;freebsdの設定&quot;&gt;FreeBSDの設定&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;
以下、FreeBSDの設定を行う。
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;FreeBSD\u306e\u8a2d\u5b9a&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;freebsd\u306e\u8a2d\u5b9a&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:2,&amp;quot;range&amp;quot;:&amp;quot;624-692&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit3&quot; id=&quot;binary_packageのinstall&quot;&gt;Binary PackageのInstall&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; 標準状態で ZFS を root にして Install する&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; 必要最小限のPackageを投入&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; OLD: &lt;del&gt;&amp;lt;code&amp;gt;
# pkg install sudo postgresql12-client postgresql12-server nginx-devel memcached php74 php74-pecl-memcached php74-pdo_pgsql php74-pgsql
&amp;lt;/code&amp;gt;&lt;/del&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; Current: &lt;pre class=&quot;code&quot;&gt;# pkg install sudo postgresql13-client postgresql13-server nginx-devel memcached php80 php80-pecl-memcached php80-pdo_pgsql php80-pgsql&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level2 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;del&gt;本当はpostgresql13を利用したかったが、pkgでpdo-pgsqlを利用する関係で、postgresql12を利用することにした。将来更新で面倒なことになる可能性があるので悩ましいが、とりあえず現時点ではどうなるかの確認を兼ねてPGSQL12で試してみる。&lt;/del&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level3&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;plugin_wrap_start&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;&amp;quot;,&amp;quot;secid&amp;quot;:4,&amp;quot;range&amp;quot;:&amp;quot;0-&amp;quot;} --&gt;&lt;div class=&quot;plugin_wrap&quot;&gt;
&lt;p&gt;
FreeBSDのportsやNetBSDのpkgsrc、RHE系のyum等、Binary Package管理システムはこういうときに融通が効きにくいという辛みがある。
しかし、こうしないと派生のBinary Packageが大量に発生するという問題もあるので痛し痒しというところか…
&lt;/p&gt;

&lt;p&gt;
まぁ、そのために、portsでCompileする部分が残っているというのはあるが…
&lt;/p&gt;
&lt;/div&gt;&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;plugin_wrap_end&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;&amp;quot;,&amp;quot;secid&amp;quot;:5,&amp;quot;range&amp;quot;:&amp;quot;0-&amp;quot;} --&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; NextCloud用の追加Packageを投入&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; OLD: &lt;del&gt;&amp;lt;code&amp;gt;
# pkg install php74-extensions php74-zip php74-mbstring php74-gd php74-curl php74-openssl php74-fileinfo php74-bz2 php74-intl php74-bcmath php74-ftp php74-gmp php74-exif php74-pecl-memcache php74-pecl-memcached php74-pecl-imagick-im7 php74-pecl-APCu
&amp;lt;/code&amp;gt;&lt;/del&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;pre class=&quot;code&quot;&gt;# pkg install php80-extensions php80-zip php80-mbstring php80-gd php80-curl php80-fileinfo php80-bz2 php80-intl php80-bcmath php80-ftp php80-gmp php80-exif php80-pecl-memcache php80-pecl-memcached php80-pecl-imagick-im7 php80-pecl-APCu&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; 次に、PGSQLおよび格納ファイル用のzpoolを作成する&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;pre class=&quot;code&quot;&gt;# zpool create -m none zdata /dev/ada1
# zfs create zdata/pgsql
# zfs set mountpoint=/var/db/postgres zdata/pgsql
# zfs set recordsize=8k zdata/pgsql
# chown -R postgres:postgres /var/db/postgres
# zfs create zdata/www
# zfs set mountpoint=/home/www zdata/www
# chown www:www /home/www
# chown -R www:www /home/www&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Binary Package\u306eInstall&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;binary_package\u306einstall&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:3,&amp;quot;range&amp;quot;:&amp;quot;693-2920&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit6&quot; id=&quot;postgresqlに関する設定&quot;&gt;PostgreSQLに関する設定&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; /etc/login.confでpostgresユーザーの各種LOCALE設定を投入する&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;pre class=&quot;code&quot;&gt;# cat /etc/login.conf
postgres:\
        :lang=en_US.UTF-8:\
        :setenv=LC_COLLATE=C:\
        :tc=default:

# cap_mkdb /etc/login.conf&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; PostgreSQLに関する起動時設定を行う。&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; 好みもあるが、/etc/rc.conf.localに記述する。/etc/rc.confに記述しても良い。&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;pre class=&quot;code&quot;&gt;postgresql_enable=YES
postgresql_class=postgres
postgresql_data=/var/db/postgres/data13&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; PostgreSQLの初期化を行う&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;pre class=&quot;code&quot;&gt;# /usr/local/etc/rc.d/postgresql initdb&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; PostgrSQLを起動&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;pre class=&quot;code&quot;&gt;# service postgresql start&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; NextCloud用設定を投入&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;pre class=&quot;code&quot;&gt;# psql -h localhost -U postgres
psql (12.5)
Type &amp;quot;help&amp;quot; for help.

postgres=# CREATE USER ncadm WITH PASSWORD &amp;#039;NC_DB_PASSWORD&amp;#039;;
CREATE ROLE
postgres=# CREATE DATABASE nc TEMPLATE template0 ENCODING &amp;#039;UNICODE&amp;#039;;
CREATE DATABASE
postgres=# ALTER DATABASE nc OWNER TO ncadm;
ALTER DATABASE
postgres=# \q&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;del&gt;PostgreSQLのCleanup(Vacuum)とIndex作成を自動で行うようにする&lt;/del&gt;比較的街の方が大きいので削除&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; Vacuumは自動で実施される。Vacuumのタイミングを制御したい場合以外は入れる必要はない&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level2 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; reindexは壊れた時にのみ行えば良いものなので、cronで定期実行するのは害が大きい模様（壊れるわけではないが、無駄に負荷をかける）&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level3&quot;&gt;&lt;div class=&quot;li&quot;&gt; reindexによってメモリキャッシュが消えてしまい、indexを再度読み込む負荷がかかる可能性が高い&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;pre class=&quot;code&quot;&gt;# mkdir -p /var/db/postgres/bin
# chown postgres /var/db/postgres/bin
# vi /var/db/postgres/bin/vacuum.sh

#! /bin/sh

/usr/local/bin/vacuumdb -az 1&amp;gt; /dev/null 2&amp;gt; /dev/null
/usr/local/bin/reindexdb -a 1&amp;gt; /dev/null 2&amp;gt; /dev/null
/usr/local/bin/reindexdb -s 1&amp;gt; /dev/null 2&amp;gt; /dev/null

# chown postgres /var/db/postgres/bin/vacuum.sh
# chmod +x /var/db/postgres/bin/vacuum.sh

# su - postgres -c &amp;#039;crontab -e&amp;#039;
0 0 * * * /var/db/postgres/bin/vacuum.sh

# su - postgres -c &amp;#039;/var/db/postgres/bin/vacuum.sh&amp;#039;&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;PostgreSQL\u306b\u95a2\u3059\u308b\u8a2d\u5b9a&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;postgresql\u306b\u95a2\u3059\u308b\u8a2d\u5b9a&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:3,&amp;quot;secid&amp;quot;:6,&amp;quot;range&amp;quot;:&amp;quot;2921-5091&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit7&quot; id=&quot;nginx&quot;&gt;NGINX&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; NGINXのlogファイルを格納するDirectoryのOwner/Groupをwww:wwwに変更&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;pre class=&quot;code&quot;&gt;# chown www:www /var/log/nginx&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; /usr/local/etc/nginx/nginx.confを作成&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;dl class=&quot;code&quot;&gt;
&lt;dt&gt;&lt;a href=&quot;http://www.seirios.org/seirios/dokuwiki/doku.php?do=export_code&amp;amp;id=tweet:2020:1215_01&amp;amp;codeblock=10&quot; title=&quot;この部分をダウンロード&quot; class=&quot;mediafile mf_conf&quot;&gt;nginx.conf&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;code&quot;&gt;user www;
worker_processes 4;
worker_rlimit_nofile 51200;
error_log /var/log/nginx/error.log;

events {
  worker_connections 1024;
}

http {
  include mime.types;
  default_type application/octet-stream;
  log_format main &amp;#039;$remote_addr - $remote_user [$time_local] &amp;quot;$request&amp;quot; &amp;#039;;
  access_log /var/log/nginx/access.log main;
  sendfile on;
  keepalive_timeout 65;

  upstream php-handler {
    server 127.0.0.1:9000;
  }

  server {
    # ENFORCE HTTPS
    listen 80;
    server_name nextcloud.domain.com;
    return 301 https://$server_name$request_uri;
  }

  server {
    listen 443 ssl http2;
    server_name nextcloud.domain.com;
    ssl_certificate /usr/local/etc/nginx/ssl/ssl-bundle.crt;
    ssl_certificate_key /usr/local/etc/nginx/ssl/server.key;

    # HEADERS SECURITY RELATED
    add_header Strict-Transport-Security &amp;quot;max-age=15768000; includeSubDomains; preload;&amp;quot;;
    add_header Referrer-Policy &amp;quot;no-referrer&amp;quot;;

    # HEADERS
    add_header X-Content-Type-Options nosniff;
    add_header X-XSS-Protection &amp;quot;1; mode=block&amp;quot;;
    add_header X-Robots-Tag none;
    add_header X-Download-Options noopen;
    add_header X-Permitted-Cross-Domain-Policies none;

    # PATH TO THE ROOT OF YOUR INSTALLATION
    root /usr/local/www/nextcloud/;

    location = /robots.txt {
      allow all;
      log_not_found off;
      access_log off;
    }

    location = /.well-known/carddav {
      return 301 $scheme://$host/remote.php/dav;
    }

    location = /.well-known/caldav {
      return 301 $scheme://$host/remote.php/dav;
    }

    # BUFFERS TIMEOUTS UPLOAD SIZES
    client_max_body_size 16400M;
    client_body_buffer_size 1048576k;
    send_timeout 3000;

    # ENABLE GZIP BUT DO NOT REMOVE ETag HEADERS
    gzip on;
    gzip_vary on;
    gzip_comp_level 4;
    gzip_min_length 256;
    gzip_proxied expired no-cache no-store private no_last_modified no_etag auth;
    gzip_types application/atom+xml application/javascript application/json application/ld+json application/manifest+json application/rss+xml application/vnd.geo+json application/vnd.ms-fontobject application/x-font-ttf application/x-web-app-manifest+json application/xhtml+xml application/xml font/opentype image/bmp image/svg+xml image/x-icon text/cache-manifest text/css text/plain text/vcard text/vnd.rim.location.xloc text/vtt text/x-component text/x-cross-domain-policy;

    location / {
      rewrite ^ /index.php$request_uri;
    }

    location ~ ^/(?:build|tests|config|lib|3rdparty|templates|data)/ {
      deny all;
    }

    location ~ ^/(?:\.|autotest|occ|issue|indie|db_|console) {
      deny all;
    }

    location ~ ^\/(?:index|remote|public|cron|core\/ajax\/update|status|ocs\/v[12]|updater\/.+|oc[ms]-provider\/.+)\.php(?:$|\/) {
      fastcgi_split_path_info ^(.+\.php)(/.*)$;
      include fastcgi_params;
      fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
      fastcgi_param PATH_INFO $fastcgi_path_info;
      fastcgi_param HTTPS on;
      fastcgi_param modHeadersAvailable true;
      fastcgi_param front_controller_active true;
      fastcgi_pass php-handler;
      fastcgi_intercept_errors on;
      fastcgi_request_buffering off;
      fastcgi_keep_conn off;
      fastcgi_buffers 16 256K;
      fastcgi_buffer_size 256k;
      fastcgi_busy_buffers_size 256k;
      fastcgi_temp_file_write_size 256k;
      fastcgi_send_timeout 3000s;
      fastcgi_read_timeout 3000s;
      fastcgi_connect_timeout 3000s;
    }

    location ~ ^\/(?:updater|oc[ms]-provider)(?:$|\/) {
      try_files $uri/ =404;
      index index.php;
    }

    # ADDING THE CACHE CONTROL HEADER FOR JS AND CSS FILES
    # MAKE SURE IT IS BELOW PHP BLOCK
    location ~ \.(?:css|js|woff2?|svg|gif)$ {
      try_files $uri /index.php$uri$is_args$args;
      add_header Cache-Control &amp;quot;public, max-age=15778463&amp;quot;;
      # HEADERS SECURITY RELATED
      # IT IS INTENDED TO HAVE THOSE DUPLICATED TO ONES ABOVE
      add_header Strict-Transport-Security &amp;quot;max-age=15768000; includeSubDomains; preload;&amp;quot;;
      # HEADERS
      add_header X-Content-Type-Options nosniff;
      add_header X-XSS-Protection &amp;quot;1; mode=block&amp;quot;;
      add_header X-Robots-Tag none;
      add_header X-Download-Options noopen;
      add_header X-Permitted-Cross-Domain-Policies none;
      # OPTIONAL: DONT LOG ACCESS TO ASSETS
      access_log off;
    }

    location ~ \.(?:png|html|ttf|ico|jpg|jpeg)$ {
      try_files $uri /index.php$uri$is_args$args;
      # OPTIONAL: DONT LOG ACCESS TO OTHER ASSETS
      access_log off;
    }
  }
}&lt;/pre&gt;
&lt;/dd&gt;&lt;/dl&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;NGINX&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;nginx&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:9,&amp;quot;secid&amp;quot;:7,&amp;quot;range&amp;quot;:&amp;quot;5092-9830&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit8&quot; id=&quot;サーバ証明書の入手&quot;&gt;サーバ証明書の入手&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; 今時はいろいろな方法があるが、今回はLet&amp;#039;s Encryptで取得した。&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; 詳細は割愛&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;\u30b5\u30fc\u30d0\u8a3c\u660e\u66f8\u306e\u5165\u624b&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;\u30b5\u30fc\u30d0\u8a3c\u660e\u66f8\u306e\u5165\u624b&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:11,&amp;quot;secid&amp;quot;:8,&amp;quot;range&amp;quot;:&amp;quot;9831-9979&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit9&quot; id=&quot;php_configuration&quot;&gt;PHP configuration&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; php.ini&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;dl class=&quot;code&quot;&gt;
&lt;dt&gt;&lt;a href=&quot;http://www.seirios.org/seirios/dokuwiki/doku.php?do=export_code&amp;amp;id=tweet:2020:1215_01&amp;amp;codeblock=11&quot; title=&quot;この部分をダウンロード&quot; class=&quot;mediafile mf_diff&quot;&gt;php.ini.diff&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;code diff&quot;&gt;# diff -c php.ini-production php.ini
&lt;span class=&quot;re9&quot;&gt;*** php.ini-production  Tue Dec  8 10:31:04 2020&lt;/span&gt;
&lt;span class=&quot;re3&quot;&gt;--- php.ini     Wed Dec 16 00:49:45 2020&lt;/span&gt;
***************
&lt;span class=&quot;re9&quot;&gt;*** 212,218 ****&lt;/span&gt;
  ; Development Value: &lt;span class=&quot;nu0&quot;&gt;4096&lt;/span&gt;
  ; Production Value: &lt;span class=&quot;nu0&quot;&gt;4096&lt;/span&gt;
  ; http://php.net/output-buffering
&lt;span class=&quot;re5&quot;&gt;! output_buffering = 4096&lt;/span&gt;
&amp;nbsp;
  ; You can redirect all of the output of your scripts to a function.  For
  ; example, if you set output_handler to &amp;quot;mb_output_handler&amp;quot;, character
&lt;span class=&quot;re3&quot;&gt;--- 212,219 ----&lt;/span&gt;
  ; Development Value: &lt;span class=&quot;nu0&quot;&gt;4096&lt;/span&gt;
  ; Production Value: &lt;span class=&quot;nu0&quot;&gt;4096&lt;/span&gt;
  ; http://php.net/output-buffering
&lt;span class=&quot;re5&quot;&gt;! ;output_buffering = 4096&lt;/span&gt;
&lt;span class=&quot;re5&quot;&gt;! output_buffering = Off&lt;/span&gt;
&amp;nbsp;
  ; You can redirect all of the output of your scripts to a function.  For
  ; example, if you set output_handler to &amp;quot;mb_output_handler&amp;quot;, character
***************
&lt;span class=&quot;re9&quot;&gt;*** 297,303 ****&lt;/span&gt;
  ; The value is also used for json_encode when encoding double values.
  ; If -&lt;span class=&quot;nu0&quot;&gt;1&lt;/span&gt; is used, then dtoa mode &lt;span class=&quot;nu0&quot;&gt;0&lt;/span&gt; is used which automatically select the best
  ; precision.
&lt;span class=&quot;re5&quot;&gt;! serialize_precision = -1&lt;/span&gt;
&amp;nbsp;
  ; open_basedir, if set, limits all file operations to the defined directory
  ; and below.  This directive makes most sense if used in a per-directory
&lt;span class=&quot;re3&quot;&gt;--- 298,305 ----&lt;/span&gt;
  ; The value is also used for json_encode when encoding double values.
  ; If -&lt;span class=&quot;nu0&quot;&gt;1&lt;/span&gt; is used, then dtoa mode &lt;span class=&quot;nu0&quot;&gt;0&lt;/span&gt; is used which automatically select the best
  ; precision.
&lt;span class=&quot;re5&quot;&gt;! ;serialize_precision = -1&lt;/span&gt;
&lt;span class=&quot;re5&quot;&gt;! serialize_precision = 17&lt;/span&gt;
&amp;nbsp;
  ; open_basedir, if set, limits all file operations to the defined directory
  ; and below.  This directive makes most sense if used in a per-directory
***************
&lt;span class=&quot;re9&quot;&gt;*** 385,391 ****&lt;/span&gt;
  ; Maximum execution time of each script, in seconds
  ; http://php.net/max-execution-time
  ; Note: This directive is hardcoded to &lt;span class=&quot;nu0&quot;&gt;0&lt;/span&gt; for the CLI SAPI
&lt;span class=&quot;re5&quot;&gt;! max_execution_time = 30&lt;/span&gt;
&amp;nbsp;
  ; Maximum amount of time each script may spend parsing request data. It&#039;s a good
  ; idea to limit this time on productions servers in order to eliminate unexpectedly
&lt;span class=&quot;re3&quot;&gt;--- 387,394 ----&lt;/span&gt;
  ; Maximum execution time of each script, in seconds
  ; http://php.net/max-execution-time
  ; Note: This directive is hardcoded to &lt;span class=&quot;nu0&quot;&gt;0&lt;/span&gt; for the CLI SAPI
&lt;span class=&quot;re5&quot;&gt;! ;max_execution_time = 60&lt;/span&gt;
&lt;span class=&quot;re5&quot;&gt;! max_execution_time = 3600&lt;/span&gt;
&amp;nbsp;
  ; Maximum amount of time each script may spend parsing request data. It&#039;s a good
  ; idea to limit this time on productions servers in order to eliminate unexpectedly
***************
&lt;span class=&quot;re9&quot;&gt;*** 395,401 ****&lt;/span&gt;
  ; Development Value: &lt;span class=&quot;nu0&quot;&gt;60&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;nu0&quot;&gt;60&lt;/span&gt; seconds&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;
  ; Production Value: &lt;span class=&quot;nu0&quot;&gt;60&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;nu0&quot;&gt;60&lt;/span&gt; seconds&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;
  ; http://php.net/max-input-time
&lt;span class=&quot;re5&quot;&gt;! max_input_time = 60&lt;/span&gt;
&amp;nbsp;
  ; Maximum input variable nesting level
  ; http://php.net/max-input-nesting-level
&lt;span class=&quot;re3&quot;&gt;--- 398,405 ----&lt;/span&gt;
  ; Development Value: &lt;span class=&quot;nu0&quot;&gt;60&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;nu0&quot;&gt;60&lt;/span&gt; seconds&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;
  ; Production Value: &lt;span class=&quot;nu0&quot;&gt;60&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;nu0&quot;&gt;60&lt;/span&gt; seconds&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;
  ; http://php.net/max-input-time
&lt;span class=&quot;re5&quot;&gt;! ;max_input_time = 60&lt;/span&gt;
&lt;span class=&quot;re5&quot;&gt;! max_input_time = 30000&lt;/span&gt;
&amp;nbsp;
  ; Maximum input variable nesting level
  ; http://php.net/max-input-nesting-level
***************
&lt;span class=&quot;re9&quot;&gt;*** 406,412 ****&lt;/span&gt;
&amp;nbsp;
  ; Maximum amount of memory a script may consume
  ; http://php.net/memory-limit
&lt;span class=&quot;re5&quot;&gt;! memory_limit = 128M&lt;/span&gt;
&amp;nbsp;
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  ; Error handling and logging ;
&lt;span class=&quot;re3&quot;&gt;--- 410,417 ----&lt;/span&gt;
&amp;nbsp;
  ; Maximum amount of memory a script may consume
  ; http://php.net/memory-limit
&lt;span class=&quot;re5&quot;&gt;! ;memory_limit = 128M&lt;/span&gt;
&lt;span class=&quot;re5&quot;&gt;! memory_limit = 1024M&lt;/span&gt;
&amp;nbsp;
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  ; Error handling and logging ;
***************
&lt;span class=&quot;re9&quot;&gt;*** 536,541 ****&lt;/span&gt;
&lt;span class=&quot;re3&quot;&gt;--- 541,547 ----&lt;/span&gt;
  ; Production Value: Off
  ; http://php.net/track-errors
  ;track_errors = Off
&lt;span class=&quot;re8&quot;&gt;+ track_errors = Off&lt;/span&gt;
&amp;nbsp;
  ; Turn off normal error reporting and emit XML-RPC error XML
  ; http://php.net/xmlrpc-errors
***************
&lt;span class=&quot;re9&quot;&gt;*** 550,555 ****&lt;/span&gt;
&lt;span class=&quot;re3&quot;&gt;--- 556,562 ----&lt;/span&gt;
  ; Note: This directive is hardcoded to Off for the CLI SAPI
  ; http://php.net/html-errors
  ;html_errors = On
&lt;span class=&quot;re8&quot;&gt;+ html_errors = On&lt;/span&gt;
&amp;nbsp;
  ; If html_errors is set to On *and* docref_root is not empty, then PHP
  ; produces clickable error messages that direct to a page describing the error
***************
&lt;span class=&quot;re9&quot;&gt;*** 584,589 ****&lt;/span&gt;
&lt;span class=&quot;re3&quot;&gt;--- 591,597 ----&lt;/span&gt;
  ; http://php.net/error-log
  ; Example:
  ;error_log = php_errors.log
&lt;span class=&quot;re8&quot;&gt;+ error_log = /var/log/php.log&lt;/span&gt;
  ; Log errors to syslog &lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;Event Log on Windows&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;.
  ;error_log = syslog
&amp;nbsp;
***************
&lt;span class=&quot;re9&quot;&gt;*** 691,697 ****&lt;/span&gt;
  ; Its value may be &lt;span class=&quot;nu0&quot;&gt;0&lt;/span&gt; to disable the limit. It is ignored if POST data reading
  ; is disabled through enable_post_data_reading.
  ; http://php.net/post-max-size
&lt;span class=&quot;re5&quot;&gt;! post_max_size = 8M&lt;/span&gt;
&amp;nbsp;
  ; Automatically add files before PHP document.
  ; http://php.net/auto-prepend-file
&lt;span class=&quot;re3&quot;&gt;--- 699,706 ----&lt;/span&gt;
  ; Its value may be &lt;span class=&quot;nu0&quot;&gt;0&lt;/span&gt; to disable the limit. It is ignored if POST data reading
  ; is disabled through enable_post_data_reading.
  ; http://php.net/post-max-size
&lt;span class=&quot;re5&quot;&gt;! ;post_max_size = 8M&lt;/span&gt;
&lt;span class=&quot;re5&quot;&gt;! post_max_size = 16400M&lt;/span&gt;
&amp;nbsp;
  ; Automatically add files before PHP document.
  ; http://php.net/auto-prepend-file
***************
&lt;span class=&quot;re9&quot;&gt;*** 843,852 ****&lt;/span&gt;
&amp;nbsp;
  ; Maximum allowed size for uploaded files.
  ; http://php.net/upload-max-filesize
&lt;span class=&quot;re5&quot;&gt;! upload_max_filesize = 2M&lt;/span&gt;
&amp;nbsp;
  ; Maximum number of files that can be uploaded via a single request
&lt;span class=&quot;re5&quot;&gt;! max_file_uploads = 20&lt;/span&gt;
&amp;nbsp;
  ;;;;;;;;;;;;;;;;;;
  ; Fopen wrappers ;
&lt;span class=&quot;re3&quot;&gt;--- 852,863 ----&lt;/span&gt;
&amp;nbsp;
  ; Maximum allowed size for uploaded files.
  ; http://php.net/upload-max-filesize
&lt;span class=&quot;re5&quot;&gt;! ;upload_max_filesize = 2M&lt;/span&gt;
&lt;span class=&quot;re5&quot;&gt;! upload_max_filesize = 16400M&lt;/span&gt;
&amp;nbsp;
  ; Maximum number of files that can be uploaded via a single request
&lt;span class=&quot;re5&quot;&gt;! ;max_file_uploads = 20&lt;/span&gt;
&lt;span class=&quot;re5&quot;&gt;! max_file_uploads = 64&lt;/span&gt;
&amp;nbsp;
  ;;;;;;;;;;;;;;;;;;
  ; Fopen wrappers ;
***************
&lt;span class=&quot;re9&quot;&gt;*** 871,877 ****&lt;/span&gt;
&amp;nbsp;
  ; Default timeout for socket based streams &lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;seconds&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;
  ; http://php.net/default-socket-timeout
&lt;span class=&quot;re5&quot;&gt;! default_socket_timeout = 60&lt;/span&gt;
&amp;nbsp;
  ; If your scripts have to deal with files from Macintosh systems,
  ; or you are running on a Mac and need to deal with files from
&lt;span class=&quot;re3&quot;&gt;--- 882,889 ----&lt;/span&gt;
&amp;nbsp;
  ; Default timeout for socket based streams &lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;seconds&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;
  ; http://php.net/default-socket-timeout
&lt;span class=&quot;re5&quot;&gt;! ;default_socket_timeout = 60&lt;/span&gt;
&lt;span class=&quot;re5&quot;&gt;! default_socket_timeout = 300&lt;/span&gt;
&amp;nbsp;
  ; If your scripts have to deal with files from Macintosh systems,
  ; or you are running on a Mac and need to deal with files from
***************
&lt;span class=&quot;re9&quot;&gt;*** 960,965 ****&lt;/span&gt;
&lt;span class=&quot;re3&quot;&gt;--- 972,978 ----&lt;/span&gt;
  ; Defines the default timezone used by the date functions
  ; http://php.net/date.timezone
  ;date.timezone =
&lt;span class=&quot;re8&quot;&gt;+ date.timezone = Asia/Tokyo&lt;/span&gt;
&amp;nbsp;
  ; http://php.net/date.default-latitude
  ;date.default_latitude = &lt;span class=&quot;nu0&quot;&gt;31.7667&lt;/span&gt;
***************
&lt;span class=&quot;re9&quot;&gt;*** 1053,1058 ****&lt;/span&gt;
&lt;span class=&quot;re3&quot;&gt;--- 1066,1072 ----&lt;/span&gt;
  &lt;span class=&quot;br0&quot;&gt;&amp;#91;&lt;/span&gt;Pdo_mysql&lt;span class=&quot;br0&quot;&gt;&amp;#93;&lt;/span&gt;
  ; Default socket name for local MySQL connects.  If empty, uses the built-in
  ; MySQL defaults.
&lt;span class=&quot;re8&quot;&gt;+ pdo_mysql.cache_size = 2000&lt;/span&gt;
  pdo_mysql.default_socket=
&amp;nbsp;
  &lt;span class=&quot;br0&quot;&gt;&amp;#91;&lt;/span&gt;Phar&lt;span class=&quot;br0&quot;&gt;&amp;#93;&lt;/span&gt;
***************
&lt;span class=&quot;re9&quot;&gt;*** 1085,1091 ****&lt;/span&gt;
  ;mail.force_extra_parameters =
&amp;nbsp;
  ; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
&lt;span class=&quot;re5&quot;&gt;! mail.add_x_header = Off&lt;/span&gt;
&amp;nbsp;
  ; The path to a log file that will log all mail&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt; calls. Log entries include
  ; the full path of the script, line number, To address and headers.
&lt;span class=&quot;re3&quot;&gt;--- 1099,1106 ----&lt;/span&gt;
  ;mail.force_extra_parameters =
&amp;nbsp;
  ; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
&lt;span class=&quot;re5&quot;&gt;! ;mail.add_x_header = Off&lt;/span&gt;
&lt;span class=&quot;re5&quot;&gt;! mail.add_x_header = On&lt;/span&gt;
&amp;nbsp;
  ; The path to a log file that will log all mail&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt; calls. Log entries include
  ; the full path of the script, line number, To address and headers.
***************
&lt;span class=&quot;re9&quot;&gt;*** 1340,1345 ****&lt;/span&gt;
&lt;span class=&quot;re3&quot;&gt;--- 1355,1361 ----&lt;/span&gt;
  ; does not overwrite the process&#039;s umask.
  ; http://php.net/session.save-path
  ;session.save_path = &amp;quot;/tmp&amp;quot;
&lt;span class=&quot;re8&quot;&gt;+ session.save_path = &amp;quot;/tmp&amp;quot;&lt;/span&gt;
&amp;nbsp;
  ; Whether to use strict session mode.
  ; Strict session mode does not accept an uninitialized session ID, and
***************
&lt;span class=&quot;re9&quot;&gt;*** 1767,1785 ****&lt;/span&gt;
&lt;span class=&quot;re3&quot;&gt;--- 1783,1806 ----&lt;/span&gt;
  &lt;span class=&quot;br0&quot;&gt;&amp;#91;&lt;/span&gt;opcache&lt;span class=&quot;br0&quot;&gt;&amp;#93;&lt;/span&gt;
  ; Determines if Zend OPCache is enabled
  ;opcache.enable=&lt;span class=&quot;nu0&quot;&gt;1&lt;/span&gt;
&lt;span class=&quot;re8&quot;&gt;+ opcache.enable=1&lt;/span&gt;
&amp;nbsp;
  ; Determines if Zend OPCache is enabled for the CLI version of PHP
  ;opcache.enable_cli=&lt;span class=&quot;nu0&quot;&gt;0&lt;/span&gt;
&lt;span class=&quot;re8&quot;&gt;+ opcache.enable_cli=1&lt;/span&gt;
&amp;nbsp;
  ; The OPcache shared memory storage size.
  ;opcache.memory_consumption=&lt;span class=&quot;nu0&quot;&gt;128&lt;/span&gt;
&lt;span class=&quot;re8&quot;&gt;+ opcache.memory_consumption=128&lt;/span&gt;
&amp;nbsp;
  ; The amount of memory for interned strings in Mbytes.
  ;opcache.interned_strings_buffer=&lt;span class=&quot;nu0&quot;&gt;8&lt;/span&gt;
&lt;span class=&quot;re8&quot;&gt;+ opcache.interned_strings_buffer=8&lt;/span&gt;
&amp;nbsp;
  ; The maximum number of keys &lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;scripts&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt; in the OPcache hash table.
  ; Only numbers between &lt;span class=&quot;nu0&quot;&gt;200&lt;/span&gt; and &lt;span class=&quot;nu0&quot;&gt;1000000&lt;/span&gt; are allowed.
  ;opcache.max_accelerated_files=&lt;span class=&quot;nu0&quot;&gt;10000&lt;/span&gt;
&lt;span class=&quot;re8&quot;&gt;+ opcache.max_accelerated_files=10000&lt;/span&gt;
&amp;nbsp;
  ; The maximum percentage of &amp;quot;wasted&amp;quot; memory until a restart is scheduled.
  ;opcache.max_wasted_percentage=&lt;span class=&quot;nu0&quot;&gt;5&lt;/span&gt;
***************
&lt;span class=&quot;re9&quot;&gt;*** 1798,1803 ****&lt;/span&gt;
&lt;span class=&quot;re3&quot;&gt;--- 1819,1825 ----&lt;/span&gt;
  ; memory storage allocation. &lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&amp;quot;&lt;span class=&quot;nu0&quot;&gt;1&lt;/span&gt;&amp;quot; means validate once per second, but only
  ; once per request. &amp;quot;&lt;span class=&quot;nu0&quot;&gt;0&lt;/span&gt;&amp;quot; means always validate&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;
  ;opcache.revalidate_freq=&lt;span class=&quot;nu0&quot;&gt;2&lt;/span&gt;
&lt;span class=&quot;re8&quot;&gt;+ opcache.revalidate_freq=1&lt;/span&gt;
&amp;nbsp;
  ; Enables or disables file search in include_path optimization
  ;opcache.revalidate_path=&lt;span class=&quot;nu0&quot;&gt;0&lt;/span&gt;
***************
&lt;span class=&quot;re9&quot;&gt;*** 1805,1810 ****&lt;/span&gt;
&lt;span class=&quot;re3&quot;&gt;--- 1827,1833 ----&lt;/span&gt;
  ; If disabled, all PHPDoc comments are dropped from the code to reduce the
  ; size of the optimized code.
  ;opcache.save_comments=&lt;span class=&quot;nu0&quot;&gt;1&lt;/span&gt;
&lt;span class=&quot;re8&quot;&gt;+ opcache.save_comments=1&lt;/span&gt;
&amp;nbsp;
  ; Allow file existence override &lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;file_exists, etc.&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt; performance feature.
  ;opcache.enable_file_override=&lt;span class=&quot;nu0&quot;&gt;0&lt;/span&gt;&lt;/pre&gt;
&lt;/dd&gt;&lt;/dl&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;PHP configuration&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;php_configuration&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:11,&amp;quot;secid&amp;quot;:9,&amp;quot;range&amp;quot;:&amp;quot;9980-18892&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit10&quot; id=&quot;php_fpm&quot;&gt;PHP FPM&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; php-fpm.confの修正&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;dl class=&quot;code&quot;&gt;
&lt;dt&gt;&lt;a href=&quot;http://www.seirios.org/seirios/dokuwiki/doku.php?do=export_code&amp;amp;id=tweet:2020:1215_01&amp;amp;codeblock=12&quot; title=&quot;この部分をダウンロード&quot; class=&quot;mediafile mf_diff&quot;&gt;php-fpm.conf.diff&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;code diff&quot;&gt;&lt;span class=&quot;re9&quot;&gt;*** php-fpm.conf.default        Tue Dec  8 10:30:57 2020&lt;/span&gt;
&lt;span class=&quot;re3&quot;&gt;--- php-fpm.conf        Wed Dec 16 00:59:40 2020&lt;/span&gt;
***************
&lt;span class=&quot;re9&quot;&gt;*** 22,27 ****&lt;/span&gt;
&lt;span class=&quot;re3&quot;&gt;--- 22,28 ----&lt;/span&gt;
  ; Note: the default prefix is /var
  ; Default Value: log/php-fpm.log
  ;error_log = log/php-fpm.log
&lt;span class=&quot;re8&quot;&gt;+ error_log = log/php-fpm.log&lt;/span&gt;
&amp;nbsp;
  ; syslog_facility is used to specify what type of program is logging the
  ; message. This lets syslogd specify that messages from different facilities
***************
&lt;span class=&quot;re9&quot;&gt;*** 29,34 ****&lt;/span&gt;
&lt;span class=&quot;re3&quot;&gt;--- 30,36 ----&lt;/span&gt;
  ; See syslog&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;nu0&quot;&gt;3&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt; for possible values &lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;ex daemon equiv LOG_DAEMON&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;
  ; Default Value: daemon
  ;syslog.facility = daemon
&lt;span class=&quot;re8&quot;&gt;+ syslog.facility = daemon&lt;/span&gt;
&amp;nbsp;
  ; syslog_ident is prepended to every message. If you have multiple FPM
  ; instances running on the same server, you can change the default value&lt;/pre&gt;
&lt;/dd&gt;&lt;/dl&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; 以下を実行&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;pre class=&quot;code&quot;&gt;# touch /var/log/php-fpm.log
# chown www:www /var/log/php-fpm.log&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; php-fpm.d/www.confを変更&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;dl class=&quot;code&quot;&gt;
&lt;dt&gt;&lt;a href=&quot;http://www.seirios.org/seirios/dokuwiki/doku.php?do=export_code&amp;amp;id=tweet:2020:1215_01&amp;amp;codeblock=14&quot; title=&quot;この部分をダウンロード&quot; class=&quot;mediafile mf_diff&quot;&gt;php-fpm.d/www.conf.diff&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;code diff&quot;&gt;# diff -c www.conf www.conf.default
&lt;span class=&quot;re9&quot;&gt;*** www.conf    Wed Dec 16 01:05:44 2020&lt;/span&gt;
&lt;span class=&quot;re3&quot;&gt;--- www.conf.default    Tue Dec  8 10:30:57 2020&lt;/span&gt;
***************
&lt;span class=&quot;re9&quot;&gt;*** 42,48 ****&lt;/span&gt;
  ; Set listen&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;nu0&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt; backlog.
  ; Default Value: &lt;span class=&quot;nu0&quot;&gt;511&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;-&lt;span class=&quot;nu0&quot;&gt;1&lt;/span&gt; on FreeBSD and OpenBSD&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;
  ;listen.backlog = &lt;span class=&quot;nu0&quot;&gt;511&lt;/span&gt;
&lt;span class=&quot;re7&quot;&gt;- listen.backlog = -1&lt;/span&gt;
&amp;nbsp;
  ; Set permissions for unix socket, if one is used. In Linux, read/write
  ; permissions must be set in order to allow connections from a web server. Many
&lt;span class=&quot;re3&quot;&gt;--- 42,47 ----&lt;/span&gt;
***************
&lt;span class=&quot;re9&quot;&gt;*** 51,61 ****&lt;/span&gt;
  ; Default Values: user and group are set as the running user
  ;                 mode is set to 0660
  ;listen.owner = www
&lt;span class=&quot;re7&quot;&gt;- listen.owner = www&lt;/span&gt;
  ;listen.group = www
&lt;span class=&quot;re7&quot;&gt;- listen.group = www&lt;/span&gt;
  ;listen.mode = 0660
&lt;span class=&quot;re7&quot;&gt;- listen.mode = 0660&lt;/span&gt;
  ; When POSIX Access Control Lists are supported you can set them using
  ; these options, value is a comma separated list of user/group names.
  ; When set, listen.owner and listen.group are ignored
&lt;span class=&quot;re3&quot;&gt;--- 50,57 ----&lt;/span&gt;
***************
&lt;span class=&quot;re9&quot;&gt;*** 69,75 ****&lt;/span&gt;
  ; accepted from any ip address.
  ; Default Value: any
  ;listen.allowed_clients = 127.0.0.1
&lt;span class=&quot;re7&quot;&gt;- listen.allowed_clients = 127.0.0.1&lt;/span&gt;
&amp;nbsp;
  ; Specify the nice&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span class=&quot;nu0&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt; priority to apply to the pool processes &lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;only if set&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;
  ; The value can vary from -&lt;span class=&quot;nu0&quot;&gt;19&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;highest priority&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt; to &lt;span class=&quot;nu0&quot;&gt;20&lt;/span&gt; &lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;lower priority&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;
&lt;span class=&quot;re3&quot;&gt;--- 65,70 ----&lt;/span&gt;
***************
&lt;span class=&quot;re9&quot;&gt;*** 109,116 ****&lt;/span&gt;
  ;             pm.process_idle_timeout   - The number of seconds after which
  ;                                         an idle process will be killed.
  ; Note: This value is mandatory.
&lt;span class=&quot;re5&quot;&gt;! ;pm = dynamic&lt;/span&gt;
&lt;span class=&quot;re5&quot;&gt;! pm = static&lt;/span&gt;
&amp;nbsp;
  ; The number of child processes to be created when pm is set to &#039;static&#039; and the
  ; maximum number of child processes when pm is set to &#039;dynamic&#039; or &#039;ondemand&#039;.
&lt;span class=&quot;re3&quot;&gt;--- 104,110 ----&lt;/span&gt;
  ;             pm.process_idle_timeout   - The number of seconds after which
  ;                                         an idle process will be killed.
  ; Note: This value is mandatory.
&lt;span class=&quot;re5&quot;&gt;! pm = dynamic&lt;/span&gt;
&amp;nbsp;
  ; The number of child processes to be created when pm is set to &#039;static&#039; and the
  ; maximum number of child processes when pm is set to &#039;dynamic&#039; or &#039;ondemand&#039;.
***************
&lt;span class=&quot;re9&quot;&gt;*** 121,159 ****&lt;/span&gt;
  ; forget to tweak pm.* to fit your needs.
  ; Note: Used when pm is set to &#039;static&#039;, &#039;dynamic&#039; or &#039;ondemand&#039;
  ; Note: This value is mandatory.
&lt;span class=&quot;re5&quot;&gt;! ;pm.max_children = 5&lt;/span&gt;
&lt;span class=&quot;re5&quot;&gt;! pm.max_children = 8&lt;/span&gt;
&amp;nbsp;
  ; The number of child processes created on startup.
  ; Note: Used only when pm is set to &#039;dynamic&#039;
  ; Default Value: &lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;min_spare_servers + max_spare_servers&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt; / &lt;span class=&quot;nu0&quot;&gt;2&lt;/span&gt;
&lt;span class=&quot;re5&quot;&gt;! ;pm.start_servers = 2&lt;/span&gt;
&lt;span class=&quot;re5&quot;&gt;! pm.start_servers = 4&lt;/span&gt;
&amp;nbsp;
  ; The desired minimum number of idle server processes.
  ; Note: Used only when pm is set to &#039;dynamic&#039;
  ; Note: Mandatory when pm is set to &#039;dynamic&#039;
&lt;span class=&quot;re5&quot;&gt;! ;pm.min_spare_servers = 1&lt;/span&gt;
&lt;span class=&quot;re5&quot;&gt;! pm.min_spare_servers = 4&lt;/span&gt;
&amp;nbsp;
  ; The desired maximum number of idle server processes.
  ; Note: Used only when pm is set to &#039;dynamic&#039;
  ; Note: Mandatory when pm is set to &#039;dynamic&#039;
&lt;span class=&quot;re5&quot;&gt;! ;pm.max_spare_servers = 3&lt;/span&gt;
&lt;span class=&quot;re5&quot;&gt;! pm.max_spare_servers = 32&lt;/span&gt;
&amp;nbsp;
  ; The number of seconds after which an idle process will be killed.
  ; Note: Used only when pm is set to &#039;ondemand&#039;
  ; Default Value: 10s
  ;pm.process_idle_timeout = 10s;
&lt;span class=&quot;re7&quot;&gt;- pm.process_idle_timeout = 1000s;&lt;/span&gt;
&amp;nbsp;
  ; The number of requests each child process should execute before respawning.
  ; This can be useful to work around memory leaks in 3rd party libraries. For
  ; endless request processing specify &#039;&lt;span class=&quot;nu0&quot;&gt;0&lt;/span&gt;&#039;. Equivalent to PHP_FCGI_MAX_REQUESTS.
  ; Default Value: &lt;span class=&quot;nu0&quot;&gt;0&lt;/span&gt;
  ;pm.max_requests = &lt;span class=&quot;nu0&quot;&gt;500&lt;/span&gt;
&lt;span class=&quot;re7&quot;&gt;- pm.max_requests = 500&lt;/span&gt;
&amp;nbsp;
  ; The URI to view the FPM status page. If this value is not set, no URI will be
  ; recognized as a status page. It shows the following informations:
&lt;span class=&quot;re3&quot;&gt;--- 115,147 ----&lt;/span&gt;
  ; forget to tweak pm.* to fit your needs.
  ; Note: Used when pm is set to &#039;static&#039;, &#039;dynamic&#039; or &#039;ondemand&#039;
  ; Note: This value is mandatory.
&lt;span class=&quot;re5&quot;&gt;! pm.max_children = 5&lt;/span&gt;
&amp;nbsp;
  ; The number of child processes created on startup.
  ; Note: Used only when pm is set to &#039;dynamic&#039;
  ; Default Value: &lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;min_spare_servers + max_spare_servers&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt; / &lt;span class=&quot;nu0&quot;&gt;2&lt;/span&gt;
&lt;span class=&quot;re5&quot;&gt;! pm.start_servers = 2&lt;/span&gt;
&amp;nbsp;
  ; The desired minimum number of idle server processes.
  ; Note: Used only when pm is set to &#039;dynamic&#039;
  ; Note: Mandatory when pm is set to &#039;dynamic&#039;
&lt;span class=&quot;re5&quot;&gt;! pm.min_spare_servers = 1&lt;/span&gt;
&amp;nbsp;
  ; The desired maximum number of idle server processes.
  ; Note: Used only when pm is set to &#039;dynamic&#039;
  ; Note: Mandatory when pm is set to &#039;dynamic&#039;
&lt;span class=&quot;re5&quot;&gt;! pm.max_spare_servers = 3&lt;/span&gt;
&amp;nbsp;
  ; The number of seconds after which an idle process will be killed.
  ; Note: Used only when pm is set to &#039;ondemand&#039;
  ; Default Value: 10s
  ;pm.process_idle_timeout = 10s;
&amp;nbsp;
  ; The number of requests each child process should execute before respawning.
  ; This can be useful to work around memory leaks in 3rd party libraries. For
  ; endless request processing specify &#039;&lt;span class=&quot;nu0&quot;&gt;0&lt;/span&gt;&#039;. Equivalent to PHP_FCGI_MAX_REQUESTS.
  ; Default Value: &lt;span class=&quot;nu0&quot;&gt;0&lt;/span&gt;
  ;pm.max_requests = &lt;span class=&quot;nu0&quot;&gt;500&lt;/span&gt;
&amp;nbsp;
  ; The URI to view the FPM status page. If this value is not set, no URI will be
  ; recognized as a status page. It shows the following informations:
***************
&lt;span class=&quot;re9&quot;&gt;*** 355,361 ****&lt;/span&gt;
  ; Available units: s&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;econds&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;default&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;, m&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;inutes&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;, h&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;ours&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;, or d&lt;span class=&quot;br0&quot;&gt;&amp;#40;&lt;/span&gt;ays&lt;span class=&quot;br0&quot;&gt;&amp;#41;&lt;/span&gt;
  ; Default Value: &lt;span class=&quot;nu0&quot;&gt;0&lt;/span&gt;
  ;request_terminate_timeout = &lt;span class=&quot;nu0&quot;&gt;0&lt;/span&gt;
&lt;span class=&quot;re7&quot;&gt;- request_terminate_timeout = 0&lt;/span&gt;
&amp;nbsp;
  ; The timeout set by &#039;request_terminate_timeout&#039; ini option is not engaged after
  ; application calls &#039;fastcgi_finish_request&#039; or when application has finished and
&lt;span class=&quot;re3&quot;&gt;--- 343,348 ----&lt;/span&gt;
***************
&lt;span class=&quot;re9&quot;&gt;*** 368,374 ****&lt;/span&gt;
  ; Set open file descriptor rlimit.
  ; Default Value: system defined value
  ;rlimit_files = &lt;span class=&quot;nu0&quot;&gt;1024&lt;/span&gt;
&lt;span class=&quot;re7&quot;&gt;- rlimit_files = 51200&lt;/span&gt;
&amp;nbsp;
  ; Set max core size rlimit.
  ; Possible Values: &#039;unlimited&#039; or an integer greater or equal to &lt;span class=&quot;nu0&quot;&gt;0&lt;/span&gt;
&lt;span class=&quot;re3&quot;&gt;--- 355,360 ----&lt;/span&gt;
***************
&lt;span class=&quot;re9&quot;&gt;*** 426,440 ****&lt;/span&gt;
  ; the current environment.
  ; Default Value: clean env
  ;env&lt;span class=&quot;br0&quot;&gt;&amp;#91;&lt;/span&gt;HOSTNAME&lt;span class=&quot;br0&quot;&gt;&amp;#93;&lt;/span&gt; = $HOSTNAME
&lt;span class=&quot;re7&quot;&gt;- env&lt;span class=&quot;br0&quot;&gt;&amp;#91;&lt;/span&gt;HOSTNAME&lt;span class=&quot;br0&quot;&gt;&amp;#93;&lt;/span&gt; = $HOSTNAME&lt;/span&gt;
  ;env&lt;span class=&quot;br0&quot;&gt;&amp;#91;&lt;/span&gt;PATH&lt;span class=&quot;br0&quot;&gt;&amp;#93;&lt;/span&gt; = /usr/local/bin:/usr/bin:/bin
&lt;span class=&quot;re7&quot;&gt;- env&lt;span class=&quot;br0&quot;&gt;&amp;#91;&lt;/span&gt;PATH&lt;span class=&quot;br0&quot;&gt;&amp;#93;&lt;/span&gt; = /usr/local/bin:/usr/bin:/bin&lt;/span&gt;
  ;env&lt;span class=&quot;br0&quot;&gt;&amp;#91;&lt;/span&gt;TMP&lt;span class=&quot;br0&quot;&gt;&amp;#93;&lt;/span&gt; = /tmp
&lt;span class=&quot;re7&quot;&gt;- env&lt;span class=&quot;br0&quot;&gt;&amp;#91;&lt;/span&gt;TMP&lt;span class=&quot;br0&quot;&gt;&amp;#93;&lt;/span&gt; = /tmp&lt;/span&gt;
  ;env&lt;span class=&quot;br0&quot;&gt;&amp;#91;&lt;/span&gt;TMPDIR&lt;span class=&quot;br0&quot;&gt;&amp;#93;&lt;/span&gt; = /tmp
&lt;span class=&quot;re7&quot;&gt;- env&lt;span class=&quot;br0&quot;&gt;&amp;#91;&lt;/span&gt;TMPDIR&lt;span class=&quot;br0&quot;&gt;&amp;#93;&lt;/span&gt; = /tmp&lt;/span&gt;
  ;env&lt;span class=&quot;br0&quot;&gt;&amp;#91;&lt;/span&gt;TEMP&lt;span class=&quot;br0&quot;&gt;&amp;#93;&lt;/span&gt; = /tmp
&lt;span class=&quot;re7&quot;&gt;- env&lt;span class=&quot;br0&quot;&gt;&amp;#91;&lt;/span&gt;TEMP&lt;span class=&quot;br0&quot;&gt;&amp;#93;&lt;/span&gt; = /tmp&lt;/span&gt;
&amp;nbsp;
  ; Additional php.ini defines, specific to this pool of workers. These settings
  ; overwrite the values previously defined in the php.ini. The directives are the
&lt;span class=&quot;re3&quot;&gt;--- 412,421 ----&lt;/span&gt;&lt;/pre&gt;
&lt;/dd&gt;&lt;/dl&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;PHP FPM&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;php_fpm&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:12,&amp;quot;secid&amp;quot;:10,&amp;quot;range&amp;quot;:&amp;quot;18893-26088&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit11&quot; id=&quot;start_backend_service&quot;&gt;Start Backend service&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Backend Service を開始する&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;pre class=&quot;code&quot;&gt;# service postgresql start
# service postgresql status
# service php-fpm start
# service php-fpm status
# service memcached start
# service memcached status
# service nginx start&lt;/pre&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Start Backend service&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;start_backend_service&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:15,&amp;quot;secid&amp;quot;:11,&amp;quot;range&amp;quot;:&amp;quot;26089-26351&amp;quot;} --&gt;
&lt;h2 class=&quot;sectionedit12&quot; id=&quot;nextcloud_configuration&quot;&gt;Nextcloud Configuration&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; nextcloud/config/config.phpを編集(以下を追加)&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;pre class=&quot;code&quot;&gt;  &amp;#039;trusted_proxies&amp;#039;   =&amp;gt; [&amp;#039;10.1.201.128&amp;#039;,&amp;#039;10.1.201.129&amp;#039;,&amp;#039;10.1.201.130&amp;#039;],
  &amp;#039;overwriteprotocol&amp;#039; =&amp;gt; &amp;#039;https&amp;#039;,
  &amp;#039;overwritehost&amp;#039;     =&amp;gt; &amp;#039;hostname&amp;#039;,
  &amp;#039;memcache.local&amp;#039;       =&amp;gt; &amp;#039;\OC\Memcache\APCu&amp;#039;,
  &amp;#039;memcache.distributed&amp;#039; =&amp;gt; &amp;#039;\OC\Memcache\Memcached&amp;#039;,
  &amp;#039;memcached_servers&amp;#039;    =&amp;gt; [
       [ &amp;#039;127.0.0.1&amp;#039;, 11211 ],
  ],&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; BrowserからNextCloudにアクセスする&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; Top Pageに初期設定の画面が出力される&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; DB設定をPgSQLに変更する&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; Administrator Accountを作成する&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; loginしたら、設定から各種設定を確認し、挙動確認を行う&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Nextcloud Configuration&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;nextcloud_configuration&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:16,&amp;quot;secid&amp;quot;:12,&amp;quot;range&amp;quot;:&amp;quot;26352-27047&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit13&quot; id=&quot;log_rotation&quot;&gt;Log rotation&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; newsyslogでlogをRotationする設定を投入&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;pre class=&quot;code&quot;&gt;# mkdir /usr/local/etc/newsyslog.conf.d
# cd /usr/local/etc/newsyslog.conf.d
# vi nextcloud.conf nginx.conf php-fpm.conf&lt;/pre&gt;
&lt;dl class=&quot;code&quot;&gt;
&lt;dt&gt;&lt;a href=&quot;http://www.seirios.org/seirios/dokuwiki/doku.php?do=export_code&amp;amp;id=tweet:2020:1215_01&amp;amp;codeblock=18&quot; title=&quot;この部分をダウンロード&quot; class=&quot;mediafile mf_conf&quot;&gt;nextcloud.conf&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;code&quot;&gt;/some/where/nextcloud/data/nextcloud.log www:www 640 7 * @T00  JC&lt;/pre&gt;
&lt;/dd&gt;&lt;/dl&gt;
&lt;dl class=&quot;code&quot;&gt;
&lt;dt&gt;&lt;a href=&quot;http://www.seirios.org/seirios/dokuwiki/doku.php?do=export_code&amp;amp;id=tweet:2020:1215_01&amp;amp;codeblock=19&quot; title=&quot;この部分をダウンロード&quot; class=&quot;mediafile mf_conf&quot;&gt;nginx.conf&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;code&quot;&gt;/var/log/nginx/error.log          www:www     640  7     *    @T00  JC
/var/log/nginx/access.log         www:www     640  7     *    @T00  JC

/var/log/nginx/nextcloud.err      www:www     640  7     *    @T00  JC
/var/log/nginx/nextcloud.acc      www:www     640  7     *    @T00  JC&lt;/pre&gt;
&lt;/dd&gt;&lt;/dl&gt;
&lt;dl class=&quot;code&quot;&gt;
&lt;dt&gt;&lt;a href=&quot;http://www.seirios.org/seirios/dokuwiki/doku.php?do=export_code&amp;amp;id=tweet:2020:1215_01&amp;amp;codeblock=20&quot; title=&quot;この部分をダウンロード&quot; class=&quot;mediafile mf_conf&quot;&gt;php-fpm.conf&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;code&quot;&gt;/var/log/php-fpm.log                         www:www     640  7     *    @T00  JC&lt;/pre&gt;
&lt;/dd&gt;&lt;/dl&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Log rotation&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;log_rotation&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:17,&amp;quot;secid&amp;quot;:13,&amp;quot;range&amp;quot;:&amp;quot;27048-&amp;quot;} --&gt;</description>
            <author>seirios@undisclosed.example.com (seirios)</author>
            <pubDate>Wed, 16 Dec 2020 13:20:46 +0000</pubDate>
        </item>
        <item>
            <title>FreeBSDを用いたTraffic Generatorの構築 - 作成</title>
            <link>http://www.seirios.org/seirios/dokuwiki/doku.php?id=os:freebsd:trafficgenerator</link>
            <description>
&lt;h1 class=&quot;sectionedit1&quot; id=&quot;freebsdを用いたtraffic_generatorの構築&quot;&gt;FreeBSDを用いたTraffic Generatorの構築&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;

&lt;p&gt;
とある理由で、FreeBSDでTraffic Generatorを作成しなければならなくなった。
&lt;/p&gt;

&lt;p&gt;
というわけでその記録
&lt;/p&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;plugin_wrap_start&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;&amp;quot;,&amp;quot;secid&amp;quot;:2,&amp;quot;range&amp;quot;:&amp;quot;0-&amp;quot;} --&gt;&lt;div class=&quot;wrap_info wrap_round plugin_wrap&quot;&gt;
&lt;p&gt;
2020/08/21 現在、本記事は書きかけです。
&lt;/p&gt;
&lt;/div&gt;&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;plugin_wrap_end&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;&amp;quot;,&amp;quot;secid&amp;quot;:3,&amp;quot;range&amp;quot;:&amp;quot;0-&amp;quot;} --&gt;
&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;FreeBSD\u3092\u7528\u3044\u305fTraffic Generator\u306e\u69cb\u7bc9&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;freebsd\u3092\u7528\u3044\u305ftraffic_generator\u306e\u69cb\u7bc9&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:1,&amp;quot;range&amp;quot;:&amp;quot;1-272&amp;quot;} --&gt;
&lt;h2 class=&quot;sectionedit4&quot; id=&quot;hardwareの諸元&quot;&gt;Hardwareの諸元&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;
&lt;dl class=&quot;plugin_definitionlist&quot;&gt;
&lt;dt&gt;&lt;span class=&quot;term&quot;&gt; CPU&lt;/span&gt;&lt;/dt&gt;
&lt;dd&gt;AMD Ryzen7 PRO 4750G&lt;/dd&gt;
&lt;dt&gt;&lt;span class=&quot;term&quot;&gt; Motherboard&lt;/span&gt;&lt;/dt&gt;
&lt;dd&gt;ASRock B550M-ITX/AC&lt;/dd&gt;
&lt;dt&gt;&lt;span class=&quot;term&quot;&gt; Memory&lt;/span&gt;&lt;/dt&gt;
&lt;dd&gt;DDR4-3200 8G x2&lt;/dd&gt;
&lt;dt&gt;&lt;span class=&quot;term&quot;&gt; NIC&lt;/span&gt;&lt;/dt&gt;
&lt;dd&gt;HPE 560SFP+ (82599) 2port&lt;/dd&gt;
&lt;/dl&gt;

&lt;p&gt;
他に、Diskなどもあるが、この辺は影響はほぼないので割愛。&lt;br/&gt;

NICは、他に、HUAWEI CN21ITGH(Intel X710)を準備してある。
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;Hardware\u306e\u8af8\u5143&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;hardware\u306e\u8af8\u5143&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:4,&amp;quot;range&amp;quot;:&amp;quot;273-593&amp;quot;} --&gt;
&lt;h2 class=&quot;sectionedit5&quot; id=&quot;準備&quot;&gt;準備&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; FreeBSD 12.1-RELEASEをInstall&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; 追加は何も入れない。加えて、srcやlib32などはInstallしない&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; freebsd-update を実行して最新にする&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; /usr/src以下をsvnを用いて取得する&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;code&gt;svnlite checkout &lt;a href=&quot;https://svn0.us-west.FreeBSD.org/base/releng/12.1&quot; class=&quot;urlextern&quot; title=&quot;https://svn0.us-west.FreeBSD.org/base/releng/12.1&quot;&gt;https://svn0.us-west.FreeBSD.org/base/releng/12.1&lt;/a&gt; /usr/src&lt;/code&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;\u6e96\u5099&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;\u6e96\u5099&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:5,&amp;quot;range&amp;quot;:&amp;quot;594-918&amp;quot;} --&gt;
&lt;h2 class=&quot;sectionedit6&quot; id=&quot;以下_書きかけのメモ&quot;&gt;以下、書きかけのメモ&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;\u4ee5\u4e0b\u3001\u66f8\u304d\u304b\u3051\u306e\u30e1\u30e2&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;\u4ee5\u4e0b_\u66f8\u304d\u304b\u3051\u306e\u30e1\u30e2&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:6,&amp;quot;range&amp;quot;:&amp;quot;919-962&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit7&quot; id=&quot;とにかく_netmapの初期試験&quot;&gt;とにかく、netmapの初期試験&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;

&lt;p&gt;
どのように構成するにしても、netmapを利用して、NICにDirectにpacketを送り出した上でハードウェア的にどのくらい性能が出せそうかを見積もる必要がある。
また、そもそもNICがnetmapをどの程度利用できるかを確認する必要もあるので、予備試験。
&lt;/p&gt;

&lt;p&gt;
佐藤先生から頂いた、簡易試験用のscript
&lt;/p&gt;
&lt;dl class=&quot;code&quot;&gt;
&lt;dt&gt;&lt;a href=&quot;http://www.seirios.org/seirios/dokuwiki/doku.php?do=export_code&amp;amp;id=os:freebsd:trafficgenerator&amp;amp;codeblock=0&quot; title=&quot;この部分をダウンロード&quot; class=&quot;mediafile mf_sh&quot;&gt;netmap_test.sh&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;code&quot;&gt;#!/bin/sh
# ---- Configuration
SRCDIR=/usr/src
SRCIF=bge0
SRC_ADDR=192.168.100.104
DST_ADDR=192.168.100.2
FUNC=${1-tx}
#
COUNT=100
LEN=64
THREADS=1
# ----

# Copyright (c) 2020 Hiroki Sato &amp;lt;hrs@allbsd.org&amp;gt;
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS&amp;#039;&amp;#039; AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.

LOG=netmap_test-`date +%Y%m%d-%H%M%S`.log
err() { echo &amp;quot;ERROR: &amp;quot; $* 1&amp;gt;&amp;amp;2; exit 1; }
NETMAPDIR=$SRCDIR/tools/tools/netmap

# build pkg-gen first
(cd $NETMAPDIR &amp;amp;&amp;amp; make obj &amp;amp;&amp;amp; make)
case $? in
0)
	# do nothing
;;
*)
	err &amp;quot;building of pkg-gen failed.&amp;quot;
;;
esac
PKTGEN_CMD=`cd $NETMAPDIR &amp;amp;&amp;amp; make -V.OBJDIR`/pkt-gen
SRC_MAC=`arp -an | awk &amp;quot;/$SRC_ADDR/{print \\$4}&amp;quot;`
if [ -z &amp;quot;$SRC_MAC&amp;quot; ]; then
	err &amp;quot;$SRC_ADDR not found on this host.&amp;quot;
fi
if ping -o -c 2 $DST_ADDR &amp;gt; /dev/null 2&amp;gt;&amp;amp;1; then
	DST_MAC=`arp -an | awk &amp;quot;/$DST_ADDR/{print \\$4}&amp;quot;`
else
	err &amp;quot;$DST_ADDR did not respond.&amp;quot;
fi

CMD=&amp;quot;$PKTGEN_CMD
  -A
  -p $THREADS
  -c 0
  -f $FUNC
  -i $SRCIF
  -n $COUNT
  -l $LEN
  -s $SRC_ADDR
  -S $SRC_MAC
  -d $DST_ADDR
  -D $DST_MAC
&amp;quot;
(
	echo COMMAND: $CMD
	$CMD
) 2&amp;gt;&amp;amp;1 | tee $LOG
echo &amp;quot;--&amp;gt; logfile: $LOG&amp;quot;&lt;/pre&gt;
&lt;/dd&gt;&lt;/dl&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;\u3068\u306b\u304b\u304f\u3001netmap\u306e\u521d\u671f\u8a66\u9a13&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;\u3068\u306b\u304b\u304f_netmap\u306e\u521d\u671f\u8a66\u9a13&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:7,&amp;quot;range&amp;quot;:&amp;quot;963-3693&amp;quot;} --&gt;
&lt;h4 class=&quot;sectionedit8&quot; id=&quot;試験結果&quot;&gt;試験結果&lt;/h4&gt;
&lt;div class=&quot;level4&quot;&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;\u8a66\u9a13\u7d50\u679c&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;\u8a66\u9a13\u7d50\u679c&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:1,&amp;quot;secid&amp;quot;:8,&amp;quot;range&amp;quot;:&amp;quot;3694-&amp;quot;} --&gt;</description>
            <author>seirios@undisclosed.example.com (seirios)</author>
            <pubDate>Fri, 21 Aug 2020 09:44:34 +0000</pubDate>
        </item>
        <item>
            <title>FreeBSD で SR-IOV - [最後に] </title>
            <link>http://www.seirios.org/seirios/dokuwiki/doku.php?id=os:freebsd:intel82599</link>
            <description>
&lt;h1 class=&quot;sectionedit1&quot; id=&quot;freebsd_で_sr-iov&quot;&gt;FreeBSD で SR-IOV&lt;/h1&gt;
&lt;div class=&quot;level1&quot;&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;plugin_wrap_start&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;&amp;quot;,&amp;quot;secid&amp;quot;:2,&amp;quot;range&amp;quot;:&amp;quot;0-&amp;quot;} --&gt;&lt;div class=&quot;wrap_warning plugin_wrap&quot;&gt;
&lt;p&gt;
現時点(2020/08/19)で、本記事はまだ書きかけです。
&lt;/p&gt;
&lt;/div&gt;&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;plugin_wrap_end&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;&amp;quot;,&amp;quot;secid&amp;quot;:3,&amp;quot;range&amp;quot;:&amp;quot;0-&amp;quot;} --&gt;
&lt;p&gt;
FreeBSD 12.1-RELEASEでBHyve &amp;amp; SR-IOVをやってみようとしたのだが、SR-IOVがうまく動かないので、記録。
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;FreeBSD \u3067 SR-IOV&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;freebsd_\u3067_sr-iov&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:1,&amp;quot;range&amp;quot;:&amp;quot;1-254&amp;quot;} --&gt;
&lt;h2 class=&quot;sectionedit4&quot; id=&quot;pcの諸元&quot;&gt;PCの諸元&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; CPU: AMD Ryzen7 PRO 4750G&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Motherboard: ASRock B550M-ITX/AC&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; Memory: DDR4-3200 8G x2&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li class=&quot;level1 node&quot;&gt;&lt;div class=&quot;li&quot;&gt; NICには、IntelのX520 とHPEの560SFP+ を投入(実質は両方ともIntel 82599)&lt;/div&gt;
&lt;ul&gt;
&lt;li class=&quot;level2&quot;&gt;&lt;div class=&quot;li&quot;&gt; X540ではありません。&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;PC\u306e\u8af8\u5143&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;pc\u306e\u8af8\u5143&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:4,&amp;quot;range&amp;quot;:&amp;quot;255-500&amp;quot;} --&gt;
&lt;h2 class=&quot;sectionedit5&quot; id=&quot;試験&quot;&gt;試験&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;
最初、取得すべきlogファイルを間違えたり、データを間違えるなど、散々混乱した。混乱させて申し訳ありません＞各位
&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; OSをBoot Selectorから&lt;code&gt;boot -v&lt;/code&gt;で起動&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; 起動後、&lt;code&gt;iovctl -C -f /etc/iovctl.conf&lt;/code&gt;を実行&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; &lt;code&gt;iovctl -D -f /etc/iovctl.conf&lt;/code&gt;を実行&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; 再度&lt;code&gt;iovctl -C -f /etc/iovctl.conf&lt;/code&gt;を実行&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;
上記を、Intel X520-DA2とHPE 560SFP+で実行した。
&lt;/p&gt;

&lt;p&gt;
ここで、佐藤先生からkoを送っていただいたので、&lt;code&gt;/boot/kernel/if_(ix|ixv).ko&lt;/code&gt;を頂いたので、Driverをこれに変更して再度試験を行った。
この試験は、560SFP+で実行した。
&lt;/p&gt;
&lt;pre class=&quot;code&quot;&gt;# cd /boot/kernel
# cp if_ix.ko .if_ix.ko 
# cp if_ixv.ko .if_ixv.ko 
# cp ~/.../if_ix* /boot/kernel/
# kldxref /boot/kernel&lt;/pre&gt;

&lt;p&gt;
以下に X520-DA2 と 560SFP+ でFreeBSDの標準デバイスドライバで起動した際の&lt;code&gt;dmesg.boot&lt;/code&gt;と&lt;code&gt;/var/log/messages&lt;/code&gt;を掲載する。
その次に、頂いたkoでの&lt;code&gt;dmesg.boot&lt;/code&gt;と&lt;code&gt;/var/log/messages&lt;/code&gt;を掲載する。
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;\u8a66\u9a13&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;\u8a66\u9a13&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:0,&amp;quot;secid&amp;quot;:5,&amp;quot;range&amp;quot;:&amp;quot;501-1557&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit6&quot; id=&quot;x520-da2&quot;&gt;X520-DA2&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;
&lt;dl class=&quot;code&quot;&gt;
&lt;dt&gt;&lt;a href=&quot;http://www.seirios.org/seirios/dokuwiki/doku.php?do=export_code&amp;amp;id=os:freebsd:intel82599&amp;amp;codeblock=1&quot; title=&quot;この部分をダウンロード&quot; class=&quot;mediafile mf_boot&quot;&gt;dmesg.boot&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;code&quot;&gt;SMP: Added CPU 4 (AP)
MADT: Found CPU APIC ID 6 ACPI ID 6: enabled
SMP: Added CPU 6 (AP)
MADT: Found CPU APIC ID 8 ACPI ID 8: enabled
SMP: Added CPU 8 (AP)
MADT: Found CPU APIC ID 10 ACPI ID 10: enabled
SMP: Added CPU 10 (AP)
MADT: Found CPU APIC ID 12 ACPI ID 12: enabled
SMP: Added CPU 12 (AP)
MADT: Found CPU APIC ID 14 ACPI ID 14: enabled
SMP: Added CPU 14 (AP)
MADT: Found CPU APIC ID 1 ACPI ID 1: enabled
SMP: Added CPU 1 (AP)
MADT: Found CPU APIC ID 3 ACPI ID 3: enabled
SMP: Added CPU 3 (AP)
MADT: Found CPU APIC ID 5 ACPI ID 5: enabled
SMP: Added CPU 5 (AP)
MADT: Found CPU APIC ID 7 ACPI ID 7: enabled
SMP: Added CPU 7 (AP)
MADT: Found CPU APIC ID 9 ACPI ID 9: enabled
SMP: Added CPU 9 (AP)
MADT: Found CPU APIC ID 11 ACPI ID 11: enabled
SMP: Added CPU 11 (AP)
MADT: Found CPU APIC ID 13 ACPI ID 13: enabled
SMP: Added CPU 13 (AP)
MADT: Found CPU APIC ID 15 ACPI ID 15: enabled
SMP: Added CPU 15 (AP)
MADT: Found CPU APIC ID 0 ACPI ID 16: disabled
MADT: Found CPU APIC ID 0 ACPI ID 17: disabled
MADT: Found CPU APIC ID 0 ACPI ID 18: disabled
MADT: Found CPU APIC ID 0 ACPI ID 19: disabled
MADT: Found CPU APIC ID 0 ACPI ID 20: disabled
MADT: Found CPU APIC ID 0 ACPI ID 21: disabled
MADT: Found CPU APIC ID 0 ACPI ID 22: disabled
MADT: Found CPU APIC ID 0 ACPI ID 23: disabled
MADT: Found CPU APIC ID 0 ACPI ID 24: disabled
MADT: Found CPU APIC ID 0 ACPI ID 25: disabled
MADT: Found CPU APIC ID 0 ACPI ID 26: disabled
MADT: Found CPU APIC ID 0 ACPI ID 27: disabled
MADT: Found CPU APIC ID 0 ACPI ID 28: disabled
MADT: Found CPU APIC ID 0 ACPI ID 29: disabled
MADT: Found CPU APIC ID 0 ACPI ID 30: disabled
MADT: Found CPU APIC ID 0 ACPI ID 31: disabled
Event timer &amp;quot;LAPIC&amp;quot; quality 600
LAPIC: ipi_wait() us multiplier 21 (r 16723908 tsc 3593321748)
ACPI APIC Table: &amp;lt;ALASKA A M I &amp;gt;
Package ID shift: 7
L3 cache ID shift: 3
L2 cache ID shift: 1
L1 cache ID shift: 1
Core ID shift: 1
INTR: Adding local APIC 2 as a target
INTR: Adding local APIC 4 as a target
INTR: Adding local APIC 6 as a target
INTR: Adding local APIC 8 as a target
INTR: Adding local APIC 10 as a target
INTR: Adding local APIC 12 as a target
INTR: Adding local APIC 14 as a target
FreeBSD/SMP: Multiprocessor System Detected: 16 CPUs
FreeBSD/SMP: 1 package(s) x 2 cache groups x 4 core(s) x 2 hardware threads
Package HW ID = 0
	Core HW ID = 0
		CPU0 (BSP): APIC ID: 0
		CPU1 (AP/HT): APIC ID: 1
	Core HW ID = 1
		CPU2 (AP): APIC ID: 2
		CPU3 (AP/HT): APIC ID: 3
	Core HW ID = 2
		CPU4 (AP): APIC ID: 4
		CPU5 (AP/HT): APIC ID: 5
	Core HW ID = 3
		CPU6 (AP): APIC ID: 6
		CPU7 (AP/HT): APIC ID: 7
	Core HW ID = 4
		CPU8 (AP): APIC ID: 8
		CPU9 (AP/HT): APIC ID: 9
	Core HW ID = 5
		CPU10 (AP): APIC ID: 10
		CPU11 (AP/HT): APIC ID: 11
	Core HW ID = 6
		CPU12 (AP): APIC ID: 12
		CPU13 (AP/HT): APIC ID: 13
	Core HW ID = 7
		CPU14 (AP): APIC ID: 14
		CPU15 (AP/HT): APIC ID: 15
APIC: CPU 0 has ACPI ID 0
APIC: CPU 1 has ACPI ID 1
APIC: CPU 2 has ACPI ID 2
APIC: CPU 3 has ACPI ID 3
APIC: CPU 4 has ACPI ID 4
APIC: CPU 5 has ACPI ID 5
APIC: CPU 6 has ACPI ID 6
APIC: CPU 7 has ACPI ID 7
APIC: CPU 8 has ACPI ID 8
APIC: CPU 9 has ACPI ID 9
APIC: CPU 10 has ACPI ID 10
APIC: CPU 11 has ACPI ID 11
APIC: CPU 12 has ACPI ID 12
APIC: CPU 13 has ACPI ID 13
APIC: CPU 14 has ACPI ID 14
APIC: CPU 15 has ACPI ID 15
x86bios:  IVT 0x000000-0x0004ff at 0xfffff80000000000
x86bios: SSEG 0x09e000-0x09efff at 0xfffffe0003fb4000
x86bios:  ROM 0x0a0000-0x0fefff at 0xfffff800000a0000
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 7
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 8
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 9
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 10
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 11
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 12
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 13
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 14
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 17
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 18
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 19
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 20
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 27
Pentium Pro MTRR support enabled
random: read 3840 bytes from preloaded cache
random: unblocking device.
arc4random: read 32 bytes from preloaded cache
VIMAGE (virtualized network stack) enabled
ULE: setup cpu 0
ULE: setup cpu 1
ULE: setup cpu 2
ULE: setup cpu 3
ULE: setup cpu 4
ULE: setup cpu 5
ULE: setup cpu 6
ULE: setup cpu 7
ULE: setup cpu 8
ULE: setup cpu 9
ULE: setup cpu 10
ULE: setup cpu 11
ULE: setup cpu 12
ULE: setup cpu 13
ULE: setup cpu 14
ULE: setup cpu 15
ACPI: RSDP 0x00000000CBFF5014 000024 (v02 ALASKA)
ACPI: XSDT 0x00000000CBFF4728 0000DC (v01 ALASKA A M I    01072009 AMI  01000013)
ACPI: FACP 0x00000000CAA32000 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
ACPI: DSDT 0x00000000CAA2B000 006218 (v02 ALASKA A M I    01072009 INTL 20120913)
ACPI: FACS 0x00000000CAFEF000 000040
ACPI: SSDT 0x00000000CAA38000 007229 (v02 AMD    AmdTable 00000002 MSFT 04000000)
ACPI: SSDT 0x00000000CAA34000 003A78 (v01 AMD    AMD AOD  00000001 INTL 20120913)
ACPI: SSDT 0x00000000CAA33000 000221 (v02 ALASKA CPUSSDT  01072009 AMI  01072009)
ACPI: FIDT 0x00000000CAA2A000 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
ACPI: MCFG 0x00000000CAA29000 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
ACPI: AAFT 0x00000000CAA28000 0000ED (v01 ALASKA OEMAAFT  01072009 MSFT 00000097)
ACPI: HPET 0x00000000CAA27000 000038 (v01 ALASKA A M I    01072009 AMI  00000005)
ACPI: VFCT 0x00000000CAA19000 00D484 (v01 ALASKA A M I    00000001 AMD  31504F47)
ACPI: BGRT 0x00000000CAA18000 000038 (v01 ALASKA A M I    01072009 AMI  00010013)
ACPI: SSDT 0x00000000CAA14000 0035A4 (v02 AMD    AmdTable 00000001 AMD  00000001)
ACPI: CRAT 0x00000000CAA13000 000F28 (v01 AMD    AmdTable 00000001 AMD  00000001)
ACPI: CDIT 0x00000000CAA12000 000029 (v01 AMD    AmdTable 00000001 AMD  00000001)
ACPI: SSDT 0x00000000CAA11000 000D37 (v01 AMD    AmdTable 00000001 INTL 20120913)
ACPI: SSDT 0x00000000CAA0F000 0010A5 (v01 AMD    AmdTable 00000001 INTL 20120913)
ACPI: SSDT 0x00000000CAA0B000 00326A (v01 AMD    AmdTable 00000001 INTL 20120913)
ACPI: WSMT 0x00000000CAA0A000 000028 (v01 ALASKA A M I    01072009 AMI  00010013)
ACPI: APIC 0x00000000CAA09000 00015E (v03 ALASKA A M I    01072009 AMI  00010013)
ACPI: SSDT 0x00000000CAA08000 000517 (v01 AMD    AmdTable 00000001 INTL 20120913)
ACPI: SSDT 0x00000000CAA07000 00007D (v01 AMD    AmdTable 00000001 INTL 20120913)
ACPI: SSDT 0x00000000CAA05000 0010AF (v01 AMD    AmdTable 00000001 INTL 20120913)
ACPI: SSDT 0x00000000CAA04000 0000BF (v01 AMD    AmdTable 00001000 INTL 20120913)
ACPI: FPDT 0x00000000CAA03000 000044 (v01 ALASKA A M I    01072009 AMI  01000013)
MADT: Found IO APIC ID 17, Interrupt 0 at 0xfec00000
ioapic0: Changing APIC ID to 17
ioapic0: ver 0x21 maxredir 0x17
ioapic0: Routing external 8259A&amp;#039;s -&amp;gt; intpin 0
MADT: Found IO APIC ID 18, Interrupt 24 at 0xfec01000
ioapic1: Changing APIC ID to 18
ioapic1: ver 0x21 maxredir 0x1f
lapic: Routing NMI -&amp;gt; LINT1
lapic: LINT1 trigger: edge
lapic: LINT1 polarity: high
MADT: Interrupt override: source 0, irq 2
ioapic0: Routing IRQ 0 -&amp;gt; intpin 2
MADT: Interrupt override: source 9, irq 9
ioapic0: intpin 9 trigger: level
ioapic0: intpin 9 polarity: low
ioapic0 &amp;lt;Version 2.1&amp;gt; irqs 0-23 on motherboard
ioapic1 &amp;lt;Version 2.1&amp;gt; irqs 24-55 on motherboard
lapic: Divisor 2, Frequency 49907244 Hz
cpu0 BSP:
     ID: 0x00000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic14: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic14: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic14: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic14: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic14: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic14: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #14 Launched!
cpu14 AP:
     ID: 0x0e000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic13: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic13: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic13: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic13: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic13: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic13: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #13 Launched!
cpu13 AP:
     ID: 0x0d000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic12: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic12: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic12: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic12: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic12: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic12: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #12 Launched!
cpu12 AP:
     ID: 0x0c000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic9: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic9: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic9: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic9: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic9: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic9: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #9 Launched!
cpu9 AP:
     ID: 0x09000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic7: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic7: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic7: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic7: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic7: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic7: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #7 Launched!
cpu7 AP:
     ID: 0x07000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic15: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic15: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic15: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic15: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic15: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic15: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #15 Launched!
cpu15 AP:
     ID: 0x0f000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic11: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic11: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic11: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic11: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic11: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic11: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #11 Launched!
cpu11 AP:
     ID: 0x0b000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic1: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic1: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic1: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic1: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic1: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic1: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #1 Launched!
cpu1 AP:
     ID: 0x01000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic5: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic5: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic5: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic5: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic5: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic5: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #5 Launched!
cpu5 AP:
     ID: 0x05000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic2: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic2: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic2: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic2: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic2: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic2: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #2 Launched!
cpu2 AP:
     ID: 0x02000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic8: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic8: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic8: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic8: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic8: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic8: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #8 Launched!
cpu8 AP:
     ID: 0x08000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic3: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic3: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic3: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic3: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic3: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic3: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #3 Launched!
cpu3 AP:
     ID: 0x03000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic6: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic6: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic6: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic6: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic6: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic6: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #6 Launched!
cpu6 AP:
     ID: 0x06000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic4: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic4: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic4: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic4: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic4: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic4: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #4 Launched!
cpu4 AP:
     ID: 0x04000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic10: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic10: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic10: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic10: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic10: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic10: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #10 Launched!
cpu10 AP:
     ID: 0x0a000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
SMP: failed TSC synchronization test
TSC timecounter discards lower 1 bit(s)
Timecounter &amp;quot;TSC-low&amp;quot; frequency 1796660874 Hz quality -100
wlan: &amp;lt;802.11 Link Layer&amp;gt;
snd_unit_init() u=0x00ff8000 [512] d=0x00007c00 [32] c=0x000003ff [1024]
feeder_register: snd_unit=-1 snd_maxautovchans=16 latency=2 feeder_rate_min=1 feeder_rate_max=2016000 feeder_rate_round=25
random: entropy device external interface
mem: &amp;lt;memory&amp;gt;
000.000019 [4335] netmap_init               netmap: loaded module
null: &amp;lt;full device, null device, zero device&amp;gt;
[ath_hal] loaded
nfslock: pseudo-device
crypto: &amp;lt;crypto core&amp;gt;
tcp_log: tcp_log device
module_register_init: MOD_LOAD (vesa, 0xffffffff8112e0f0, 0) error 19
io: &amp;lt;I/O&amp;gt;
random: registering fast source Intel Secure Key RNG
random: fast provider: &amp;quot;Intel Secure Key RNG&amp;quot;
kbd: new array size 4
kbd1 at kbdmux0
hpt27xx: RocketRAID 27xx controller driver v1.2.8
hptnr: R750/DC7280 controller driver v1.1.5
hptrr: RocketRAID 17xx/2xxx SATA controller driver v1.2
nexus0
efirtc0: &amp;lt;EFI Realtime Clock&amp;gt; on motherboard
efirtc0: registered as a time-of-day clock, resolution 1.000000s
cryptosoft0: &amp;lt;software crypto&amp;gt; on motherboard
crypto: assign cryptosoft0 driver id 0, flags 0x6000000
crypto: cryptosoft0 registers alg 1 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 2 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 3 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 4 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 5 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 16 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 6 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 7 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 32 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 18 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 19 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 20 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 8 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 15 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 9 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 10 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 13 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 14 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 34 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 35 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 36 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 37 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 11 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 22 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 23 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 25 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 24 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 26 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 27 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 28 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 21 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 17 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 29 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 30 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 31 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 40 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 39 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 38 flags 0 maxoplen 0
acpi0: &amp;lt;ALASKA A M I &amp;gt; on motherboard
ACPI: 12 ACPI AML tables successfully acquired and loaded
PCIe: Memory Mapped configuration base @ 0xf0000000
ioapic0: routing intpin 9 (ISA IRQ 9) to lapic 0 vector 48
acpi0: Power Button (fixed)
acpi0: wakeup code va 0xfffffe0003fff000 pa 0x9c000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
attimer0: &amp;lt;AT timer&amp;gt; port 0x40-0x43 irq 0 on acpi0
Timecounter &amp;quot;i8254&amp;quot; frequency 1193182 Hz quality 0
ioapic0: routing intpin 2 (ISA IRQ 0) to lapic 2 vector 48
Event timer &amp;quot;i8254&amp;quot; frequency 1193182 Hz quality 100
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
atrtc0: &amp;lt;AT realtime clock&amp;gt; port 0x70-0x71 on acpi0
atrtc0: registered as a time-of-day clock, resolution 1.000000s
ioapic0: routing intpin 8 (ISA IRQ 8) to lapic 4 vector 48
ioapic0: routing intpin 8 (ISA IRQ 8) to lapic 0 vector 49
Event timer &amp;quot;RTC&amp;quot; frequency 32768 Hz quality 0
hpet0: &amp;lt;High Precision Event Timer&amp;gt; iomem 0xfed00000-0xfed003ff irq 0,8 on acpi0
hpet0: vendor 0x1022, rev 0x1, 14318180Hz, 3 timers, legacy route
hpet0:  t0: irqs 0x00c00000 (0), MSI, periodic
hpet0:  t1: irqs 0x00c00000 (0), MSI, periodic
hpet0:  t2: irqs 0x00c00000 (0), MSI, periodic
Timecounter &amp;quot;HPET&amp;quot; frequency 14318180 Hz quality 950
msi: routing MSI-X IRQ 256 to local APIC 6 vector 48
msi: routing MSI-X IRQ 257 to local APIC 8 vector 48
msi: routing MSI-X IRQ 258 to local APIC 10 vector 48
msi: Assigning MSI-X IRQ 256 to local APIC 0 vector 50
msi: Assigning MSI-X IRQ 257 to local APIC 0 vector 51
msi: Assigning MSI-X IRQ 258 to local APIC 0 vector 52
Event timer &amp;quot;HPET&amp;quot; frequency 14318180 Hz quality 350
Event timer &amp;quot;HPET1&amp;quot; frequency 14318180 Hz quality 350
Event timer &amp;quot;HPET2&amp;quot; frequency 14318180 Hz quality 350
ACPI timer: 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/2 -&amp;gt; 10
Timecounter &amp;quot;ACPI-fast&amp;quot; frequency 3579545 Hz quality 900
acpi_timer0: &amp;lt;32-bit timer at 3.579545MHz&amp;gt; port 0x808-0x80b on acpi0
pci_link0:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
pci_link1:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
pci_link2:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
pci_link3:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
pci_link4:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
pci_link5:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
pci_link6:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
pci_link7:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
pcib0: &amp;lt;ACPI Host-PCI bridge&amp;gt; port 0xcf8-0xcff on acpi0
pcib0: decoding 5 range 0-0xff
pcib0: decoding 4 range 0-0x3af
pcib0: decoding 4 range 0x3e0-0xcf7
pcib0: decoding 4 range 0x3b0-0x3df
pcib0: decoding 4 range 0xd00-0xffff
pcib0: decoding 3 range 0xa0000-0xbffff
pcib0: decoding 3 range 0xc0000-0xdffff
pcib0: decoding 3 range 0xd0000000-0xfec2ffff
pcib0: decoding 3 range 0xfee00000-0xffffffff
pci0: &amp;lt;ACPI PCI bus&amp;gt; on pcib0
pci0: domain=0, physical bus=0
found-&amp;gt;	vendor=0x1022, dev=0x1630, revid=0x00
	domain=0, bus=0, slot=0, func=0
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x1632, revid=0x00
	domain=0, bus=0, slot=1, func=0
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x1633, revid=0x00
	domain=0, bus=0, slot=1, func=1
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=1, subbus=2
found-&amp;gt;	vendor=0x1022, dev=0x1632, revid=0x00
	domain=0, bus=0, slot=2, func=0
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x1634, revid=0x00
	domain=0, bus=0, slot=2, func=1
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=3, subbus=12
found-&amp;gt;	vendor=0x1022, dev=0x1632, revid=0x00
	domain=0, bus=0, slot=8, func=0
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x1635, revid=0x00
	domain=0, bus=0, slot=8, func=1
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=13, subbus=13
found-&amp;gt;	vendor=0x1022, dev=0x790b, revid=0x51
	domain=0, bus=0, slot=20, func=0
	class=0c-05-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0403, statreg=0x0220, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x790e, revid=0x51
	domain=0, bus=0, slot=20, func=3
	class=06-01-00, hdrtype=0x00, mfdev=1
	cmdreg=0x000f, statreg=0x0220, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x1448, revid=0x00
	domain=0, bus=0, slot=24, func=0
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x1449, revid=0x00
	domain=0, bus=0, slot=24, func=1
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x144a, revid=0x00
	domain=0, bus=0, slot=24, func=2
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x144b, revid=0x00
	domain=0, bus=0, slot=24, func=3
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x144c, revid=0x00
	domain=0, bus=0, slot=24, func=4
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x144d, revid=0x00
	domain=0, bus=0, slot=24, func=5
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x144e, revid=0x00
	domain=0, bus=0, slot=24, func=6
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x144f, revid=0x00
	domain=0, bus=0, slot=24, func=7
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
pcib1: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 1.1 on pci0
pcib0: allocated type 4 (0xf000-0xffff) for rid 1c of pcib1
pcib0: allocated type 3 (0xfc200000-0xfc8fffff) for rid 20 of pcib1
pcib1:   domain            0
pcib1:   secondary bus     1
pcib1:   subordinate bus   2
pcib1:   I/O decode        0xf000-0xffff
pcib1:   memory decode     0xfc200000-0xfc8fffff
pci1: &amp;lt;ACPI PCI bus&amp;gt; on pcib1
pcib1: allocated bus range (1-1) for rid 0 of pci1
pci1: domain=0, physical bus=1
found-&amp;gt;	vendor=0x8086, dev=0x154d, revid=0x01
	domain=0, bus=1, slot=0, func=0
	class=02-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit, vector masks
	MSI-X supports 64 messages in map 0x20
	map[10]: type Memory, range 64, base 0xfc380000, size 19, enabled
pcib1: allocated memory range (0xfc380000-0xfc3fffff) for rid 10 of pci0:1:0:0
	map[18]: type I/O Port, range 32, base 0xf020, size  5, enabled
pcib1: allocated I/O port range (0xf020-0xf03f) for rid 18 of pci0:1:0:0
	map[20]: type Memory, range 64, base 0xfc804000, size 14, enabled
pcib1: allocated memory range (0xfc804000-0xfc807fff) for rid 20 of pci0:1:0:0
found-&amp;gt;	vendor=0x8086, dev=0x154d, revid=0x01
	domain=0, bus=1, slot=0, func=1
	class=02-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=b, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit, vector masks
	MSI-X supports 64 messages in map 0x20
	map[10]: type Memory, range 64, base 0xfc280000, size 19, enabled
pcib1: allocated memory range (0xfc280000-0xfc2fffff) for rid 10 of pci0:1:0:1
	map[18]: type I/O Port, range 32, base 0xf000, size  5, enabled
pcib1: allocated I/O port range (0xf000-0xf01f) for rid 18 of pci0:1:0:1
	map[20]: type Memory, range 64, base 0xfc800000, size 14, enabled
pcib1: allocated memory range (0xfc800000-0xfc803fff) for rid 20 of pci0:1:0:1
ix0: &amp;lt;Intel(R) PRO/10GbE PCI-Express Network Driver, Version - 3.3.14&amp;gt; port 0xf020-0xf03f mem 0xfc380000-0xfc3fffff,0xfc804000-0xfc807fff at device 0.0 on pci1
ix0: attempting to allocate 9 MSI-X vectors (64 supported)
msi: routing MSI-X IRQ 259 to local APIC 12 vector 48
msi: routing MSI-X IRQ 260 to local APIC 14 vector 48
msi: routing MSI-X IRQ 261 to local APIC 0 vector 53
msi: routing MSI-X IRQ 262 to local APIC 2 vector 49
msi: routing MSI-X IRQ 263 to local APIC 4 vector 48
msi: routing MSI-X IRQ 264 to local APIC 6 vector 48
msi: routing MSI-X IRQ 265 to local APIC 8 vector 48
msi: routing MSI-X IRQ 266 to local APIC 10 vector 48
msi: routing MSI-X IRQ 267 to local APIC 12 vector 49
ix0: using IRQs 259-267 for MSI-X
ix0: Using MSI-X interrupts with 9 vectors
ix0: bpf attached
ix0: Ethernet address: a0:36:9f:0c:e5:c4
msi: Assigning MSI-X IRQ 259 to local APIC 0 vector 54
msi: Assigning MSI-X IRQ 260 to local APIC 1 vector 48
msi: Assigning MSI-X IRQ 261 to local APIC 2 vector 50
msi: Assigning MSI-X IRQ 262 to local APIC 3 vector 48
msi: Assigning MSI-X IRQ 264 to local APIC 5 vector 48
msi: Assigning MSI-X IRQ 265 to local APIC 6 vector 48
msi: Assigning MSI-X IRQ 266 to local APIC 7 vector 48
ix0: PCI Express Bus: Speed 5.0GT/s Width x8
ix1: &amp;lt;Intel(R) PRO/10GbE PCI-Express Network Driver, Version - 3.3.14&amp;gt; port 0xf000-0xf01f mem 0xfc280000-0xfc2fffff,0xfc800000-0xfc803fff at device 0.1 on pci1
ix1: attempting to allocate 9 MSI-X vectors (64 supported)
msi: routing MSI-X IRQ 268 to local APIC 14 vector 48
msi: routing MSI-X IRQ 269 to local APIC 0 vector 53
msi: routing MSI-X IRQ 270 to local APIC 2 vector 49
msi: routing MSI-X IRQ 271 to local APIC 4 vector 49
msi: routing MSI-X IRQ 272 to local APIC 6 vector 49
msi: routing MSI-X IRQ 273 to local APIC 8 vector 48
msi: routing MSI-X IRQ 274 to local APIC 10 vector 48
msi: routing MSI-X IRQ 275 to local APIC 12 vector 48
msi: routing MSI-X IRQ 276 to local APIC 14 vector 49
ix1: using IRQs 268-276 for MSI-X
ix1: Using MSI-X interrupts with 9 vectors
ix1: bpf attached
ix1: Ethernet address: a0:36:9f:0c:e5:c6
msi: Assigning MSI-X IRQ 268 to local APIC 0 vector 55
msi: Assigning MSI-X IRQ 269 to local APIC 1 vector 49
msi: Assigning MSI-X IRQ 271 to local APIC 3 vector 49
msi: Assigning MSI-X IRQ 272 to local APIC 4 vector 49
msi: Assigning MSI-X IRQ 273 to local APIC 5 vector 49
msi: Assigning MSI-X IRQ 274 to local APIC 6 vector 49
msi: Assigning MSI-X IRQ 275 to local APIC 7 vector 49
ix1: PCI Express Bus: Speed 5.0GT/s Width x8
pcib2: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 2.1 on pci0
pcib0: allocated type 4 (0xe000-0xefff) for rid 1c of pcib2
pcib0: allocated type 3 (0xfcd00000-0xfcffffff) for rid 20 of pcib2
pcib2:   domain            0
pcib2:   secondary bus     3
pcib2:   subordinate bus   12
pcib2:   I/O decode        0xe000-0xefff
pcib2:   memory decode     0xfcd00000-0xfcffffff
pci2: &amp;lt;ACPI PCI bus&amp;gt; on pcib2
pcib2: allocated bus range (3-3) for rid 0 of pci2
pci2: domain=0, physical bus=3
found-&amp;gt;	vendor=0x1022, dev=0x43ee, revid=0x00
	domain=0, bus=3, slot=0, func=0
	class=0c-03-30, hdrtype=0x00, mfdev=1
	cmdreg=0x0006, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 8 messages, 64 bit
	MSI-X supports 8 messages in map 0x10
	map[10]: type Memory, range 64, base 0xfcfa0000, size 15, enabled
pcib2: allocated memory range (0xfcfa0000-0xfcfa7fff) for rid 10 of pci0:3:0:0
found-&amp;gt;	vendor=0x1022, dev=0x43eb, revid=0x00
	domain=0, bus=3, slot=0, func=1
	class=01-06-01, hdrtype=0x00, mfdev=1
	cmdreg=0x0006, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=b, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[24]: type Memory, range 32, base 0xfcf80000, size 17, enabled
pcib2: allocated memory range (0xfcf80000-0xfcf9ffff) for rid 24 of pci0:3:0:1
found-&amp;gt;	vendor=0x1022, dev=0x43e9, revid=0x00
	domain=0, bus=3, slot=0, func=2
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=4, subbus=12
pcib2: allocated bus range (4-12) for rid 0 of pci0:3:0:2
xhci0: &amp;lt;XHCI (generic) USB 3.0 controller&amp;gt; mem 0xfcfa0000-0xfcfa7fff at device 0.0 on pci2
xhci0: 32 bytes context size, 64-bit DMA
xhci0: Unable to map MSI-X table
xhci0: attempting to allocate 1 MSI vectors (8 supported)
msi: routing MSI IRQ 277 to local APIC 0 vector 53
xhci0: using IRQ 277 for MSI
xhci0: MSI enabled
usbus0 on xhci0
xhci0: usbpf: Attached
usbus0: 5.0Gbps Super Speed USB v3.0
ahci0: &amp;lt;AHCI SATA controller&amp;gt; mem 0xfcf80000-0xfcf9ffff at device 0.1 on pci2
ahci0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 278 to local APIC 2 vector 51
ahci0: using IRQ 278 for MSI
ahci0: AHCI v1.31 with 6 6Gbps ports, Port Multiplier supported
ahci0: Caps: 64bit NCQ SNTF SS ALP AL CLO 6Gbps PM PMD SSC PSC 32cmd eSATA 6ports
ahci0: Caps2: DESO SADM SDS APST
ahcich0: &amp;lt;AHCI channel&amp;gt; at channel 0 on ahci0
ahcich0: Caps: HPCP
ahcich1: &amp;lt;AHCI channel&amp;gt; at channel 1 on ahci0
ahcich1: Caps: HPCP
ahcich2: &amp;lt;AHCI channel&amp;gt; at channel 2 on ahci0
ahcich2: Caps: HPCP
ahcich3: &amp;lt;AHCI channel&amp;gt; at channel 3 on ahci0
ahcich3: Caps: HPCP
ahcich4: &amp;lt;AHCI channel&amp;gt; at channel 4 on ahci0
ahcich4: Caps: HPCP
ahcich5: &amp;lt;AHCI channel&amp;gt; at channel 5 on ahci0
ahcich5: Caps: HPCP
pcib3: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 0.2 on pci2
pcib2: allocated I/O port range (0xe000-0xefff) for rid 1c of pcib3
pcib2: allocated memory range (0xfcd00000-0xfcefffff) for rid 20 of pcib3
pcib3:   domain            0
pcib3:   secondary bus     4
pcib3:   subordinate bus   12
pcib3:   I/O decode        0xe000-0xefff
pcib3:   memory decode     0xfcd00000-0xfcefffff
pcib3: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02 - AE_NOT_FOUND
pci3: &amp;lt;ACPI PCI bus&amp;gt; on pcib3
pcib3: allocated bus range (4-4) for rid 0 of pci3
pci3: domain=0, physical bus=4
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=0, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=5, subbus=5
pcib3: allocated bus range (5-5) for rid 0 of pci0:4:0:0
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=1, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=6, subbus=6
pcib3: allocated bus range (6-6) for rid 0 of pci0:4:1:0
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=2, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=7, subbus=7
pcib3: allocated bus range (7-7) for rid 0 of pci0:4:2:0
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=3, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=8, subbus=8
pcib3: allocated bus range (8-8) for rid 0 of pci0:4:3:0
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=6, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=9, subbus=9
pcib3: allocated bus range (9-9) for rid 0 of pci0:4:6:0
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=7, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=10, subbus=10
pcib3: allocated bus range (10-10) for rid 0 of pci0:4:7:0
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=8, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=11, subbus=11
pcib3: allocated bus range (11-11) for rid 0 of pci0:4:8:0
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=9, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=12, subbus=12
pcib3: allocated bus range (12-12) for rid 0 of pci0:4:9:0
pcib4: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 0.0 on pci3
pcib3: allocated I/O port range (0xe000-0xefff) for rid 1c of pcib4
pcib3: allocated memory range (0xfce00000-0xfcefffff) for rid 20 of pcib4
pcib4:   domain            0
pcib4:   secondary bus     5
pcib4:   subordinate bus   5
pcib4:   I/O decode        0xe000-0xefff
pcib4:   memory decode     0xfce00000-0xfcefffff
pcib4: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT20 - AE_NOT_FOUND
pci4: &amp;lt;ACPI PCI bus&amp;gt; on pcib4
pcib4: allocated bus range (5-5) for rid 0 of pci4
pci4: domain=0, physical bus=5
found-&amp;gt;	vendor=0x10ec, dev=0x8168, revid=0x15
	domain=0, bus=5, slot=0, func=0
	class=02-00-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D1 D2 D3  current D0
	MSI supports 1 message, 64 bit
	MSI-X supports 4 messages in map 0x20
	map[10]: type I/O Port, range 32, base 0xe000, size  8, enabled
pcib4: allocated I/O port range (0xe000-0xe0ff) for rid 10 of pci0:5:0:0
	map[18]: type Memory, range 64, base 0xfce04000, size 12, enabled
pcib4: allocated memory range (0xfce04000-0xfce04fff) for rid 18 of pci0:5:0:0
	map[20]: type Memory, range 64, base 0xfce00000, size 14, enabled
pcib4: allocated memory range (0xfce00000-0xfce03fff) for rid 20 of pci0:5:0:0
re0: &amp;lt;RealTek 8168/8111 B/C/CP/D/DP/E/F/G PCIe Gigabit Ethernet&amp;gt; port 0xe000-0xe0ff mem 0xfce04000-0xfce04fff,0xfce00000-0xfce03fff at device 0.0 on pci4
re0: MSI count : 1
re0: MSI-X count : 4
re0: attempting to allocate 1 MSI-X vectors (4 supported)
msi: routing MSI-X IRQ 279 to local APIC 4 vector 50
re0: using IRQ 279 for MSI-X
re0: Using 1 MSI-X message
re0: ASPM disabled
re0: Chip rev. 0x54000000
re0: MAC rev. 0x00100000
miibus0: &amp;lt;MII bus&amp;gt; on re0
rgephy0: &amp;lt;RTL8251/8153 1000BASE-T media interface&amp;gt; PHY 1 on miibus0
rgephy0: OUI 0x00e04c, model 0x0000, rev. 0
rgephy0:  none, 10baseT, 10baseT-FDX, 10baseT-FDX-flow, 100baseTX, 100baseTX-FDX, 100baseTX-FDX-flow, 1000baseT-FDX, 1000baseT-FDX-master, 1000baseT-FDX-flow, 1000baseT-FDX-flow-master, auto, auto-flow
re0: Using defaults for TSO: 65518/35/2048
re0: bpf attached
re0: Ethernet address: a8:a1:59:34:3f:7f
re0: netmap queues/slots: TX 1/256, RX 1/256
pcib5: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 1.0 on pci3
pcib3: allocated memory range (0xfcd00000-0xfcdfffff) for rid 20 of pcib5
pcib5:   domain            0
pcib5:   secondary bus     6
pcib5:   subordinate bus   6
pcib5:   memory decode     0xfcd00000-0xfcdfffff
pcib5: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT21 - AE_NOT_FOUND
pci5: &amp;lt;ACPI PCI bus&amp;gt; on pcib5
pcib5: allocated bus range (6-6) for rid 0 of pci5
pci5: domain=0, physical bus=6
found-&amp;gt;	vendor=0x8086, dev=0x24fb, revid=0x10
	domain=0, bus=6, slot=0, func=0
	class=02-80-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0000, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 64, base 0xfcd00000, size 13, memory disabled
pcib5: allocated memory range (0xfcd00000-0xfcd01fff) for rid 10 of pci0:6:0:0
pci5: &amp;lt;network&amp;gt; at device 0.0 (no driver attached)
pcib6: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 2.0 on pci3
pcib6:   domain            0
pcib6:   secondary bus     7
pcib6:   subordinate bus   7
pcib6: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT22 - AE_NOT_FOUND
pci6: &amp;lt;ACPI PCI bus&amp;gt; on pcib6
pcib6: allocated bus range (7-7) for rid 0 of pci6
pci6: domain=0, physical bus=7
pcib7: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 3.0 on pci3
pcib7:   domain            0
pcib7:   secondary bus     8
pcib7:   subordinate bus   8
pcib7: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT23 - AE_NOT_FOUND
pci7: &amp;lt;ACPI PCI bus&amp;gt; on pcib7
pcib7: allocated bus range (8-8) for rid 0 of pci7
pci7: domain=0, physical bus=8
pcib8: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 6.0 on pci3
pcib8:   domain            0
pcib8:   secondary bus     9
pcib8:   subordinate bus   9
pcib8: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT26 - AE_NOT_FOUND
pci8: &amp;lt;ACPI PCI bus&amp;gt; on pcib8
pcib8: allocated bus range (9-9) for rid 0 of pci8
pci8: domain=0, physical bus=9
pcib9: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 7.0 on pci3
pcib9:   domain            0
pcib9:   secondary bus     10
pcib9:   subordinate bus   10
pcib9: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT27 - AE_NOT_FOUND
pci9: &amp;lt;ACPI PCI bus&amp;gt; on pcib9
pcib9: allocated bus range (10-10) for rid 0 of pci9
pci9: domain=0, physical bus=10
pcib10: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 8.0 on pci3
pcib10:   domain            0
pcib10:   secondary bus     11
pcib10:   subordinate bus   11
pcib10: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT28 - AE_NOT_FOUND
pci10: &amp;lt;ACPI PCI bus&amp;gt; on pcib10
pcib10: allocated bus range (11-11) for rid 0 of pci10
pci10: domain=0, physical bus=11
pcib11: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 9.0 on pci3
pcib11:   domain            0
pcib11:   secondary bus     12
pcib11:   subordinate bus   12
pcib11: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT29 - AE_NOT_FOUND
pci11: &amp;lt;ACPI PCI bus&amp;gt; on pcib11
pcib11: allocated bus range (12-12) for rid 0 of pci11
pci11: domain=0, physical bus=12
pcib12: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 8.1 on pci0
pcib0: allocated type 4 (0xd000-0xdfff) for rid 1c of pcib12
pcib0: allocated type 3 (0xfc900000-0xfccfffff) for rid 20 of pcib12
pcib0: allocated type 3 (0xd0000000-0xe01fffff) for rid 24 of pcib12
pcib12:   domain            0
pcib12:   secondary bus     13
pcib12:   subordinate bus   13
pcib12:   I/O decode        0xd000-0xdfff
pcib12:   memory decode     0xfc900000-0xfccfffff
pcib12:   prefetched decode 0xd0000000-0xe01fffff
pci12: &amp;lt;ACPI PCI bus&amp;gt; on pcib12
pcib12: allocated bus range (13-13) for rid 0 of pci12
pci12: domain=0, physical bus=13
found-&amp;gt;	vendor=0x1002, dev=0x1636, revid=0xd8
	domain=0, bus=13, slot=0, func=0
	class=03-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0006, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 4 messages, 64 bit
	MSI-X supports 4 messages in map 0x24
	map[10]: type Prefetchable Memory, range 64, base 0xd0000000, size 28, enabled
pcib12: allocated prefetch range (0xd0000000-0xdfffffff) for rid 10 of pci0:13:0:0
	map[18]: type Prefetchable Memory, range 64, base 0xe0000000, size 21, enabled
pcib12: allocated prefetch range (0xe0000000-0xe01fffff) for rid 18 of pci0:13:0:0
	map[20]: type I/O Port, range 32, base 0xd000, size  8, port disabled
pcib12: allocated I/O port range (0xd000-0xd0ff) for rid 20 of pci0:13:0:0
	map[24]: type Memory, range 32, base 0xfcc00000, size 19, enabled
pcib12: allocated memory range (0xfcc00000-0xfcc7ffff) for rid 24 of pci0:13:0:0
found-&amp;gt;	vendor=0x1002, dev=0x1637, revid=0x00
	domain=0, bus=13, slot=0, func=1
	class=04-03-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=b, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 32, base 0xfcc88000, size 14, memory disabled
pcib12: allocated memory range (0xfcc88000-0xfcc8bfff) for rid 10 of pci0:13:0:1
found-&amp;gt;	vendor=0x1022, dev=0x15df, revid=0x00
	domain=0, bus=13, slot=0, func=2
	class=10-80-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 2 messages, 64 bit
	MSI-X supports 2 messages in map 0x24
	map[18]: type Memory, range 32, base 0xfcb00000, size 20, memory disabled
pcib12: allocated memory range (0xfcb00000-0xfcbfffff) for rid 18 of pci0:13:0:2
	map[24]: type Memory, range 32, base 0xfcc8c000, size 13, enabled
pcib12: allocated memory range (0xfcc8c000-0xfcc8dfff) for rid 24 of pci0:13:0:2
found-&amp;gt;	vendor=0x1022, dev=0x1639, revid=0x00
	domain=0, bus=13, slot=0, func=3
	class=0c-03-30, hdrtype=0x00, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=d, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 8 messages, 64 bit
	MSI-X supports 8 messages in map 0x10
	map[10]: type Memory, range 64, base 0xfca00000, size 20, enabled
pcib12: allocated memory range (0xfca00000-0xfcafffff) for rid 10 of pci0:13:0:3
found-&amp;gt;	vendor=0x1022, dev=0x1639, revid=0x00
	domain=0, bus=13, slot=0, func=4
	class=0c-03-30, hdrtype=0x00, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 8 messages, 64 bit
	MSI-X supports 8 messages in map 0x10
	map[10]: type Memory, range 64, base 0xfc900000, size 20, enabled
pcib12: allocated memory range (0xfc900000-0xfc9fffff) for rid 10 of pci0:13:0:4
found-&amp;gt;	vendor=0x1022, dev=0x15e3, revid=0x00
	domain=0, bus=13, slot=0, func=6
	class=04-03-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 32, base 0xfcc80000, size 15, memory disabled
pcib12: allocated memory range (0xfcc80000-0xfcc87fff) for rid 10 of pci0:13:0:6
vgapci0: &amp;lt;VGA-compatible display&amp;gt; port 0xd000-0xd0ff mem 0xd0000000-0xdfffffff,0xe0000000-0xe01fffff,0xfcc00000-0xfcc7ffff at device 0.0 on pci12
hdac0: &amp;lt;ATI (0x1637) HDA Controller&amp;gt; mem 0xfcc88000-0xfcc8bfff at device 0.1 on pci12
hdac0: PCI card vendor: 0x1002, device: 0x1637
hdac0: HDA Driver Revision: 20120126_0002
hdac0: Config options: on=0x00000000 off=0x00000000
hdac0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 280 to local APIC 6 vector 50
hdac0: using IRQ 280 for MSI
hdac0: Caps: OSS 4, ISS 0, BSS 0, NSDO 1, 64bit, CORB 256, RIRB 256
pci12: &amp;lt;encrypt/decrypt&amp;gt; at device 0.2 (no driver attached)
xhci1: &amp;lt;XHCI (generic) USB 3.0 controller&amp;gt; mem 0xfca00000-0xfcafffff at device 0.3 on pci12
xhci1: 64 bytes context size, 64-bit DMA
xhci1: Unable to map MSI-X table
xhci1: attempting to allocate 1 MSI vectors (8 supported)
msi: routing MSI IRQ 281 to local APIC 8 vector 48
xhci1: using IRQ 281 for MSI
xhci1: MSI enabled
usbus1 on xhci1
xhci1: usbpf: Attached
usbus1: 5.0Gbps Super Speed USB v3.0
xhci2: &amp;lt;XHCI (generic) USB 3.0 controller&amp;gt; mem 0xfc900000-0xfc9fffff at device 0.4 on pci12
xhci2: 64 bytes context size, 64-bit DMA
xhci2: Unable to map MSI-X table
xhci2: attempting to allocate 1 MSI vectors (8 supported)
msi: routing MSI IRQ 282 to local APIC 10 vector 48
xhci2: using IRQ 282 for MSI
xhci2: MSI enabled
usbus2 on xhci2
xhci2: usbpf: Attached
usbus2: 5.0Gbps Super Speed USB v3.0
hdac1: &amp;lt;AMD (0x15e3) HDA Controller&amp;gt; mem 0xfcc80000-0xfcc87fff at device 0.6 on pci12
hdac1: PCI card vendor: 0x1849, device: 0x288a
hdac1: HDA Driver Revision: 20120126_0002
hdac1: Config options: on=0x00000000 off=0x00000000
hdac1: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 283 to local APIC 12 vector 48
hdac1: using IRQ 283 for MSI
hdac1: Caps: OSS 4, ISS 4, BSS 0, NSDO 1, 64bit, CORB 256, RIRB 256
pci0: &amp;lt;serial bus, SMBus&amp;gt; at device 20.0 (no driver attached)
isab0: &amp;lt;PCI-ISA bridge&amp;gt; at device 20.3 on pci0
isa0: &amp;lt;ISA bus&amp;gt; on isab0
acpi_button0: &amp;lt;Power Button&amp;gt; on acpi0
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
uart2: &amp;lt;16x50 with 256 byte FIFO&amp;gt; iomem 0xfedc9000-0xfedc9fff,0xfedc7000-0xfedc7fff irq 3 on acpi0
ioapic0: routing intpin 3 (ISA IRQ 3) to lapic 14 vector 48
uart2: fast interrupt
uart2: PPS capture mode: DCD
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
uart3: &amp;lt;16x50 with 256 byte FIFO&amp;gt; iomem 0xfedca000-0xfedcafff,0xfedc8000-0xfedc8fff irq 4 on acpi0
ioapic0: routing intpin 4 (ISA IRQ 4) to lapic 0 vector 56
uart3: fast interrupt
uart3: PPS capture mode: DCD
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
uart4: &amp;lt;16x50 with 256 byte FIFO&amp;gt; iomem 0xfedce000-0xfedcefff,0xfedcc000-0xfedccfff irq 3 on acpi0
uart4: fast interrupt
uart4: PPS capture mode: DCD
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
uart5: &amp;lt;16x50 with 256 byte FIFO&amp;gt; iomem 0xfedcf000-0xfedcffff,0xfedcd000-0xfedcdfff irq 4 on acpi0
uart5: fast interrupt
uart5: PPS capture mode: DCD
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
acpi_syscontainer0: &amp;lt;System Container&amp;gt; on acpi0
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
cpu0: Processor \134_SB_.PLTF.C000 (ACPI ID 0) -&amp;gt; APIC ID 0
cpu0: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu0: switching to generic Cx mode
cpu1: Processor \134_SB_.PLTF.C001 (ACPI ID 1) -&amp;gt; APIC ID 1
cpu1: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu2: Processor \134_SB_.PLTF.C002 (ACPI ID 2) -&amp;gt; APIC ID 2
cpu2: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu3: Processor \134_SB_.PLTF.C003 (ACPI ID 3) -&amp;gt; APIC ID 3
cpu3: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu4: Processor \134_SB_.PLTF.C004 (ACPI ID 4) -&amp;gt; APIC ID 4
cpu4: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu5: Processor \134_SB_.PLTF.C005 (ACPI ID 5) -&amp;gt; APIC ID 5
cpu5: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu6: Processor \134_SB_.PLTF.C006 (ACPI ID 6) -&amp;gt; APIC ID 6
cpu6: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu7: Processor \134_SB_.PLTF.C007 (ACPI ID 7) -&amp;gt; APIC ID 7
cpu7: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu8: Processor \134_SB_.PLTF.C008 (ACPI ID 8) -&amp;gt; APIC ID 8
cpu8: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu9: Processor \134_SB_.PLTF.C009 (ACPI ID 9) -&amp;gt; APIC ID 9
cpu9: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu10: Processor \134_SB_.PLTF.C00A (ACPI ID 10) -&amp;gt; APIC ID 10
cpu10: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu11: Processor \134_SB_.PLTF.C00B (ACPI ID 11) -&amp;gt; APIC ID 11
cpu11: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu12: Processor \134_SB_.PLTF.C00C (ACPI ID 12) -&amp;gt; APIC ID 12
cpu12: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu13: Processor \134_SB_.PLTF.C00D (ACPI ID 13) -&amp;gt; APIC ID 13
cpu13: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu14: Processor \134_SB_.PLTF.C00E (ACPI ID 14) -&amp;gt; APIC ID 14
cpu14: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu15: Processor \134_SB_.PLTF.C00F (ACPI ID 15) -&amp;gt; APIC ID 15
cpu15: &amp;lt;ACPI CPU&amp;gt; on acpi0
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
uart0: &amp;lt;16550 or compatible&amp;gt; port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0
uart0: fast interrupt
uart0: PPS capture mode: DCD
ACPI: Enabled 1 GPEs in block 00 to 1F
pcib0: allocated type 3 (0xa0000-0xa07ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa0800-0xa0fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa1000-0xa17ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa1800-0xa1fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa2000-0xa27ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa2800-0xa2fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa3000-0xa37ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa3800-0xa3fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa4000-0xa47ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa4800-0xa4fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa5000-0xa57ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa5800-0xa5fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa6000-0xa67ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa6800-0xa6fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa7000-0xa77ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa7800-0xa7fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa8000-0xa87ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa8800-0xa8fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa9000-0xa97ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa9800-0xa9fff) for rid 0 of orm0
pcib0: allocated type 3 (0xaa000-0xaa7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xaa800-0xaafff) for rid 0 of orm0
pcib0: allocated type 3 (0xab000-0xab7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xab800-0xabfff) for rid 0 of orm0
pcib0: allocated type 3 (0xac000-0xac7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xac800-0xacfff) for rid 0 of orm0
pcib0: allocated type 3 (0xad000-0xad7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xad800-0xadfff) for rid 0 of orm0
pcib0: allocated type 3 (0xae000-0xae7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xae800-0xaefff) for rid 0 of orm0
pcib0: allocated type 3 (0xaf000-0xaf7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xaf800-0xaffff) for rid 0 of orm0
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 (0xc0000-0xc07ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc0800-0xc0fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc1000-0xc17ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc1800-0xc1fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc2000-0xc27ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc2800-0xc2fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc3000-0xc37ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc3800-0xc3fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc4000-0xc47ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc4800-0xc4fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc5000-0xc57ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc5800-0xc5fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc6000-0xc67ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc6800-0xc6fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc7000-0xc77ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc7800-0xc7fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc8000-0xc87ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc8800-0xc8fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc9000-0xc97ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc9800-0xc9fff) for rid 0 of orm0
pcib0: allocated type 3 (0xca000-0xca7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xca800-0xcafff) for rid 0 of orm0
pcib0: allocated type 3 (0xcb000-0xcb7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xcb800-0xcbfff) for rid 0 of orm0
pcib0: allocated type 3 (0xcc000-0xcc7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xcc800-0xccfff) for rid 0 of orm0
pcib0: allocated type 3 (0xcd000-0xcd7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xcd800-0xcdfff) for rid 0 of orm0
pcib0: allocated type 3 (0xce000-0xce7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xce800-0xcefff) for rid 0 of orm0
pcib0: allocated type 3 (0xcf000-0xcf7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xcf800-0xcffff) for rid 0 of orm0
pcib0: allocated type 3 (0xd0000-0xd07ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd0800-0xd0fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd1000-0xd17ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd1800-0xd1fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd2000-0xd27ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd2800-0xd2fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd3000-0xd37ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd3800-0xd3fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd4000-0xd47ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd4800-0xd4fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd5000-0xd57ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd5800-0xd5fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd6000-0xd67ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd6800-0xd6fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd7000-0xd77ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd7800-0xd7fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd8000-0xd87ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd8800-0xd8fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd9000-0xd97ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd9800-0xd9fff) for rid 0 of orm0
pcib0: allocated type 3 (0xda000-0xda7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xda800-0xdafff) for rid 0 of orm0
pcib0: allocated type 3 (0xdb000-0xdb7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xdb800-0xdbfff) 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
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
isa_probe_children: disabling PnP devices
atrtc: atrtc0 already exists; skipping it
attimer: attimer0 already exists; skipping it
sc: sc0 already exists; skipping it
uart: uart0 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 (0x60-0x60) for rid 0 of atkbdc0
pcib0: allocated type 4 (0x64-0x64) for rid 1 of atkbdc0
atkbdc0: &amp;lt;Keyboard controller (i8042)&amp;gt; at port 0x60,0x64 on isa0
pcib0: allocated type 4 (0x60-0x60) for rid 0 of atkbdc0
pcib0: allocated type 4 (0x64-0x64) for rid 1 of atkbdc0
atkbd0: &amp;lt;AT Keyboard&amp;gt; irq 1 on atkbdc0
kbd0 at atkbd0
kbd0: atkbd0, generic (0), config:0x0, flags:0x1f0000
ioapic0: routing intpin 1 (ISA IRQ 1) to lapic 2 vector 52
atkbd0: [GIANT-LOCKED]
psm0: unable to allocate IRQ
atkbdc0: non-PNP ISA device will be removed from GENERIC in FreeBSD 12.
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 (0x2f8-0x2f8) for rid 0 of uart1
uart1 failed to probe at port 0x2f8 irq 3 on isa0
isa_probe_children: probing PnP devices
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
hwpstate0: &amp;lt;Cool`n&amp;#039;Quiet 2.0&amp;gt; on cpu0
Device configuration finished.
procfs registered
ZFS filesystem version: 5
ZFS storage pool version: features support (5000)
Timecounters tick every 1.000 msec
lo0: bpf attached
vlan: initialized, using hash tables with chaining
IPsec: Initialized Security Association Processing.
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
tcp_init: net.inet.tcp.tcbhashsize auto tuned to 131072
AcpiOsExecute: enqueue 16 pending tasks
hpt27xx: no controller detected.
hptnr: no controller detected.
hptrr: no controller detected.
ahcich0: AHCI reset...
hdacc0: &amp;lt;ATI R6xx HDA CODEC&amp;gt; at cad 0 on hdac0
hdaa0: &amp;lt;ATI R6xx Audio Function Group&amp;gt; at nid 1 on hdacc0
ahcich0: hdaa0: Subsystem ID: 0x00aa0100
SATA connect time=100us status=00000133
ahcich0: AHCI reset: device found
hdaa0: NumGPIO=0 NumGPO=0 NumGPI=0 GPIWake=0 GPIUnsol=0
ahcich1: AHCI reset...
hdaa0: Original pins configuration:
hdaa0: nid   0x    as seq device       conn  jack    loc        color   misc
hdaa0:  3 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0:  5 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0:  7 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0:  9 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0: 11 585600f0 15 0  Digital-out   None  Digital 0x18       Unknown 0
hdaa0: 13 585600f0 15 0  Digital-out   None  Digital 0x18       Unknown 0
hdaa0: Patched pins configuration:
hdaa0: nid   0x    as seq device       conn  jack    loc        color   misc
hdaa0:  3 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0:  5 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0:  7 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0:  9 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0: 11 585600f0 15 0  Digital-out   None  Digital 0x18       Unknown 0 DISA
ahcich1: hdaa0: 13 585600f0 15 0  Digital-out   None  Digital 0x18       Unknown 0 DISA
hdaa0: 4 associations found:
hdaa0: Association 0 (15) out:
hdaa0:  Pin nid=3 seq=0
hdaa0: Association 1 (15) out:
hdaa0:  Pin nid=5 seq=0
hdaa0: Association 2 (15) out:
hdaa0:  Pin nid=7 seq=0
hdaa0: Association 3 (15) out:
hdaa0:  Pin nid=9 seq=0
hdaa0: Tracing association 0 (15)
hdaa0:  Pin 3 traced to DAC 2
hdaa0: Association 0 (15) trace succeeded
hdaa0: Tracing association 1 (15)
hdaa0:  Pin 5 traced to DAC 4
hdaa0: Association 1 (15) trace succeeded
hdaa0: Tracing association 2 (15)
hdaa0:  Pin 7 traced to DAC 6
hdaa0: Association 2 (15) trace succeeded
hdaa0: Tracing association 3 (15)
hdaa0:  Pin 9 traced to DAC 8
hdaa0: Association 3 (15) trace succeeded
hdaa0: Looking for additional DAC for association 0 (15)
hdaa0: Looking for additional DAC for association 1 (15)
hdaa0: Looking for additional DAC for association 2 (15)
hdaa0: Looking for additional DAC for association 3 (15)
hdaa0: Tracing input monitor
hdaa0: Tracing other input monitors
hdaa0: Tracing beeper
SATA connect timeout time=10000us status=00000000
hdaa0: ahcich1: AHCI reset: device not found
ahcich2: AHCI reset...
Pin sense: nid=3 sense=0x7fffffff (disconnected, ELD valid)
hdaa0: Pin sense: nid=5 sense=0x7fffffff (disconnected, ELD valid)
hdaa0: Pin sense: nid=7 sense=0x7fffffff (disconnected, ELD valid)
hdaa0: Pin sense: nid=9 sense=0x7fffffff (disconnected, ELD valid)
hdaa0: FG config/quirks: forcestereo ivref50 ivref80 ivref100 ivref
pcm0: &amp;lt;ATI R6xx (HDMI)&amp;gt; at nid 3 on hdaa0
pcm0: Playback:
pcm0:      Stream cap: 0x00000005 AC3 PCM
pcm0:         PCM cap: 0x00020070 16 bits, 32 44 48 KHz
pcm0:             DAC: 2
pcm0:
pcm0:     nid=3 [pin: Digital-out (Jack)]
ahcich2: pcm0:       + &amp;lt;- nid=2 [audio output] [src: pcm]
pcm0:
SATA connect timeout time=10000us status=00000000
pcm0: ahcich2: AHCI reset: device not found
ahcich3: AHCI reset...
Mixer &amp;quot;vol&amp;quot; -&amp;gt; &amp;quot;none&amp;quot;: child=0x00000010
pcm0: Mixer &amp;quot;pcm&amp;quot;: parent=&amp;quot;vol&amp;quot;
pcm0: Soft PCM mixer ENABLED
pcm0: Playback channel set is: Front Left, Front Right,
pcm0: Playback channel matrix is: 2.0 (disconnected)
pcm1: &amp;lt;ATI R6xx (HDMI)&amp;gt; at nid 5 on hdaa0
pcm1: Playback:
ahcich3: pcm1:      Stream cap: 0x00000005 AC3 PCM
pcm1:         PCM cap: 0x00020070 16 bits, 32 44 48 KHz
pcm1:             DAC: 4
pcm1:
pcm1:     nid=5 [pin: Digital-out (Jack)]
pcm1:       + &amp;lt;- nid=4 [audio output] [src: pcm]
pcm1:
SATA connect timeout time=10000us status=00000000
pcm1: ahcich3: AHCI reset: device not found
ahcich4: AHCI reset...
Mixer &amp;quot;vol&amp;quot; -&amp;gt; &amp;quot;none&amp;quot;: child=0x00000010
pcm1: Mixer &amp;quot;pcm&amp;quot;: parent=&amp;quot;vol&amp;quot;
pcm1: Soft PCM mixer ENABLED
pcm1: Playback channel set is: Front Left, Front Right,
pcm1: Playback channel matrix is: 2.0 (disconnected)
pcm2: &amp;lt;ATI R6xx (HDMI)&amp;gt; at nid 7 on hdaa0
pcm2: Playback:
ahcich4: pcm2:      Stream cap: 0x00000005 AC3 PCM
pcm2:         PCM cap: 0x00020070 16 bits, 32 44 48 KHz
pcm2:             DAC: 6
pcm2:
pcm2:     nid=7 [pin: Digital-out (Jack)]
pcm2:       + &amp;lt;- nid=6 [audio output] [src: pcm]
pcm2:
SATA connect timeout time=10000us status=00000000
pcm2: ahcich4: AHCI reset: device not found
ahcich5: AHCI reset...
Mixer &amp;quot;vol&amp;quot; -&amp;gt; &amp;quot;none&amp;quot;: child=0x00000010
pcm2: Mixer &amp;quot;pcm&amp;quot;: parent=&amp;quot;vol&amp;quot;
pcm2: Soft PCM mixer ENABLED
pcm2: Playback channel set is: Front Left, Front Right,
pcm2: Playback channel matrix is: 2.0 (disconnected)
pcm3: &amp;lt;ATI R6xx (HDMI)&amp;gt; at nid 9 on hdaa0
ahcich5: pcm3: Playback:
pcm3:      Stream cap: 0x00000005 AC3 PCM
pcm3:         PCM cap: 0x00020070 16 bits, 32 44 48 KHz
pcm3:             DAC: 8
pcm3:
pcm3:     nid=9 [pin: Digital-out (Jack)]
pcm3:       + &amp;lt;- nid=8 [audio output] [src: pcm]
pcm3:
SATA connect timeout time=10000us status=00000000
pcm3: ahcich5: AHCI reset: device not found
Mixer &amp;quot;vol&amp;quot; -&amp;gt; &amp;quot;none&amp;quot;: child=0x00000010
pcm3: Mixer &amp;quot;pcm&amp;quot;: parent=&amp;quot;vol&amp;quot;
pcm3: Soft PCM mixer ENABLED
pcm3: Playback channel set is: Front Left, Front Right,
pcm3: Playback channel matrix is: 2.0 (disconnected)
hdacc1: &amp;lt;Realtek ALC887 HDA CODEC&amp;gt; at cad 0 on hdac1
hdaa1: &amp;lt;Realtek ALC887 Audio Function Group&amp;gt; at nid 1 on hdacc1
hdaa1: Subsystem ID: 0x1849288a
hdaa1: NumGPIO=2 NumGPO=0 NumGPI=0 GPIWake=0 GPIUnsol=1
hdaa1:  GPIO0: disabled
hdaa1:  GPIO1: disabled
hdaa1: Original pins configuration:
hdaa1: nid   0x    as seq device       conn  jack    loc        color   misc
hdaa1: 17 40000000 0  0  Line-out      None  Unknown 0x00       Unknown 0
hdaa1: 18 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa1: 20 01014010 1  0  Line-out      Jack  1/8     Rear       Green   0
hdaa1: 21 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa1: 22 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa1: 23 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa1: 24 01a19030 3  0  Mic           Jack  1/8     Rear       Pink    0
hdaa1: 25 02a19040 4  0  Mic           Jack  1/8     Front      Pink    0
hdaa1: 26 0181303f 3  15 Line-in       Jack  1/8     Rear       Blue    0
hdaa1: 27 02214020 2  0  Headphones    Jack  1/8     Front      Green   0
hdaa1: 28 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa1: 29 4026c629 2  9  Headphones    None  Digital 0x00       Res.C   6
hdaa1: 30 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa1: 31 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa1: Patching widget caps nid=29 0x00400400 -&amp;gt; 0x00700400
hdaa1: Patched pins configuration:
hdaa1: nid   0x    as seq device       conn  jack    loc        color   misc
hdaa1: 17 40000000 0  0  Line-out      None  Unknown 0x00       Unknown 0 DISA
hdaa1: 18 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa1: 20 01014010 1  0  Line-out      Jack  1/8     Rear       Green   0
hdaa1: 21 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa1: 22 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa1: 23 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa1: 24 01a19030 3  0  Mic           Jack  1/8     Rear       Pink    0
hdaa1: 25 02a19040 4  0  Mic           Jack  1/8     Front      Pink    0
hdaa1: 26 0181303f 3  15 Line-in       Jack  1/8     Rear       Blue    0
hdaa1: 27 02214020 2  0  Headphones    Jack  1/8     Front      Green   0
hdaa1: 28 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: 31 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa1: 4 associations found:
hdaa1: Association 0 (1) out:
hdaa1:  Pin nid=20 seq=0
hdaa1: Association 1 (2) out:
hdaa1:  Pin nid=27 seq=0
hdaa1: Association 2 (3) in:
hdaa1:  Pin nid=24 seq=0
hdaa1:  Pin nid=26 seq=15
hdaa1: Association 3 (4) in:
hdaa1:  Pin nid=25 seq=0
hdaa1: Tracing association 0 (1)
hdaa1:  Pin 20 traced to DAC 2
hdaa1: Association 0 (1) trace succeeded
hdaa1: Tracing association 1 (2)
hdaa1:  Pin 27 traced to DAC 3
hdaa1: Association 1 (2) trace succeeded
hdaa1: Tracing association 2 (3)
hdaa1:  Pin 24 traced to ADC 8
hdaa1:  Pin 26 traced to ADC 8
hdaa1: Association 2 (3) trace succeeded
hdaa1: Tracing association 3 (4)
hdaa1:  Pin 25 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 nid 34 to out
hdaa1:  Tracing nid 35 to out
hdaa1: Tracing other input monitors
hdaa1:  Tracing nid 24 to out
hdaa1:  Tracing nid 25 to out
hdaa1:  Tracing nid 26 to out
hdaa1: Tracing beeper
hdaa1: FG config/quirks: forcestereo ivref50 ivref80 ivref100 ivref
pcm4: &amp;lt;Realtek ALC887 (Rear Analog)&amp;gt; at nid 20 and 24,26 on hdaa1
pcm4: Playback:
pcm4:      Stream cap: 0x00000001 PCM
pcm4:         PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz
pcm4:             DAC: 2
pcm4:
pcm4:     nid=20 [pin: Line-out (Green Jack)]
pcm4:       + &amp;lt;- nid=12 [audio mixer] [src: pcm, mix]
pcm4:              + &amp;lt;- nid=2 [audio output] [src: pcm]
pcm4:              + &amp;lt;- nid=11 [audio mixer] [src: mix]
pcm4:
pcm4: Record:
pcm4:      Stream cap: 0x00000001 PCM
pcm4:         PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz
pcm4:             ADC: 8
pcm4:
pcm4:     nid=8 [audio input]
pcm4:       + &amp;lt;- nid=35 [audio mixer] [src: speaker, line, mic, mix]
pcm4:              + &amp;lt;- nid=24 [pin: Mic (Pink Jack)] [src: mic]
pcm4:              + &amp;lt;- nid=26 [pin: Line-in (Blue Jack)] [src: line]
pcm4:              + &amp;lt;- nid=29 [beep widget] [src: speaker]
pcm4:              + &amp;lt;- nid=11 [audio mixer] [src: mix]
pcm4:
pcm4: Input Mix:
pcm4:
pcm4:     nid=11 [audio mixer]
pcm4:       + &amp;lt;- nid=24 [pin: Mic (Pink Jack)] [src: mic]
pcm4:       + &amp;lt;- nid=26 [pin: Line-in (Blue Jack)] [src: line]
pcm4:       + &amp;lt;- nid=29 [beep widget] [src: speaker]
pcm4:
pcm4: Master Volume (OSS: vol): -64/0dB
pcm4:    +- ctl  1 (nid   2 out):    -64/0dB (65 steps)
pcm4:    +- ctl 17 (nid  12 in   0): mute
pcm4:    +- ctl 18 (nid  12 in   1): mute
pcm4:    +- ctl 25 (nid  20 in ):    mute
pcm4:
pcm4: PCM Volume (OSS: pcm): -64/0dB
pcm4:    +- ctl  1 (nid   2 out):    -64/0dB (65 steps)
pcm4:    +- ctl 17 (nid  12 in   0): mute
pcm4:
pcm4: Microphone Volume (OSS: mic): 0/30dB
pcm4:    +- ctl  7 (nid  11 in   0): -34/12dB (32 steps) + mute
pcm4:    +- ctl 30 (nid  24 out):    0/30dB (4 steps)
pcm4:    +- ctl 49 (nid  35 in   0): mute
pcm4:
pcm4: Line-in Volume (OSS: line): 0/30dB
pcm4:    +- ctl  9 (nid  11 in   2): -34/12dB (32 steps) + mute
pcm4:    +- ctl 34 (nid  26 out):    0/30dB (4 steps)
pcm4:    +- ctl 51 (nid  35 in   2): mute
pcm4:
pcm4: Speaker/Beep Volume (OSS: speaker): -34/12dB
pcm4:    +- ctl 12 (nid  11 in   5): -34/12dB (32 steps) + mute
pcm4:    +- ctl 54 (nid  35 in   5): mute
pcm4:
pcm4: Recording Level (OSS: rec): -16/30dB
pcm4:    +- ctl  5 (nid   8 in   0): -16/30dB (47 steps) + mute
pcm4:    +- ctl 49 (nid  35 in   0): mute
pcm4:    +- ctl 51 (nid  35 in   2): mute
pcm4:    +- ctl 54 (nid  35 in   5): mute
pcm4:    +- ctl 59 (nid  35 in  10): mute
pcm4:
pcm4: Input Mix Level (OSS: mix): -34/12dB
pcm4:    +- ctl  7 (nid  11 in   0): -34/12dB (32 steps) + mute
pcm4:    +- ctl  9 (nid  11 in   2): -34/12dB (32 steps) + mute
pcm4:    +- ctl 12 (nid  11 in   5): -34/12dB (32 steps) + mute
pcm4:    +- ctl 18 (nid  12 in   1): mute
pcm4:    +- ctl 59 (nid  35 in  10): mute
pcm4:
pcm4: Input Monitoring Level (OSS: igain): 0/0dB
pcm4:    +- ctl 18 (nid  12 in   1): mute
pcm4:
pcm4: Mixer &amp;quot;vol&amp;quot;:
pcm4: Mixer &amp;quot;pcm&amp;quot;:
pcm4: Mixer &amp;quot;speaker&amp;quot;:
pcm4: Mixer &amp;quot;line&amp;quot;:
pcm4: Mixer &amp;quot;mic&amp;quot;:
pcm4: Mixer &amp;quot;mix&amp;quot;:
pcm4: Mixer &amp;quot;rec&amp;quot;:
pcm4: Mixer &amp;quot;igain&amp;quot;:
pcm4: Mixer &amp;quot;ogain&amp;quot;:
pcm4: Playback channel set is: Front Left, Front Right,
pcm4: Playback channel matrix is: 2.0 (disconnected)
pcm4: Recording channel set is: Front Left, Front Right,
pcm4: Recording channel matrix is: 2.0 (disconnected)
pcm5: &amp;lt;Realtek ALC887 (Front Analog)&amp;gt; at nid 27 and 25 on hdaa1
pcm5: Playback:
pcm5:      Stream cap: 0x00000001 PCM
pcm5:         PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz
pcm5:             DAC: 3
pcm5:
pcm5:     nid=27 [pin: Headphones (Green Jack)]
pcm5:       + &amp;lt;- nid=13 [audio mixer] [src: pcm, mix]
pcm5:              + &amp;lt;- nid=3 [audio output] [src: pcm]
pcm5:              + &amp;lt;- nid=11 [audio mixer] [src: mix]
pcm5:
pcm5: Record:
pcm5:      Stream cap: 0x00000001 PCM
pcm5:         PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz
pcm5:             ADC: 9
pcm5:
pcm5:     nid=9 [audio input]
pcm5:       + &amp;lt;- nid=34 [audio mixer] [src: speaker, monitor]
pcm5:              + &amp;lt;- nid=25 [pin: Mic (Pink Jack)] [src: monitor]
pcm5:              + &amp;lt;- nid=29 [beep widget] [src: speaker]
pcm5:
pcm5: Master Volume (OSS: vol): -64/0dB
pcm5:    +- ctl  2 (nid   3 out):    -64/0dB (65 steps)
pcm5:    +- ctl 19 (nid  13 in   0): mute
pcm5:    +- ctl 20 (nid  13 in   1): mute
pcm5:    +- ctl 35 (nid  27 in ):    mute
pcm5:
pcm5: PCM Volume (OSS: pcm): -64/0dB
pcm5:    +- ctl  2 (nid   3 out):    -64/0dB (65 steps)
pcm5:    +- ctl 19 (nid  13 in   0): mute
pcm5:
pcm5: Microphone2 Volume (OSS: monitor): 0/30dB
pcm5:    +- ctl 32 (nid  25 out):    0/30dB (4 steps)
pcm5:    +- ctl 38 (nid  34 in   1): mute
pcm5:
pcm5: Speaker/Beep Volume (OSS: speaker)
pcm5:    +- ctl 42 (nid  34 in   5): mute
pcm5:
pcm5: Recording Level (OSS: rec): -16/30dB
pcm5:    +- ctl  6 (nid   9 in   0): -16/30dB (47 steps) + mute
pcm5:    +- ctl 32 (nid  25 out):    0/30dB (4 steps)
pcm5:    +- ctl 38 (nid  34 in   1): mute
pcm5:    +- ctl 42 (nid  34 in   5): mute
pcm5:
pcm5: Input Mix Level (OSS: mix)
pcm5:    +- ctl 20 (nid  13 in   1): mute
pcm5:
pcm5: Input Monitoring Level (OSS: igain): 0/0dB
pcm5:    +- ctl 20 (nid  13 in   1): mute
pcm5:
pcm5: Mixer &amp;quot;vol&amp;quot;:
pcm5: Mixer &amp;quot;pcm&amp;quot;:
pcm5: Mixer &amp;quot;rec&amp;quot;:
pcm5: Mixer &amp;quot;igain&amp;quot;:
pcm5: Mixer &amp;quot;ogain&amp;quot;:
pcm5: Mixer &amp;quot;monitor&amp;quot;:
pcm5: Playback channel set is: Front Left, Front Right,
pcm5: Playback channel matrix is: 2.0 (disconnected)
pcm5: Recording channel set is: Front Left, Front Right,
pcm5: Recording channel matrix is: 2.0 (disconnected)
ugen1.1: &amp;lt;0x1022 XHCI root HUB&amp;gt; at usbus1
ugen0.1: &amp;lt;0x1022 XHCI root HUB&amp;gt; at usbus0
ahcich0: ugen2.1: &amp;lt;0x1022 XHCI root HUB&amp;gt; at usbus2
uhub0: AHCI reset: device ready after 100ms
&amp;lt;0x1022 XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1&amp;gt; on usbus1
pass0 at ahcich0 bus 0 scbus0 target 0 lun 0
uhub1: &amp;lt;0x1022 XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1&amp;gt; on usbus0
uhub2: pass0: &amp;lt;CHN 25SATA01M 030 P0921A&amp;gt; ACS-2 ATA SATA 3.x device
pass0: Serial Number A130CI02070114
pass0: 600.000MB/s transfers (SATA 3.x, UDMA6, PIO 512bytes)
pass0: Command Queueing enabled
ada0 at ahcich0 bus 0 scbus0 target 0 lun 0
ada0: &amp;lt;CHN 25SATA01M 030 P0921A&amp;gt; ACS-2 ATA SATA 3.x device
ada0: Serial Number A130CI02070114
ada0: 600.000MB/s transfers (SATA 3.x, UDMA6, PIO 512bytes)
ada0: Command Queueing enabled
ada0: 28626MB (58626288 512 byte sectors)
GEOM: new disk ada0
&amp;lt;0x1022 XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1&amp;gt; on usbus2
Trying to mount root from zfs:zroot/ROOT/default []...
Root mount waiting for: usbus2 usbus1 usbus0
uhub0: 6 ports with 6 removable, self powered
uhub2: 6 ports with 6 removable, self powered
uhub1: 14 ports with 14 removable, self powered
ugen1.2: &amp;lt;Chicony Generic USB Hub&amp;gt; at usbus1
uhub3 on uhub0
uhub3: &amp;lt;Chicony Generic USB Hub, class 9/0, rev 1.10/1.00, addr 1&amp;gt; on usbus1
Root mount waiting for: usbus1 usbus0
ugen0.2: &amp;lt;ASRock LED Controller&amp;gt; at usbus0
uhub3: 3 ports with 2 removable, bus powered
ugen1.3: &amp;lt;Chicony PFU-65 USB Keyboard&amp;gt; at usbus1
ukbd0 on uhub3
ukbd0: &amp;lt;Chicony PFU-65 USB Keyboard, class 0/0, rev 1.10/1.00, addr 2&amp;gt; on usbus1
kbd2 at ukbd0
kbd2: ukbd0, generic (0), config:0x0, flags:0x3d0000
ugen0.3: &amp;lt;vendor 0x8087 product 0x0aa7&amp;gt; at usbus0
ugen1.4: &amp;lt;vendor 0x04f3 OM&amp;gt; at usbus1
efirtc0: providing initial system time
start_init: trying /sbin/init
lo0: link state changed to UP
re0: link state changed to DOWN
pci0: driver added
found-&amp;gt;	vendor=0x1022, dev=0x790b, revid=0x51
	domain=0, bus=0, slot=20, func=0
	class=0c-05-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0403, statreg=0x0220, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
pci0:0:20:0: reprobing on driver added
pci1: driver added
pci2: driver added
pci3: driver added
pci4: driver added
pci5: driver added
found-&amp;gt;	vendor=0x8086, dev=0x24fb, revid=0x10
	domain=0, bus=6, slot=0, func=0
	class=02-80-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0002, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
pci0:6:0:0: reprobing on driver added
iwm0: &amp;lt;Intel(R) Dual Band Wireless AC 3168&amp;gt; mem 0xfcd00000-0xfcd01fff at device 0.0 on pci5
iwm0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 284 to local APIC 4 vector 51
iwm0: using IRQ 284 for MSI
firmware: &amp;#039;iwm3168fw&amp;#039; version 0: 1028032 bytes loaded at 0xffffffff83410000
iwm0: hw rev 0x220, fw ver 22.361476.0, address c8:58:c0:b3:1b:36
iwm0: 11a rates: 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps
iwm0: 11b rates: 1Mbps 2Mbps 5.5Mbps 11Mbps
iwm0: 11g rates: 1Mbps 2Mbps 5.5Mbps 11Mbps 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps
pci6: driver added
pci7: driver added
pci8: driver added
pci9: driver added
pci10: driver added
pci11: driver added
pci12: driver added
found-&amp;gt;	vendor=0x1022, dev=0x15df, revid=0x00
	domain=0, bus=13, slot=0, func=2
	class=10-80-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0002, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 2 messages, 64 bit
	MSI-X supports 2 messages in map 0x24
pci0:13:0:2: reprobing on driver added
pci0: driver added
found-&amp;gt;	vendor=0x1022, dev=0x790b, revid=0x51
	domain=0, bus=0, slot=20, func=0
	class=0c-05-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0403, statreg=0x0220, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
pci0:0:20:0: reprobing on driver added
intsmb0: &amp;lt;AMD FCH SMBus Controller&amp;gt; at device 20.0 on pci0
pcib0: allocated type 4 (0xcd6-0xcd7) for rid 0 of intsmb0
pcib0: allocated type 4 (0xb00-0xb0f) for rid 0 of intsmb0
smbus0: &amp;lt;System Management Bus&amp;gt; on intsmb0
pci1: driver added
pci2: driver added
pci3: driver added
pci4: driver added
pci5: driver added
pci6: driver added
pci7: driver added
pci8: driver added
pci9: driver added
pci10: driver added
pci11: driver added
pci12: driver added
found-&amp;gt;	vendor=0x1022, dev=0x15df, revid=0x00
	domain=0, bus=13, slot=0, func=2
	class=10-80-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0002, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 2 messages, 64 bit
	MSI-X supports 2 messages in map 0x24
pci0:13:0:2: reprobing on driver added
uhid0 on uhub1
uhid0: &amp;lt;ASRock LED Controller, class 0/0, rev 1.10/0.00, addr 1&amp;gt; on usbus0
ubt0 on uhub1
ubt0: &amp;lt;vendor 0x8087 product 0x0aa7, class 224/1, rev 2.00/0.01, addr 2&amp;gt; on usbus0
ums0 on uhub0
ums0: &amp;lt;vendor 0x04f3 OM, class 0/0, rev 1.10/24.58, addr 3&amp;gt; on usbus1
ums0: 3 buttons and [XYZ] coordinates ID=0
WARNING: attempt to domain_add(bluetooth) after domainfinalize()
WARNING: attempt to domain_add(netgraph) after domainfinalize()
re0: link state changed to UP&lt;/pre&gt;
&lt;/dd&gt;&lt;/dl&gt;
&lt;dl class=&quot;code&quot;&gt;
&lt;dt&gt;&lt;a href=&quot;http://www.seirios.org/seirios/dokuwiki/doku.php?do=export_code&amp;amp;id=os:freebsd:intel82599&amp;amp;codeblock=2&quot; title=&quot;この部分をダウンロード&quot; class=&quot;mediafile mf_&quot;&gt;messages&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;code&quot;&gt;Aug 19 22:14:43 subamd seirios[1326]: ==iovctl -C==
Aug 19 22:14:52 subamd kernel: pcib1: allocated memory range (0xfc200000-0xfc20ffff) for rid 184 of ix1
Aug 19 22:14:52 subamd kernel: ix1: Lazy allocation of 0x10000 bytes rid 0x184 type 3 at 0xfc200000
Aug 19 22:14:52 subamd kernel: pcib1: allocated memory range (0xfc210000-0xfc21ffff) for rid 190 of ix1
Aug 19 22:14:52 subamd kernel: ix1: Lazy allocation of 0x10000 bytes rid 0x190 type 3 at 0xfc210000
Aug 19 22:14:55 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 19 22:14:55 subamd kernel: 	domain=0, bus=1, slot=0, func=129
Aug 19 22:14:55 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 19 22:14:55 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 19 22:14:55 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 19 22:14:55 subamd kernel: 	intpin=_, irq=255
Aug 19 22:14:55 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 19 22:14:55 subamd kernel: 	domain=0, bus=1, slot=0, func=131
Aug 19 22:14:55 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 19 22:14:55 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 19 22:14:55 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 19 22:14:55 subamd kernel: 	intpin=_, irq=255
Aug 19 22:14:55 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 19 22:14:55 subamd kernel: 	domain=0, bus=1, slot=0, func=133
Aug 19 22:14:55 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 19 22:14:55 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 19 22:14:55 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 19 22:14:55 subamd kernel: 	intpin=_, irq=255
Aug 19 22:14:55 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 19 22:14:55 subamd kernel: 	domain=0, bus=1, slot=0, func=135
Aug 19 22:14:55 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 19 22:14:55 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 19 22:14:55 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 19 22:14:55 subamd kernel: 	intpin=_, irq=255
Aug 19 22:14:55 subamd kernel: pci1: &amp;lt;unknown&amp;gt; at device 0.129 (no driver attached)
Aug 19 22:14:56 subamd kernel: ixv0: &amp;lt;Intel(R) PRO/10GbE Virtual Function Network Driver&amp;gt; at device 0.131 on pci1
Aug 19 22:14:56 subamd kernel: ixv0: Using 2048 TX descriptors and 2048 RX descriptors
Aug 19 22:14:56 subamd kernel: ixv0: msix_init qsets capped at 1
Aug 19 22:14:56 subamd kernel: ixv0: MSI-X not supported or disabled
Aug 19 22:14:56 subamd kernel: ixv0: Using a Legacy interrupt
Aug 19 22:14:56 subamd kernel: ixv0: allocated for 1 queues
Aug 19 22:14:56 subamd kernel: ixv0: allocated for 1 rx queues
Aug 19 22:14:56 subamd kernel: pcib1: no PRT entry for 1.0.INT?
Aug 19 22:14:56 subamd kernel: ixv0: failed to allocate IRQ for rid 0, name irq0.
Aug 19 22:14:56 subamd kernel: ixv0: iflib_legacy_setup failed 12
Aug 19 22:14:56 subamd kernel: device_attach: ixv0 attach returned 12
Aug 19 22:14:56 subamd kernel: ixv0: &amp;lt;Intel(R) PRO/10GbE Virtual Function Network Driver&amp;gt; at device 0.133 on pci1
Aug 19 22:14:56 subamd kernel: ixv0: Using 2048 TX descriptors and 2048 RX descriptors
Aug 19 22:14:56 subamd kernel: ixv0: msix_init qsets capped at 1
Aug 19 22:14:56 subamd kernel: ixv0: MSI-X not supported or disabled
Aug 19 22:14:56 subamd kernel: ixv0: Using a Legacy interrupt
Aug 19 22:14:56 subamd kernel: ixv0: allocated for 1 queues
Aug 19 22:14:56 subamd kernel: ixv0: allocated for 1 rx queues
Aug 19 22:14:56 subamd kernel: pcib1: no PRT entry for 1.0.INT?
Aug 19 22:14:56 subamd kernel: ixv0: failed to allocate IRQ for rid 0, name irq0.
Aug 19 22:14:56 subamd kernel: ixv0: iflib_legacy_setup failed 12
Aug 19 22:14:56 subamd kernel: device_attach: ixv0 attach returned 12
Aug 19 22:14:56 subamd kernel: pci1: &amp;lt;unknown&amp;gt; at device 0.135 (no driver attached)
Aug 19 22:15:07 subamd seirios[1342]: ==iovctl -D==
Aug 19 22:15:16 subamd seirios[1344]: ==iovctl -C==
Aug 19 22:15:19 subamd kernel: pcib1: allocated memory range (0xfc200000-0xfc20ffff) for rid 184 of ix1
Aug 19 22:15:19 subamd kernel: ix1: Lazy allocation of 0x10000 bytes rid 0x184 type 3 at 0xfc200000
Aug 19 22:15:19 subamd kernel: pcib1: allocated memory range (0xfc210000-0xfc21ffff) for rid 190 of ix1
Aug 19 22:15:19 subamd kernel: ix1: Lazy allocation of 0x10000 bytes rid 0x190 type 3 at 0xfc210000
Aug 19 22:15:23 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 19 22:15:23 subamd kernel: 	domain=0, bus=1, slot=0, func=129
Aug 19 22:15:23 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 19 22:15:23 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 19 22:15:23 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 19 22:15:23 subamd kernel: 	intpin=_, irq=255
Aug 19 22:15:23 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 19 22:15:23 subamd kernel: 	domain=0, bus=1, slot=0, func=131
Aug 19 22:15:23 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 19 22:15:23 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 19 22:15:23 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 19 22:15:23 subamd kernel: 	intpin=_, irq=255
Aug 19 22:15:23 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 19 22:15:23 subamd kernel: 	domain=0, bus=1, slot=0, func=133
Aug 19 22:15:23 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 19 22:15:23 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 19 22:15:23 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 19 22:15:23 subamd kernel: 	intpin=_, irq=255
Aug 19 22:15:23 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 19 22:15:23 subamd kernel: 	domain=0, bus=1, slot=0, func=135
Aug 19 22:15:23 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 19 22:15:23 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 19 22:15:23 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 19 22:15:23 subamd kernel: 	intpin=_, irq=255
Aug 19 22:15:23 subamd kernel: pci1: &amp;lt;unknown&amp;gt; at device 0.129 (no driver attached)
Aug 19 22:15:23 subamd kernel: ixv0: &amp;lt;Intel(R) PRO/10GbE Virtual Function Network Driver&amp;gt; at device 0.131 on pci1
Aug 19 22:15:23 subamd kernel: ixv0: Using 2048 TX descriptors and 2048 RX descriptors
Aug 19 22:15:23 subamd kernel: ixv0: msix_init qsets capped at 1
Aug 19 22:15:23 subamd kernel: ixv0: MSI-X not supported or disabled
Aug 19 22:15:23 subamd kernel: ixv0: Using a Legacy interrupt
Aug 19 22:15:23 subamd kernel: ixv0: allocated for 1 queues
Aug 19 22:15:23 subamd kernel: ixv0: allocated for 1 rx queues
Aug 19 22:15:23 subamd kernel: pcib1: no PRT entry for 1.0.INT?
Aug 19 22:15:23 subamd kernel: ixv0: failed to allocate IRQ for rid 0, name irq0.
Aug 19 22:15:23 subamd kernel: ixv0: iflib_legacy_setup failed 12
Aug 19 22:15:23 subamd kernel: device_attach: ixv0 attach returned 12
Aug 19 22:15:23 subamd kernel: ixv0: &amp;lt;Intel(R) PRO/10GbE Virtual Function Network Driver&amp;gt; at device 0.133 on pci1
Aug 19 22:15:23 subamd kernel: ixv0: Using 2048 TX descriptors and 2048 RX descriptors
Aug 19 22:15:23 subamd kernel: ixv0: msix_init qsets capped at 1
Aug 19 22:15:23 subamd kernel: ixv0: MSI-X not supported or disabled
Aug 19 22:15:23 subamd kernel: ixv0: Using a Legacy interrupt
Aug 19 22:15:23 subamd kernel: ixv0: allocated for 1 queues
Aug 19 22:15:23 subamd kernel: ixv0: allocated for 1 rx queues
Aug 19 22:15:23 subamd kernel: pcib1: no PRT entry for 1.0.INT?
Aug 19 22:15:23 subamd kernel: ixv0: failed to allocate IRQ for rid 0, name irq0.
Aug 19 22:15:23 subamd kernel: ixv0: iflib_legacy_setup failed 12
Aug 19 22:15:23 subamd kernel: device_attach: ixv0 attach returned 12
Aug 19 22:15:23 subamd kernel: pci1: &amp;lt;unknown&amp;gt; at device 0.135 (no driver attached)
root@subamd:/usr/home/seirios #&lt;/pre&gt;
&lt;/dd&gt;&lt;/dl&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;X520-DA2&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;x520-da2&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:1,&amp;quot;secid&amp;quot;:6,&amp;quot;range&amp;quot;:&amp;quot;1558-104386&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit7&quot; id=&quot;sfp&quot;&gt;560SFP+&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;
&lt;dl class=&quot;code&quot;&gt;
&lt;dt&gt;&lt;a href=&quot;http://www.seirios.org/seirios/dokuwiki/doku.php?do=export_code&amp;amp;id=os:freebsd:intel82599&amp;amp;codeblock=3&quot; title=&quot;この部分をダウンロード&quot; class=&quot;mediafile mf_boot&quot;&gt;dmesg.boot&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;code&quot;&gt;MADT: Found CPU APIC ID 11 ACPI ID 11: enabled
SMP: Added CPU 11 (AP)
MADT: Found CPU APIC ID 13 ACPI ID 13: enabled
SMP: Added CPU 13 (AP)
MADT: Found CPU APIC ID 15 ACPI ID 15: enabled
SMP: Added CPU 15 (AP)
MADT: Found CPU APIC ID 0 ACPI ID 16: disabled
MADT: Found CPU APIC ID 0 ACPI ID 17: disabled
MADT: Found CPU APIC ID 0 ACPI ID 18: disabled
MADT: Found CPU APIC ID 0 ACPI ID 19: disabled
MADT: Found CPU APIC ID 0 ACPI ID 20: disabled
MADT: Found CPU APIC ID 0 ACPI ID 21: disabled
MADT: Found CPU APIC ID 0 ACPI ID 22: disabled
MADT: Found CPU APIC ID 0 ACPI ID 23: disabled
MADT: Found CPU APIC ID 0 ACPI ID 24: disabled
MADT: Found CPU APIC ID 0 ACPI ID 25: disabled
MADT: Found CPU APIC ID 0 ACPI ID 26: disabled
MADT: Found CPU APIC ID 0 ACPI ID 27: disabled
MADT: Found CPU APIC ID 0 ACPI ID 28: disabled
MADT: Found CPU APIC ID 0 ACPI ID 29: disabled
MADT: Found CPU APIC ID 0 ACPI ID 30: disabled
MADT: Found CPU APIC ID 0 ACPI ID 31: disabled
Event timer &amp;quot;LAPIC&amp;quot; quality 600
LAPIC: ipi_wait() us multiplier 21 (r 16476444 tsc 3593321568)
ACPI APIC Table: &amp;lt;ALASKA A M I &amp;gt;
Package ID shift: 7
L3 cache ID shift: 3
L2 cache ID shift: 1
L1 cache ID shift: 1
Core ID shift: 1
INTR: Adding local APIC 2 as a target
INTR: Adding local APIC 4 as a target
INTR: Adding local APIC 6 as a target
INTR: Adding local APIC 8 as a target
INTR: Adding local APIC 10 as a target
INTR: Adding local APIC 12 as a target
INTR: Adding local APIC 14 as a target
FreeBSD/SMP: Multiprocessor System Detected: 16 CPUs
FreeBSD/SMP: 1 package(s) x 2 cache groups x 4 core(s) x 2 hardware threads
Package HW ID = 0
	Core HW ID = 0
		CPU0 (BSP): APIC ID: 0
		CPU1 (AP/HT): APIC ID: 1
	Core HW ID = 1
		CPU2 (AP): APIC ID: 2
		CPU3 (AP/HT): APIC ID: 3
	Core HW ID = 2
		CPU4 (AP): APIC ID: 4
		CPU5 (AP/HT): APIC ID: 5
	Core HW ID = 3
		CPU6 (AP): APIC ID: 6
		CPU7 (AP/HT): APIC ID: 7
	Core HW ID = 4
		CPU8 (AP): APIC ID: 8
		CPU9 (AP/HT): APIC ID: 9
	Core HW ID = 5
		CPU10 (AP): APIC ID: 10
		CPU11 (AP/HT): APIC ID: 11
	Core HW ID = 6
		CPU12 (AP): APIC ID: 12
		CPU13 (AP/HT): APIC ID: 13
	Core HW ID = 7
		CPU14 (AP): APIC ID: 14
		CPU15 (AP/HT): APIC ID: 15
APIC: CPU 0 has ACPI ID 0
APIC: CPU 1 has ACPI ID 1
APIC: CPU 2 has ACPI ID 2
APIC: CPU 3 has ACPI ID 3
APIC: CPU 4 has ACPI ID 4
APIC: CPU 5 has ACPI ID 5
APIC: CPU 6 has ACPI ID 6
APIC: CPU 7 has ACPI ID 7
APIC: CPU 8 has ACPI ID 8
APIC: CPU 9 has ACPI ID 9
APIC: CPU 10 has ACPI ID 10
APIC: CPU 11 has ACPI ID 11
APIC: CPU 12 has ACPI ID 12
APIC: CPU 13 has ACPI ID 13
APIC: CPU 14 has ACPI ID 14
APIC: CPU 15 has ACPI ID 15
x86bios:  IVT 0x000000-0x0004ff at 0xfffff80000000000
x86bios: SSEG 0x09e000-0x09efff at 0xfffffe0003fb4000
x86bios:  ROM 0x0a0000-0x0fefff at 0xfffff800000a0000
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 7
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 8
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 9
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 10
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 11
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 12
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 13
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 14
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 17
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 18
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 19
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 20
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 27
Pentium Pro MTRR support enabled
random: read 3840 bytes from preloaded cache
random: unblocking device.
arc4random: read 32 bytes from preloaded cache
VIMAGE (virtualized network stack) enabled
ULE: setup cpu 0
ULE: setup cpu 1
ULE: setup cpu 2
ULE: setup cpu 3
ULE: setup cpu 4
ULE: setup cpu 5
ULE: setup cpu 6
ULE: setup cpu 7
ULE: setup cpu 8
ULE: setup cpu 9
ULE: setup cpu 10
ULE: setup cpu 11
ULE: setup cpu 12
ULE: setup cpu 13
ULE: setup cpu 14
ULE: setup cpu 15
ACPI: RSDP 0x00000000CBFF5014 000024 (v02 ALASKA)
ACPI: XSDT 0x00000000CBFF4728 0000DC (v01 ALASKA A M I    01072009 AMI  01000013)
ACPI: FACP 0x00000000CAA32000 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
ACPI: DSDT 0x00000000CAA2B000 006218 (v02 ALASKA A M I    01072009 INTL 20120913)
ACPI: FACS 0x00000000CAFEF000 000040
ACPI: SSDT 0x00000000CAA38000 007229 (v02 AMD    AmdTable 00000002 MSFT 04000000)
ACPI: SSDT 0x00000000CAA34000 003A78 (v01 AMD    AMD AOD  00000001 INTL 20120913)
ACPI: SSDT 0x00000000CAA33000 000221 (v02 ALASKA CPUSSDT  01072009 AMI  01072009)
ACPI: FIDT 0x00000000CAA2A000 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
ACPI: MCFG 0x00000000CAA29000 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
ACPI: AAFT 0x00000000CAA28000 0000ED (v01 ALASKA OEMAAFT  01072009 MSFT 00000097)
ACPI: HPET 0x00000000CAA27000 000038 (v01 ALASKA A M I    01072009 AMI  00000005)
ACPI: VFCT 0x00000000CAA19000 00D484 (v01 ALASKA A M I    00000001 AMD  31504F47)
ACPI: BGRT 0x00000000CAA18000 000038 (v01 ALASKA A M I    01072009 AMI  00010013)
ACPI: SSDT 0x00000000CAA14000 0035A4 (v02 AMD    AmdTable 00000001 AMD  00000001)
ACPI: CRAT 0x00000000CAA13000 000F28 (v01 AMD    AmdTable 00000001 AMD  00000001)
ACPI: CDIT 0x00000000CAA12000 000029 (v01 AMD    AmdTable 00000001 AMD  00000001)
ACPI: SSDT 0x00000000CAA11000 000D37 (v01 AMD    AmdTable 00000001 INTL 20120913)
ACPI: SSDT 0x00000000CAA0F000 0010A5 (v01 AMD    AmdTable 00000001 INTL 20120913)
ACPI: SSDT 0x00000000CAA0B000 00326A (v01 AMD    AmdTable 00000001 INTL 20120913)
ACPI: WSMT 0x00000000CAA0A000 000028 (v01 ALASKA A M I    01072009 AMI  00010013)
ACPI: APIC 0x00000000CAA09000 00015E (v03 ALASKA A M I    01072009 AMI  00010013)
ACPI: SSDT 0x00000000CAA08000 000517 (v01 AMD    AmdTable 00000001 INTL 20120913)
ACPI: SSDT 0x00000000CAA07000 00007D (v01 AMD    AmdTable 00000001 INTL 20120913)
ACPI: SSDT 0x00000000CAA05000 0010AF (v01 AMD    AmdTable 00000001 INTL 20120913)
ACPI: SSDT 0x00000000CAA04000 0000BF (v01 AMD    AmdTable 00001000 INTL 20120913)
ACPI: FPDT 0x00000000CAA03000 000044 (v01 ALASKA A M I    01072009 AMI  01000013)
MADT: Found IO APIC ID 17, Interrupt 0 at 0xfec00000
ioapic0: Changing APIC ID to 17
ioapic0: ver 0x21 maxredir 0x17
ioapic0: Routing external 8259A&amp;#039;s -&amp;gt; intpin 0
MADT: Found IO APIC ID 18, Interrupt 24 at 0xfec01000
ioapic1: Changing APIC ID to 18
ioapic1: ver 0x21 maxredir 0x1f
lapic: Routing NMI -&amp;gt; LINT1
lapic: LINT1 trigger: edge
lapic: LINT1 polarity: high
MADT: Interrupt override: source 0, irq 2
ioapic0: Routing IRQ 0 -&amp;gt; intpin 2
MADT: Interrupt override: source 9, irq 9
ioapic0: intpin 9 trigger: level
ioapic0: intpin 9 polarity: low
ioapic0 &amp;lt;Version 2.1&amp;gt; irqs 0-23 on motherboard
ioapic1 &amp;lt;Version 2.1&amp;gt; irqs 24-55 on motherboard
lapic: Divisor 2, Frequency 49907242 Hz
cpu0 BSP:
     ID: 0x00000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic14: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic14: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic14: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic14: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic14: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic14: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #14 Launched!
cpu14 AP:
     ID: 0x0e000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic15: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic15: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic15: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic15: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic15: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic15: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #15 Launched!
cpu15 AP:
     ID: 0x0f000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic1: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic1: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic1: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic1: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic1: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic1: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #1 Launched!
cpu1 AP:
     ID: 0x01000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic7: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic7: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic7: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic7: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic7: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic7: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #7 Launched!
cpu7 AP:
     ID: 0x07000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic5: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic5: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic5: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic5: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic5: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic5: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #5 Launched!
cpu5 AP:
     ID: 0x05000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic3: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic3: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic3: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic3: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic3: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic3: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #3 Launched!
cpu3 AP:
     ID: 0x03000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic10: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic10: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic10: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic10: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic10: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic10: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #10 Launched!
cpu10 AP:
     ID: 0x0a000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic2: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic2: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic2: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic2: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic2: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic2: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #2 Launched!
cpu2 AP:
     ID: 0x02000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic9: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic9: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic9: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic9: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic9: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic9: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #9 Launched!
cpu9 AP:
     ID: 0x09000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic13: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic13: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic13: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic13: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic13: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic13: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #13 Launched!
cpu13 AP:
     ID: 0x0d000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic6: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic6: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic6: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic6: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic6: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic6: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #6 Launched!
cpu6 AP:
     ID: 0x06000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic12: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic12: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic12: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic12: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic12: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic12: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #12 Launched!
cpu12 AP:
     ID: 0x0c000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic11: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic11: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic11: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic11: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic11: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic11: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #11 Launched!
cpu11 AP:
     ID: 0x0b000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic8: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic8: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic8: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic8: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic8: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic8: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #8 Launched!
cpu8 AP:
     ID: 0x08000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic4: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic4: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic4: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic4: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic4: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic4: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #4 Launched!
cpu4 AP:
     ID: 0x04000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
SMP: passed TSC synchronization test
TSC timecounter discards lower 1 bit(s)
Timecounter &amp;quot;TSC-low&amp;quot; frequency 1796660784 Hz quality 1000
wlan: &amp;lt;802.11 Link Layer&amp;gt;
snd_unit_init() u=0x00ff8000 [512] d=0x00007c00 [32] c=0x000003ff [1024]
feeder_register: snd_unit=-1 snd_maxautovchans=16 latency=2 feeder_rate_min=1 feeder_rate_max=2016000 feeder_rate_round=25
random: entropy device external interface
mem: &amp;lt;memory&amp;gt;
000.000019 [4335] netmap_init               netmap: loaded module
null: &amp;lt;full device, null device, zero device&amp;gt;
[ath_hal] loaded
nfslock: pseudo-device
crypto: &amp;lt;crypto core&amp;gt;
tcp_log: tcp_log device
module_register_init: MOD_LOAD (vesa, 0xffffffff8112e0f0, 0) error 19
io: &amp;lt;I/O&amp;gt;
random: registering fast source Intel Secure Key RNG
random: fast provider: &amp;quot;Intel Secure Key RNG&amp;quot;
kbd: new array size 4
kbd1 at kbdmux0
hpt27xx: RocketRAID 27xx controller driver v1.2.8
hptnr: R750/DC7280 controller driver v1.1.5
hptrr: RocketRAID 17xx/2xxx SATA controller driver v1.2
nexus0
efirtc0: &amp;lt;EFI Realtime Clock&amp;gt; on motherboard
efirtc0: registered as a time-of-day clock, resolution 1.000000s
cryptosoft0: &amp;lt;software crypto&amp;gt; on motherboard
crypto: assign cryptosoft0 driver id 0, flags 0x6000000
crypto: cryptosoft0 registers alg 1 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 2 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 3 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 4 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 5 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 16 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 6 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 7 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 32 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 18 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 19 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 20 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 8 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 15 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 9 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 10 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 13 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 14 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 34 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 35 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 36 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 37 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 11 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 22 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 23 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 25 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 24 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 26 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 27 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 28 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 21 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 17 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 29 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 30 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 31 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 40 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 39 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 38 flags 0 maxoplen 0
acpi0: &amp;lt;ALASKA A M I &amp;gt; on motherboard
ACPI: 12 ACPI AML tables successfully acquired and loaded
PCIe: Memory Mapped configuration base @ 0xf0000000
ioapic0: routing intpin 9 (ISA IRQ 9) to lapic 0 vector 48
acpi0: Power Button (fixed)
acpi0: wakeup code va 0xfffffe0003fff000 pa 0x9c000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
attimer0: &amp;lt;AT timer&amp;gt; port 0x40-0x43 irq 0 on acpi0
Timecounter &amp;quot;i8254&amp;quot; frequency 1193182 Hz quality 0
ioapic0: routing intpin 2 (ISA IRQ 0) to lapic 2 vector 48
Event timer &amp;quot;i8254&amp;quot; frequency 1193182 Hz quality 100
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
atrtc0: &amp;lt;AT realtime clock&amp;gt; port 0x70-0x71 on acpi0
atrtc0: registered as a time-of-day clock, resolution 1.000000s
ioapic0: routing intpin 8 (ISA IRQ 8) to lapic 4 vector 48
ioapic0: routing intpin 8 (ISA IRQ 8) to lapic 0 vector 49
Event timer &amp;quot;RTC&amp;quot; frequency 32768 Hz quality 0
hpet0: &amp;lt;High Precision Event Timer&amp;gt; iomem 0xfed00000-0xfed003ff irq 0,8 on acpi0
hpet0: vendor 0x1022, rev 0x1, 14318180Hz, 3 timers, legacy route
hpet0:  t0: irqs 0x00c00000 (0), MSI, periodic
hpet0:  t1: irqs 0x00c00000 (0), MSI, periodic
hpet0:  t2: irqs 0x00c00000 (0), MSI, periodic
Timecounter &amp;quot;HPET&amp;quot; frequency 14318180 Hz quality 950
msi: routing MSI-X IRQ 256 to local APIC 6 vector 48
msi: routing MSI-X IRQ 257 to local APIC 8 vector 48
msi: routing MSI-X IRQ 258 to local APIC 10 vector 48
msi: Assigning MSI-X IRQ 256 to local APIC 0 vector 50
msi: Assigning MSI-X IRQ 257 to local APIC 0 vector 51
msi: Assigning MSI-X IRQ 258 to local APIC 0 vector 52
Event timer &amp;quot;HPET&amp;quot; frequency 14318180 Hz quality 350
Event timer &amp;quot;HPET1&amp;quot; frequency 14318180 Hz quality 350
Event timer &amp;quot;HPET2&amp;quot; frequency 14318180 Hz quality 350
ACPI timer: 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/2 -&amp;gt; 10
Timecounter &amp;quot;ACPI-fast&amp;quot; frequency 3579545 Hz quality 900
acpi_timer0: &amp;lt;32-bit timer at 3.579545MHz&amp;gt; port 0x808-0x80b on acpi0
pci_link0:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
pci_link1:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
pci_link2:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
pci_link3:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
pci_link4:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
pci_link5:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
pci_link6:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
pci_link7:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
pcib0: &amp;lt;ACPI Host-PCI bridge&amp;gt; port 0xcf8-0xcff on acpi0
pcib0: decoding 5 range 0-0xff
pcib0: decoding 4 range 0-0x3af
pcib0: decoding 4 range 0x3e0-0xcf7
pcib0: decoding 4 range 0x3b0-0x3df
pcib0: decoding 4 range 0xd00-0xffff
pcib0: decoding 3 range 0xa0000-0xbffff
pcib0: decoding 3 range 0xc0000-0xdffff
pcib0: decoding 3 range 0xd0000000-0xfec2ffff
pcib0: decoding 3 range 0xfee00000-0xffffffff
pci0: &amp;lt;ACPI PCI bus&amp;gt; on pcib0
pci0: domain=0, physical bus=0
found-&amp;gt;	vendor=0x1022, dev=0x1630, revid=0x00
	domain=0, bus=0, slot=0, func=0
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x1632, revid=0x00
	domain=0, bus=0, slot=1, func=0
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x1633, revid=0x00
	domain=0, bus=0, slot=1, func=1
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=1, subbus=2
found-&amp;gt;	vendor=0x1022, dev=0x1632, revid=0x00
	domain=0, bus=0, slot=2, func=0
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x1634, revid=0x00
	domain=0, bus=0, slot=2, func=1
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=3, subbus=12
found-&amp;gt;	vendor=0x1022, dev=0x1632, revid=0x00
	domain=0, bus=0, slot=8, func=0
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x1635, revid=0x00
	domain=0, bus=0, slot=8, func=1
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=13, subbus=13
found-&amp;gt;	vendor=0x1022, dev=0x790b, revid=0x51
	domain=0, bus=0, slot=20, func=0
	class=0c-05-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0403, statreg=0x0220, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x790e, revid=0x51
	domain=0, bus=0, slot=20, func=3
	class=06-01-00, hdrtype=0x00, mfdev=1
	cmdreg=0x000f, statreg=0x0220, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x1448, revid=0x00
	domain=0, bus=0, slot=24, func=0
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x1449, revid=0x00
	domain=0, bus=0, slot=24, func=1
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x144a, revid=0x00
	domain=0, bus=0, slot=24, func=2
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x144b, revid=0x00
	domain=0, bus=0, slot=24, func=3
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x144c, revid=0x00
	domain=0, bus=0, slot=24, func=4
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x144d, revid=0x00
	domain=0, bus=0, slot=24, func=5
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x144e, revid=0x00
	domain=0, bus=0, slot=24, func=6
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x144f, revid=0x00
	domain=0, bus=0, slot=24, func=7
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
pcib1: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 1.1 on pci0
pcib0: allocated type 4 (0xf000-0xffff) for rid 1c of pcib1
pcib0: allocated type 3 (0xfc900000-0xfccfffff) for rid 20 of pcib1
pcib0: allocated type 3 (0xe0300000-0xe06fffff) for rid 24 of pcib1
pcib1:   domain            0
pcib1:   secondary bus     1
pcib1:   subordinate bus   2
pcib1:   I/O decode        0xf000-0xffff
pcib1:   memory decode     0xfc900000-0xfccfffff
pcib1:   prefetched decode 0xe0300000-0xe06fffff
pci1: &amp;lt;ACPI PCI bus&amp;gt; on pcib1
pcib1: allocated bus range (1-1) for rid 0 of pci1
pci1: domain=0, physical bus=1
found-&amp;gt;	vendor=0x8086, dev=0x10fb, revid=0x01
	domain=0, bus=1, slot=0, func=0
	class=02-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=b, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit, vector masks
	MSI-X supports 64 messages in map 0x20
	map[10]: type Memory, range 64, base 0xfca00000, size 20, memory disabled
pcib1: allocated memory range (0xfca00000-0xfcafffff) for rid 10 of pci0:1:0:0
	map[18]: type I/O Port, range 32, base 0xf020, size  5, port disabled
pcib1: allocated I/O port range (0xf020-0xf03f) for rid 18 of pci0:1:0:0
	map[20]: type Memory, range 64, base 0xfcc04000, size 14, enabled
pcib1: allocated memory range (0xfcc04000-0xfcc07fff) for rid 20 of pci0:1:0:0
found-&amp;gt;	vendor=0x8086, dev=0x10fb, revid=0x01
	domain=0, bus=1, slot=0, func=1
	class=02-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit, vector masks
	MSI-X supports 64 messages in map 0x20
	map[10]: type Memory, range 64, base 0xfc900000, size 20, memory disabled
pcib1: allocated memory range (0xfc900000-0xfc9fffff) for rid 10 of pci0:1:0:1
	map[18]: type I/O Port, range 32, base 0xf000, size  5, port disabled
pcib1: allocated I/O port range (0xf000-0xf01f) for rid 18 of pci0:1:0:1
	map[20]: type Memory, range 64, base 0xfcc00000, size 14, enabled
pcib1: allocated memory range (0xfcc00000-0xfcc03fff) for rid 20 of pci0:1:0:1
ix0: &amp;lt;Intel(R) PRO/10GbE PCI-Express Network Driver, Version - 3.3.14&amp;gt; port 0xf020-0xf03f mem 0xfca00000-0xfcafffff,0xfcc04000-0xfcc07fff at device 0.0 on pci1
ix0: attempting to allocate 9 MSI-X vectors (64 supported)
msi: routing MSI-X IRQ 259 to local APIC 12 vector 48
msi: routing MSI-X IRQ 260 to local APIC 14 vector 48
msi: routing MSI-X IRQ 261 to local APIC 0 vector 53
msi: routing MSI-X IRQ 262 to local APIC 2 vector 49
msi: routing MSI-X IRQ 263 to local APIC 4 vector 48
msi: routing MSI-X IRQ 264 to local APIC 6 vector 48
msi: routing MSI-X IRQ 265 to local APIC 8 vector 48
msi: routing MSI-X IRQ 266 to local APIC 10 vector 48
msi: routing MSI-X IRQ 267 to local APIC 12 vector 49
ix0: using IRQs 259-267 for MSI-X
ix0: Using MSI-X interrupts with 9 vectors
ix0: bpf attached
ix0: Ethernet address: 38:ea:a7:8e:91:38
msi: Assigning MSI-X IRQ 259 to local APIC 0 vector 54
msi: Assigning MSI-X IRQ 260 to local APIC 1 vector 48
msi: Assigning MSI-X IRQ 261 to local APIC 2 vector 50
msi: Assigning MSI-X IRQ 262 to local APIC 3 vector 48
msi: Assigning MSI-X IRQ 264 to local APIC 5 vector 48
msi: Assigning MSI-X IRQ 265 to local APIC 6 vector 48
msi: Assigning MSI-X IRQ 266 to local APIC 7 vector 48
ix0: PCI Express Bus: Speed 5.0GT/s Width x8
ix1: &amp;lt;Intel(R) PRO/10GbE PCI-Express Network Driver, Version - 3.3.14&amp;gt; port 0xf000-0xf01f mem 0xfc900000-0xfc9fffff,0xfcc00000-0xfcc03fff at device 0.1 on pci1
ix1: attempting to allocate 9 MSI-X vectors (64 supported)
msi: routing MSI-X IRQ 268 to local APIC 14 vector 48
msi: routing MSI-X IRQ 269 to local APIC 0 vector 53
msi: routing MSI-X IRQ 270 to local APIC 2 vector 49
msi: routing MSI-X IRQ 271 to local APIC 4 vector 49
msi: routing MSI-X IRQ 272 to local APIC 6 vector 49
msi: routing MSI-X IRQ 273 to local APIC 8 vector 48
msi: routing MSI-X IRQ 274 to local APIC 10 vector 48
msi: routing MSI-X IRQ 275 to local APIC 12 vector 48
msi: routing MSI-X IRQ 276 to local APIC 14 vector 49
ix1: using IRQs 268-276 for MSI-X
ix1: Using MSI-X interrupts with 9 vectors
ix1: bpf attached
ix1: Ethernet address: 38:ea:a7:8e:91:39
msi: Assigning MSI-X IRQ 268 to local APIC 0 vector 55
msi: Assigning MSI-X IRQ 269 to local APIC 1 vector 49
msi: Assigning MSI-X IRQ 271 to local APIC 3 vector 49
msi: Assigning MSI-X IRQ 272 to local APIC 4 vector 49
msi: Assigning MSI-X IRQ 273 to local APIC 5 vector 49
msi: Assigning MSI-X IRQ 274 to local APIC 6 vector 49
msi: Assigning MSI-X IRQ 275 to local APIC 7 vector 49
ix1: PCI Express Bus: Speed 5.0GT/s Width x8
pcib2: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 2.1 on pci0
pcib0: allocated type 4 (0xe000-0xefff) for rid 1c of pcib2
pcib0: allocated type 3 (0xfcd00000-0xfcffffff) for rid 20 of pcib2
pcib2:   domain            0
pcib2:   secondary bus     3
pcib2:   subordinate bus   12
pcib2:   I/O decode        0xe000-0xefff
pcib2:   memory decode     0xfcd00000-0xfcffffff
pci2: &amp;lt;ACPI PCI bus&amp;gt; on pcib2
pcib2: allocated bus range (3-3) for rid 0 of pci2
pci2: domain=0, physical bus=3
found-&amp;gt;	vendor=0x1022, dev=0x43ee, revid=0x00
	domain=0, bus=3, slot=0, func=0
	class=0c-03-30, hdrtype=0x00, mfdev=1
	cmdreg=0x0006, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 8 messages, 64 bit
	MSI-X supports 8 messages in map 0x10
	map[10]: type Memory, range 64, base 0xfcfa0000, size 15, enabled
pcib2: allocated memory range (0xfcfa0000-0xfcfa7fff) for rid 10 of pci0:3:0:0
found-&amp;gt;	vendor=0x1022, dev=0x43eb, revid=0x00
	domain=0, bus=3, slot=0, func=1
	class=01-06-01, hdrtype=0x00, mfdev=1
	cmdreg=0x0006, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=b, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[24]: type Memory, range 32, base 0xfcf80000, size 17, enabled
pcib2: allocated memory range (0xfcf80000-0xfcf9ffff) for rid 24 of pci0:3:0:1
found-&amp;gt;	vendor=0x1022, dev=0x43e9, revid=0x00
	domain=0, bus=3, slot=0, func=2
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=4, subbus=12
pcib2: allocated bus range (4-12) for rid 0 of pci0:3:0:2
xhci0: &amp;lt;XHCI (generic) USB 3.0 controller&amp;gt; mem 0xfcfa0000-0xfcfa7fff at device 0.0 on pci2
xhci0: 32 bytes context size, 64-bit DMA
xhci0: Unable to map MSI-X table
xhci0: attempting to allocate 1 MSI vectors (8 supported)
msi: routing MSI IRQ 277 to local APIC 0 vector 53
xhci0: using IRQ 277 for MSI
xhci0: MSI enabled
usbus0 on xhci0
xhci0: usbpf: Attached
usbus0: 5.0Gbps Super Speed USB v3.0
ahci0: &amp;lt;AHCI SATA controller&amp;gt; mem 0xfcf80000-0xfcf9ffff at device 0.1 on pci2
ahci0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 278 to local APIC 2 vector 51
ahci0: using IRQ 278 for MSI
ahci0: AHCI v1.31 with 6 6Gbps ports, Port Multiplier supported
ahci0: Caps: 64bit NCQ SNTF SS ALP AL CLO 6Gbps PM PMD SSC PSC 32cmd eSATA 6ports
ahci0: Caps2: DESO SADM SDS APST
ahcich0: &amp;lt;AHCI channel&amp;gt; at channel 0 on ahci0
ahcich0: Caps: HPCP
ahcich1: &amp;lt;AHCI channel&amp;gt; at channel 1 on ahci0
ahcich1: Caps: HPCP
ahcich2: &amp;lt;AHCI channel&amp;gt; at channel 2 on ahci0
ahcich2: Caps: HPCP
ahcich3: &amp;lt;AHCI channel&amp;gt; at channel 3 on ahci0
ahcich3: Caps: HPCP
ahcich4: &amp;lt;AHCI channel&amp;gt; at channel 4 on ahci0
ahcich4: Caps: HPCP
ahcich5: &amp;lt;AHCI channel&amp;gt; at channel 5 on ahci0
ahcich5: Caps: HPCP
pcib3: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 0.2 on pci2
pcib2: allocated I/O port range (0xe000-0xefff) for rid 1c of pcib3
pcib2: allocated memory range (0xfcd00000-0xfcefffff) for rid 20 of pcib3
pcib3:   domain            0
pcib3:   secondary bus     4
pcib3:   subordinate bus   12
pcib3:   I/O decode        0xe000-0xefff
pcib3:   memory decode     0xfcd00000-0xfcefffff
pcib3: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02 - AE_NOT_FOUND
pci3: &amp;lt;ACPI PCI bus&amp;gt; on pcib3
pcib3: allocated bus range (4-4) for rid 0 of pci3
pci3: domain=0, physical bus=4
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=0, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=5, subbus=5
pcib3: allocated bus range (5-5) for rid 0 of pci0:4:0:0
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=1, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=6, subbus=6
pcib3: allocated bus range (6-6) for rid 0 of pci0:4:1:0
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=2, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=7, subbus=7
pcib3: allocated bus range (7-7) for rid 0 of pci0:4:2:0
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=3, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=8, subbus=8
pcib3: allocated bus range (8-8) for rid 0 of pci0:4:3:0
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=6, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=9, subbus=9
pcib3: allocated bus range (9-9) for rid 0 of pci0:4:6:0
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=7, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=10, subbus=10
pcib3: allocated bus range (10-10) for rid 0 of pci0:4:7:0
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=8, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=11, subbus=11
pcib3: allocated bus range (11-11) for rid 0 of pci0:4:8:0
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=9, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=12, subbus=12
pcib3: allocated bus range (12-12) for rid 0 of pci0:4:9:0
pcib4: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 0.0 on pci3
pcib3: allocated I/O port range (0xe000-0xefff) for rid 1c of pcib4
pcib3: allocated memory range (0xfce00000-0xfcefffff) for rid 20 of pcib4
pcib4:   domain            0
pcib4:   secondary bus     5
pcib4:   subordinate bus   5
pcib4:   I/O decode        0xe000-0xefff
pcib4:   memory decode     0xfce00000-0xfcefffff
pcib4: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT20 - AE_NOT_FOUND
pci4: &amp;lt;ACPI PCI bus&amp;gt; on pcib4
pcib4: allocated bus range (5-5) for rid 0 of pci4
pci4: domain=0, physical bus=5
found-&amp;gt;	vendor=0x10ec, dev=0x8168, revid=0x15
	domain=0, bus=5, slot=0, func=0
	class=02-00-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D1 D2 D3  current D0
	MSI supports 1 message, 64 bit
	MSI-X supports 4 messages in map 0x20
	map[10]: type I/O Port, range 32, base 0xe000, size  8, enabled
pcib4: allocated I/O port range (0xe000-0xe0ff) for rid 10 of pci0:5:0:0
	map[18]: type Memory, range 64, base 0xfce04000, size 12, enabled
pcib4: allocated memory range (0xfce04000-0xfce04fff) for rid 18 of pci0:5:0:0
	map[20]: type Memory, range 64, base 0xfce00000, size 14, enabled
pcib4: allocated memory range (0xfce00000-0xfce03fff) for rid 20 of pci0:5:0:0
re0: &amp;lt;RealTek 8168/8111 B/C/CP/D/DP/E/F/G PCIe Gigabit Ethernet&amp;gt; port 0xe000-0xe0ff mem 0xfce04000-0xfce04fff,0xfce00000-0xfce03fff at device 0.0 on pci4
re0: MSI count : 1
re0: MSI-X count : 4
re0: attempting to allocate 1 MSI-X vectors (4 supported)
msi: routing MSI-X IRQ 279 to local APIC 4 vector 50
re0: using IRQ 279 for MSI-X
re0: Using 1 MSI-X message
re0: turning off MSI enable bit.
re0: ASPM disabled
re0: Chip rev. 0x54000000
re0: MAC rev. 0x00100000
miibus0: &amp;lt;MII bus&amp;gt; on re0
rgephy0: &amp;lt;RTL8251/8153 1000BASE-T media interface&amp;gt; PHY 1 on miibus0
rgephy0: OUI 0x00e04c, model 0x0000, rev. 0
rgephy0:  none, 10baseT, 10baseT-FDX, 10baseT-FDX-flow, 100baseTX, 100baseTX-FDX, 100baseTX-FDX-flow, 1000baseT-FDX, 1000baseT-FDX-master, 1000baseT-FDX-flow, 1000baseT-FDX-flow-master, auto, auto-flow
re0: Using defaults for TSO: 65518/35/2048
re0: bpf attached
re0: Ethernet address: a8:a1:59:34:3f:7f
re0: netmap queues/slots: TX 1/256, RX 1/256
pcib5: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 1.0 on pci3
pcib3: allocated memory range (0xfcd00000-0xfcdfffff) for rid 20 of pcib5
pcib5:   domain            0
pcib5:   secondary bus     6
pcib5:   subordinate bus   6
pcib5:   memory decode     0xfcd00000-0xfcdfffff
pcib5: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT21 - AE_NOT_FOUND
pci5: &amp;lt;ACPI PCI bus&amp;gt; on pcib5
pcib5: allocated bus range (6-6) for rid 0 of pci5
pci5: domain=0, physical bus=6
found-&amp;gt;	vendor=0x8086, dev=0x24fb, revid=0x10
	domain=0, bus=6, slot=0, func=0
	class=02-80-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0000, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 64, base 0xfcd00000, size 13, memory disabled
pcib5: allocated memory range (0xfcd00000-0xfcd01fff) for rid 10 of pci0:6:0:0
pci5: &amp;lt;network&amp;gt; at device 0.0 (no driver attached)
pcib6: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 2.0 on pci3
pcib6:   domain            0
pcib6:   secondary bus     7
pcib6:   subordinate bus   7
pcib6: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT22 - AE_NOT_FOUND
pci6: &amp;lt;ACPI PCI bus&amp;gt; on pcib6
pcib6: allocated bus range (7-7) for rid 0 of pci6
pci6: domain=0, physical bus=7
pcib7: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 3.0 on pci3
pcib7:   domain            0
pcib7:   secondary bus     8
pcib7:   subordinate bus   8
pcib7: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT23 - AE_NOT_FOUND
pci7: &amp;lt;ACPI PCI bus&amp;gt; on pcib7
pcib7: allocated bus range (8-8) for rid 0 of pci7
pci7: domain=0, physical bus=8
pcib8: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 6.0 on pci3
pcib8:   domain            0
pcib8:   secondary bus     9
pcib8:   subordinate bus   9
pcib8: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT26 - AE_NOT_FOUND
pci8: &amp;lt;ACPI PCI bus&amp;gt; on pcib8
pcib8: allocated bus range (9-9) for rid 0 of pci8
pci8: domain=0, physical bus=9
pcib9: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 7.0 on pci3
pcib9:   domain            0
pcib9:   secondary bus     10
pcib9:   subordinate bus   10
pcib9: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT27 - AE_NOT_FOUND
pci9: &amp;lt;ACPI PCI bus&amp;gt; on pcib9
pcib9: allocated bus range (10-10) for rid 0 of pci9
pci9: domain=0, physical bus=10
pcib10: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 8.0 on pci3
pcib10:   domain            0
pcib10:   secondary bus     11
pcib10:   subordinate bus   11
pcib10: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT28 - AE_NOT_FOUND
pci10: &amp;lt;ACPI PCI bus&amp;gt; on pcib10
pcib10: allocated bus range (11-11) for rid 0 of pci10
pci10: domain=0, physical bus=11
pcib11: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 9.0 on pci3
pcib11:   domain            0
pcib11:   secondary bus     12
pcib11:   subordinate bus   12
pcib11: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT29 - AE_NOT_FOUND
pci11: &amp;lt;ACPI PCI bus&amp;gt; on pcib11
pcib11: allocated bus range (12-12) for rid 0 of pci11
pci11: domain=0, physical bus=12
pcib12: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 8.1 on pci0
pcib0: allocated type 4 (0xd000-0xdfff) for rid 1c of pcib12
pcib0: allocated type 3 (0xfc500000-0xfc8fffff) for rid 20 of pcib12
pcib0: allocated type 3 (0xd0000000-0xe01fffff) for rid 24 of pcib12
pcib12:   domain            0
pcib12:   secondary bus     13
pcib12:   subordinate bus   13
pcib12:   I/O decode        0xd000-0xdfff
pcib12:   memory decode     0xfc500000-0xfc8fffff
pcib12:   prefetched decode 0xd0000000-0xe01fffff
pci12: &amp;lt;ACPI PCI bus&amp;gt; on pcib12
pcib12: allocated bus range (13-13) for rid 0 of pci12
pci12: domain=0, physical bus=13
found-&amp;gt;	vendor=0x1002, dev=0x1636, revid=0xd8
	domain=0, bus=13, slot=0, func=0
	class=03-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0006, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 4 messages, 64 bit
	MSI-X supports 4 messages in map 0x24
	map[10]: type Prefetchable Memory, range 64, base 0xd0000000, size 28, enabled
pcib12: allocated prefetch range (0xd0000000-0xdfffffff) for rid 10 of pci0:13:0:0
	map[18]: type Prefetchable Memory, range 64, base 0xe0000000, size 21, enabled
pcib12: allocated prefetch range (0xe0000000-0xe01fffff) for rid 18 of pci0:13:0:0
	map[20]: type I/O Port, range 32, base 0xd000, size  8, port disabled
pcib12: allocated I/O port range (0xd000-0xd0ff) for rid 20 of pci0:13:0:0
	map[24]: type Memory, range 32, base 0xfc800000, size 19, enabled
pcib12: allocated memory range (0xfc800000-0xfc87ffff) for rid 24 of pci0:13:0:0
found-&amp;gt;	vendor=0x1002, dev=0x1637, revid=0x00
	domain=0, bus=13, slot=0, func=1
	class=04-03-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=b, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 32, base 0xfc888000, size 14, memory disabled
pcib12: allocated memory range (0xfc888000-0xfc88bfff) for rid 10 of pci0:13:0:1
found-&amp;gt;	vendor=0x1022, dev=0x15df, revid=0x00
	domain=0, bus=13, slot=0, func=2
	class=10-80-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 2 messages, 64 bit
	MSI-X supports 2 messages in map 0x24
	map[18]: type Memory, range 32, base 0xfc700000, size 20, memory disabled
pcib12: allocated memory range (0xfc700000-0xfc7fffff) for rid 18 of pci0:13:0:2
	map[24]: type Memory, range 32, base 0xfc88c000, size 13, enabled
pcib12: allocated memory range (0xfc88c000-0xfc88dfff) for rid 24 of pci0:13:0:2
found-&amp;gt;	vendor=0x1022, dev=0x1639, revid=0x00
	domain=0, bus=13, slot=0, func=3
	class=0c-03-30, hdrtype=0x00, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=d, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 8 messages, 64 bit
	MSI-X supports 8 messages in map 0x10
	map[10]: type Memory, range 64, base 0xfc600000, size 20, enabled
pcib12: allocated memory range (0xfc600000-0xfc6fffff) for rid 10 of pci0:13:0:3
found-&amp;gt;	vendor=0x1022, dev=0x1639, revid=0x00
	domain=0, bus=13, slot=0, func=4
	class=0c-03-30, hdrtype=0x00, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 8 messages, 64 bit
	MSI-X supports 8 messages in map 0x10
	map[10]: type Memory, range 64, base 0xfc500000, size 20, enabled
pcib12: allocated memory range (0xfc500000-0xfc5fffff) for rid 10 of pci0:13:0:4
found-&amp;gt;	vendor=0x1022, dev=0x15e3, revid=0x00
	domain=0, bus=13, slot=0, func=6
	class=04-03-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 32, base 0xfc880000, size 15, memory disabled
pcib12: allocated memory range (0xfc880000-0xfc887fff) for rid 10 of pci0:13:0:6
vgapci0: &amp;lt;VGA-compatible display&amp;gt; port 0xd000-0xd0ff mem 0xd0000000-0xdfffffff,0xe0000000-0xe01fffff,0xfc800000-0xfc87ffff at device 0.0 on pci12
hdac0: &amp;lt;ATI (0x1637) HDA Controller&amp;gt; mem 0xfc888000-0xfc88bfff at device 0.1 on pci12
hdac0: PCI card vendor: 0x1002, device: 0x1637
hdac0: HDA Driver Revision: 20120126_0002
hdac0: Config options: on=0x00000000 off=0x00000000
hdac0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 280 to local APIC 6 vector 50
hdac0: using IRQ 280 for MSI
hdac0: Caps: OSS 4, ISS 0, BSS 0, NSDO 1, 64bit, CORB 256, RIRB 256
pci12: &amp;lt;encrypt/decrypt&amp;gt; at device 0.2 (no driver attached)
xhci1: &amp;lt;XHCI (generic) USB 3.0 controller&amp;gt; mem 0xfc600000-0xfc6fffff at device 0.3 on pci12
xhci1: 64 bytes context size, 64-bit DMA
xhci1: Unable to map MSI-X table
xhci1: attempting to allocate 1 MSI vectors (8 supported)
msi: routing MSI IRQ 281 to local APIC 8 vector 48
xhci1: using IRQ 281 for MSI
xhci1: MSI enabled
usbus1 on xhci1
xhci1: usbpf: Attached
usbus1: 5.0Gbps Super Speed USB v3.0
xhci2: &amp;lt;XHCI (generic) USB 3.0 controller&amp;gt; mem 0xfc500000-0xfc5fffff at device 0.4 on pci12
xhci2: 64 bytes context size, 64-bit DMA
xhci2: Unable to map MSI-X table
xhci2: attempting to allocate 1 MSI vectors (8 supported)
msi: routing MSI IRQ 282 to local APIC 10 vector 48
xhci2: using IRQ 282 for MSI
xhci2: MSI enabled
usbus2 on xhci2
xhci2: usbpf: Attached
usbus2: 5.0Gbps Super Speed USB v3.0
hdac1: &amp;lt;AMD (0x15e3) HDA Controller&amp;gt; mem 0xfc880000-0xfc887fff at device 0.6 on pci12
hdac1: PCI card vendor: 0x1849, device: 0x288a
hdac1: HDA Driver Revision: 20120126_0002
hdac1: Config options: on=0x00000000 off=0x00000000
hdac1: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 283 to local APIC 12 vector 48
hdac1: using IRQ 283 for MSI
hdac1: Caps: OSS 4, ISS 4, BSS 0, NSDO 1, 64bit, CORB 256, RIRB 256
pci0: &amp;lt;serial bus, SMBus&amp;gt; at device 20.0 (no driver attached)
isab0: &amp;lt;PCI-ISA bridge&amp;gt; at device 20.3 on pci0
isa0: &amp;lt;ISA bus&amp;gt; on isab0
acpi_button0: &amp;lt;Power Button&amp;gt; on acpi0
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
uart2: &amp;lt;16x50 with 256 byte FIFO&amp;gt; iomem 0xfedc9000-0xfedc9fff,0xfedc7000-0xfedc7fff irq 3 on acpi0
ioapic0: routing intpin 3 (ISA IRQ 3) to lapic 14 vector 48
uart2: fast interrupt
uart2: PPS capture mode: DCD
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
uart3: &amp;lt;16x50 with 256 byte FIFO&amp;gt; iomem 0xfedca000-0xfedcafff,0xfedc8000-0xfedc8fff irq 4 on acpi0
ioapic0: routing intpin 4 (ISA IRQ 4) to lapic 0 vector 56
uart3: fast interrupt
uart3: PPS capture mode: DCD
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
uart4: &amp;lt;16x50 with 256 byte FIFO&amp;gt; iomem 0xfedce000-0xfedcefff,0xfedcc000-0xfedccfff irq 3 on acpi0
uart4: fast interrupt
uart4: PPS capture mode: DCD
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
uart5: &amp;lt;16x50 with 256 byte FIFO&amp;gt; iomem 0xfedcf000-0xfedcffff,0xfedcd000-0xfedcdfff irq 4 on acpi0
uart5: fast interrupt
uart5: PPS capture mode: DCD
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
acpi_syscontainer0: &amp;lt;System Container&amp;gt; on acpi0
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
cpu0: Processor \134_SB_.PLTF.C000 (ACPI ID 0) -&amp;gt; APIC ID 0
cpu0: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu0: switching to generic Cx mode
cpu1: Processor \134_SB_.PLTF.C001 (ACPI ID 1) -&amp;gt; APIC ID 1
cpu1: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu2: Processor \134_SB_.PLTF.C002 (ACPI ID 2) -&amp;gt; APIC ID 2
cpu2: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu3: Processor \134_SB_.PLTF.C003 (ACPI ID 3) -&amp;gt; APIC ID 3
cpu3: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu4: Processor \134_SB_.PLTF.C004 (ACPI ID 4) -&amp;gt; APIC ID 4
cpu4: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu5: Processor \134_SB_.PLTF.C005 (ACPI ID 5) -&amp;gt; APIC ID 5
cpu5: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu6: Processor \134_SB_.PLTF.C006 (ACPI ID 6) -&amp;gt; APIC ID 6
cpu6: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu7: Processor \134_SB_.PLTF.C007 (ACPI ID 7) -&amp;gt; APIC ID 7
cpu7: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu8: Processor \134_SB_.PLTF.C008 (ACPI ID 8) -&amp;gt; APIC ID 8
cpu8: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu9: Processor \134_SB_.PLTF.C009 (ACPI ID 9) -&amp;gt; APIC ID 9
cpu9: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu10: Processor \134_SB_.PLTF.C00A (ACPI ID 10) -&amp;gt; APIC ID 10
cpu10: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu11: Processor \134_SB_.PLTF.C00B (ACPI ID 11) -&amp;gt; APIC ID 11
cpu11: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu12: Processor \134_SB_.PLTF.C00C (ACPI ID 12) -&amp;gt; APIC ID 12
cpu12: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu13: Processor \134_SB_.PLTF.C00D (ACPI ID 13) -&amp;gt; APIC ID 13
cpu13: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu14: Processor \134_SB_.PLTF.C00E (ACPI ID 14) -&amp;gt; APIC ID 14
cpu14: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu15: Processor \134_SB_.PLTF.C00F (ACPI ID 15) -&amp;gt; APIC ID 15
cpu15: &amp;lt;ACPI CPU&amp;gt; on acpi0
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
uart0: &amp;lt;16550 or compatible&amp;gt; port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0
uart0: fast interrupt
uart0: PPS capture mode: DCD
ACPI: Enabled 1 GPEs in block 00 to 1F
pcib0: allocated type 3 (0xa0000-0xa07ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa0800-0xa0fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa1000-0xa17ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa1800-0xa1fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa2000-0xa27ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa2800-0xa2fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa3000-0xa37ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa3800-0xa3fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa4000-0xa47ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa4800-0xa4fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa5000-0xa57ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa5800-0xa5fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa6000-0xa67ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa6800-0xa6fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa7000-0xa77ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa7800-0xa7fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa8000-0xa87ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa8800-0xa8fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa9000-0xa97ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa9800-0xa9fff) for rid 0 of orm0
pcib0: allocated type 3 (0xaa000-0xaa7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xaa800-0xaafff) for rid 0 of orm0
pcib0: allocated type 3 (0xab000-0xab7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xab800-0xabfff) for rid 0 of orm0
pcib0: allocated type 3 (0xac000-0xac7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xac800-0xacfff) for rid 0 of orm0
pcib0: allocated type 3 (0xad000-0xad7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xad800-0xadfff) for rid 0 of orm0
pcib0: allocated type 3 (0xae000-0xae7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xae800-0xaefff) for rid 0 of orm0
pcib0: allocated type 3 (0xaf000-0xaf7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xaf800-0xaffff) for rid 0 of orm0
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 (0xc0000-0xc07ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc0800-0xc0fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc1000-0xc17ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc1800-0xc1fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc2000-0xc27ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc2800-0xc2fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc3000-0xc37ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc3800-0xc3fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc4000-0xc47ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc4800-0xc4fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc5000-0xc57ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc5800-0xc5fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc6000-0xc67ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc6800-0xc6fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc7000-0xc77ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc7800-0xc7fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc8000-0xc87ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc8800-0xc8fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc9000-0xc97ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc9800-0xc9fff) for rid 0 of orm0
pcib0: allocated type 3 (0xca000-0xca7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xca800-0xcafff) for rid 0 of orm0
pcib0: allocated type 3 (0xcb000-0xcb7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xcb800-0xcbfff) for rid 0 of orm0
pcib0: allocated type 3 (0xcc000-0xcc7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xcc800-0xccfff) for rid 0 of orm0
pcib0: allocated type 3 (0xcd000-0xcd7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xcd800-0xcdfff) for rid 0 of orm0
pcib0: allocated type 3 (0xce000-0xce7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xce800-0xcefff) for rid 0 of orm0
pcib0: allocated type 3 (0xcf000-0xcf7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xcf800-0xcffff) for rid 0 of orm0
pcib0: allocated type 3 (0xd0000-0xd07ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd0800-0xd0fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd1000-0xd17ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd1800-0xd1fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd2000-0xd27ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd2800-0xd2fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd3000-0xd37ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd3800-0xd3fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd4000-0xd47ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd4800-0xd4fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd5000-0xd57ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd5800-0xd5fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd6000-0xd67ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd6800-0xd6fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd7000-0xd77ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd7800-0xd7fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd8000-0xd87ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd8800-0xd8fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd9000-0xd97ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd9800-0xd9fff) for rid 0 of orm0
pcib0: allocated type 3 (0xda000-0xda7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xda800-0xdafff) for rid 0 of orm0
pcib0: allocated type 3 (0xdb000-0xdb7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xdb800-0xdbfff) 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
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
isa_probe_children: disabling PnP devices
atrtc: atrtc0 already exists; skipping it
attimer: attimer0 already exists; skipping it
sc: sc0 already exists; skipping it
uart: uart0 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 (0x60-0x60) for rid 0 of atkbdc0
pcib0: allocated type 4 (0x64-0x64) for rid 1 of atkbdc0
atkbdc0: &amp;lt;Keyboard controller (i8042)&amp;gt; at port 0x60,0x64 on isa0
pcib0: allocated type 4 (0x60-0x60) for rid 0 of atkbdc0
pcib0: allocated type 4 (0x64-0x64) for rid 1 of atkbdc0
atkbd0: &amp;lt;AT Keyboard&amp;gt; irq 1 on atkbdc0
kbd0 at atkbd0
kbd0: atkbd0, generic (0), config:0x0, flags:0x1f0000
ioapic0: routing intpin 1 (ISA IRQ 1) to lapic 2 vector 52
atkbd0: [GIANT-LOCKED]
psm0: unable to allocate IRQ
atkbdc0: non-PNP ISA device will be removed from GENERIC in FreeBSD 12.
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 (0x2f8-0x2f8) for rid 0 of uart1
uart1 failed to probe at port 0x2f8 irq 3 on isa0
isa_probe_children: probing PnP devices
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
hwpstate0: &amp;lt;Cool`n&amp;#039;Quiet 2.0&amp;gt; on cpu0
Device configuration finished.
procfs registered
ZFS filesystem version: 5
ZFS storage pool version: features support (5000)
Timecounters tick every 1.000 msec
lo0: bpf attached
vlan: initialized, using hash tables with chaining
IPsec: Initialized Security Association Processing.
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
tcp_init: net.inet.tcp.tcbhashsize auto tuned to 131072
AcpiOsExecute: enqueue 16 pending tasks
hpt27xx: no controller detected.
hptnr: no controller detected.
hptrr: no controller detected.
ahcich0: AHCI reset...
hdacc0: &amp;lt;ATI R6xx HDA CODEC&amp;gt; at cad 0 on hdac0
hdaa0: &amp;lt;ATI R6xx Audio Function Group&amp;gt; at nid 1ahcich0:  on hdacc0
hdaa0: Subsystem ID: 0x00aa0100
SATA connect time=100us status=00000133
ahcich0: AHCI reset: device found
hdaa0: NumGPIO=0 NumGPO=0 NumGPI=0 GPIWake=0 GPIUnsol=0
ahcich1: AHCI reset...
hdaa0: Original pins configuration:
hdaa0: nid   0x    as seq device       conn  jack    loc        color   misc
ahcich1: hdaa0:  3 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0:  5 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0:  7 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0:  9 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0: 11 585600f0 15 0  Digital-out   None  Digital 0x18       Unknown 0
hdaa0: 13 585600f0 15 0  Digital-out   None  Digital 0x18       Unknown 0
SATA connect time=100us status=00000133
hdaa0: ahcich1: AHCI reset: device found
Patched pins configuration:
hdaa0: nid   0x    as seq device       conn  jack    loc        color   misc
ahcich2: hdaa0:  3 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0:  5 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0:  7 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0:  9 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0: 11 585600f0 15 0  Digital-out   None  Digital 0x18       Unknown 0 DISA
hdaa0: 13 585600f0 15 0  Digital-out   None  Digital 0x18       Unknown 0 DISA
hdaa0: 4 associations found:
hdaa0: Association 0 (15) out:
hdaa0:  Pin nid=3 seq=0
hdaa0: Association 1 (15) out:
hdaa0:  Pin nid=5 seq=0
hdaa0: Association 2 (15) out:
hdaa0:  Pin nid=7 seq=0
hdaa0: Association 3 (15) out:
hdaa0:  Pin nid=9 seq=0
hdaa0: Tracing association 0 (15)
hdaa0:  Pin 3 traced to DAC 2
hdaa0: Association 0 (15) trace succeeded
hdaa0: Tracing association 1 (15)
hdaa0:  Pin 5 traced to DAC 4
hdaa0: Association 1 (15) trace succeeded
hdaa0: Tracing association 2 (15)
hdaa0:  Pin 7 traced to DAC 6
hdaa0: Association 2 (15) trace succeeded
hdaa0: Tracing association 3 (15)
hdaa0:  Pin 9 traced to DAC 8
hdaa0: Association 3 (15) trace succeeded
hdaa0: Looking for additional DAC for association 0 (15)
hdaa0: Looking for additional DAC for association 1 (15)
hdaa0: Looking for additional DAC for association 2 (15)
hdaa0: Looking for additional DAC for association 3 (15)
hdaa0: Tracing input monitor
hdaa0: Tracing other input monitors
hdaa0: Tracing beeper
AHCI reset...
hdaa0: Pin sense: nid=3 sense=0x7fffffff (disconnected, ELD valid)
hdaa0: Pin sense: nid=5 sense=0x7fffffff (disconnected, ELD valid)
hdaa0: Pin sense: nid=7 sense=0x7fffffff (disconnected, ELD valid)
hdaa0: Pin sense: nid=9 sense=0x7fffffff (disconnected, ELD valid)
hdaa0: FG config/quirks: forcestereo ivref50 ivref80 ivref100 ivref
pcm0: &amp;lt;ATI R6xx (HDMI)&amp;gt; at nid 3 on hdaa0
pcm0: Playback:
pcm0:      Stream cap: 0x00000005 AC3 PCM
pcm0:         PCM cap: 0x00020070 16 bits, 32 44 48 KHz
pcm0:             DAC: 2
pcm0:
pcm0:     nid=3 [pin: Digital-out (Jack)]
ahcich2: pcm0:       + &amp;lt;- nid=2 [audio output] [src: pcm]
pcm0:
SATA connect timeout time=10000us status=00000000
pcm0: ahcich2: AHCI reset: device not found
ahcich3: AHCI reset...
Mixer &amp;quot;vol&amp;quot; -&amp;gt; &amp;quot;none&amp;quot;: child=0x00000010
pcm0: Mixer &amp;quot;pcm&amp;quot;: parent=&amp;quot;vol&amp;quot;
pcm0: Soft PCM mixer ENABLED
pcm0: Playback channel set is: Front Left, Front Right,
pcm0: Playback channel matrix is: 2.0 (disconnected)
pcm1: &amp;lt;ATI R6xx (HDMI)&amp;gt; at nid 5 on hdaa0
pcm1: Playback:
ahcich3: pcm1:      Stream cap: 0x00000005 AC3 PCM
pcm1:         PCM cap: 0x00020070 16 bits, 32 44 48 KHz
pcm1:             DAC: 4
pcm1: SATA connect timeout time=10000us status=00000000
ahcich3: AHCI reset: device not found
ahcich4: AHCI reset...

pcm1:     nid=5 [pin: Digital-out (Jack)]
pcm1:       + &amp;lt;- nid=4 [audio output] [src: pcm]
pcm1:
pcm1: Mixer &amp;quot;vol&amp;quot; -&amp;gt; &amp;quot;none&amp;quot;: child=0x00000010
pcm1: Mixer &amp;quot;pcm&amp;quot;: parent=&amp;quot;vol&amp;quot;
pcm1: Soft PCM mixer ENABLED
ahcich4: SATA connect timeout time=10000us status=00000000
pcm1: ahcich4: AHCI reset: device not found
ahcich5: AHCI reset...
Playback channel set is: Front Left, Front Right,
pcm1: Playback channel matrix is: 2.0 (disconnected)
pcm2: &amp;lt;ATI R6xx (HDMI)&amp;gt; at nid 7 on hdaa0
pcm2: Playback:
pcm2:      Stream cap: 0x00000005 AC3 PCM
pcm2:         PCM cap: 0x00020070 16 bits, 32 44 48 KHz
pcm2:             DAC: 6
pcm2:
pcm2:     nid=7 [pin: Digital-out (Jack)]
pcm2:       + &amp;lt;- nid=6 [audio output] [src: pcm]
pcm2:
ahcich5: SATA connect timeout time=10000us status=00000000
pcm2: ahcich5: AHCI reset: device not found
Mixer &amp;quot;vol&amp;quot; -&amp;gt; &amp;quot;none&amp;quot;: child=0x00000010
pcm2: Mixer &amp;quot;pcm&amp;quot;: parent=&amp;quot;vol&amp;quot;
pcm2: Soft PCM mixer ENABLED
pcm2: Playback channel set is: Front Left, Front Right,
pcm2: Playback channel matrix is: 2.0 (disconnected)
pcm3: &amp;lt;ATI R6xx (HDMI)&amp;gt; at nid 9 on hdaa0
pcm3: Playback:
pcm3:      Stream cap: 0x00000005 AC3 PCM
pcm3:         PCM cap: 0x00020070 16 bits, 32 44 48 KHz
pcm3:             DAC: 8
pcm3:
pcm3:     nid=9 [pin: Digital-out (Jack)]
pcm3:       + &amp;lt;- nid=8 [audio output] [src: pcm]
pcm3:
pcm3: Mixer &amp;quot;vol&amp;quot; -&amp;gt; &amp;quot;none&amp;quot;: child=0x00000010
pcm3: Mixer &amp;quot;pcm&amp;quot;: parent=&amp;quot;vol&amp;quot;
pcm3: Soft PCM mixer ENABLED
pcm3: Playback channel set is: Front Left, Front Right,
pcm3: Playback channel matrix is: 2.0 (disconnected)
hdacc1: &amp;lt;Realtek ALC887 HDA CODEC&amp;gt; at cad 0 on hdac1
hdaa1: &amp;lt;Realtek ALC887 Audio Function Group&amp;gt; at nid 1 on hdacc1
hdaa1: Subsystem ID: 0x1849288a
hdaa1: NumGPIO=2 NumGPO=0 NumGPI=0 GPIWake=0 GPIUnsol=1
hdaa1:  GPIO0: disabled
hdaa1:  GPIO1: disabled
hdaa1: Original pins configuration:
hdaa1: nid   0x    as seq device       conn  jack    loc        color   misc
hdaa1: 17 40000000 0  0  Line-out      None  Unknown 0x00       Unknown 0
hdaa1: 18 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa1: 20 01014010 1  0  Line-out      Jack  1/8     Rear       Green   0
hdaa1: 21 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa1: 22 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa1: 23 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa1: 24 01a19030 3  0  Mic           Jack  1/8     Rear       Pink    0
hdaa1: 25 02a19040 4  0  Mic           Jack  1/8     Front      Pink    0
hdaa1: 26 0181303f 3  15 Line-in       Jack  1/8     Rear       Blue    0
hdaa1: 27 02214020 2  0  Headphones    Jack  1/8     Front      Green   0
hdaa1: 28 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa1: 29 4026c629 2  9  Headphones    None  Digital 0x00       Res.C   6
hdaa1: 30 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa1: 31 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa1: Patching widget caps nid=29 0x00400400 -&amp;gt; 0x00700400
hdaa1: Patched pins configuration:
hdaa1: nid   0x    as seq device       conn  jack    loc        color   misc
hdaa1: 17 40000000 0  0  Line-out      None  Unknown 0x00       Unknown 0 DISA
hdaa1: 18 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa1: 20 01014010 1  0  Line-out      Jack  1/8     Rear       Green   0
hdaa1: 21 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa1: 22 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa1: 23 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa1: 24 01a19030 3  0  Mic           Jack  1/8     Rear       Pink    0
hdaa1: 25 02a19040 4  0  Mic           Jack  1/8     Front      Pink    0
hdaa1: 26 0181303f 3  15 Line-in       Jack  1/8     Rear       Blue    0
hdaa1: 27 02214020 2  0  Headphones    Jack  1/8     Front      Green   0
hdaa1: 28 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: 31 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa1: 4 associations found:
hdaa1: Association 0 (1) out:
hdaa1:  Pin nid=20 seq=0
hdaa1: Association 1 (2) out:
hdaa1:  Pin nid=27 seq=0
hdaa1: Association 2 (3) in:
hdaa1:  Pin nid=24 seq=0
hdaa1:  Pin nid=26 seq=15
hdaa1: Association 3 (4) in:
hdaa1:  Pin nid=25 seq=0
hdaa1: Tracing association 0 (1)
hdaa1:  Pin 20 traced to DAC 2
hdaa1: Association 0 (1) trace succeeded
hdaa1: Tracing association 1 (2)
hdaa1:  Pin 27 traced to DAC 3
hdaa1: Association 1 (2) trace succeeded
hdaa1: Tracing association 2 (3)
hdaa1:  Pin 24 traced to ADC 8
hdaa1:  Pin 26 traced to ADC 8
hdaa1: Association 2 (3) trace succeeded
hdaa1: Tracing association 3 (4)
hdaa1:  Pin 25 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 nid 34 to out
hdaa1:  Tracing nid 35 to out
hdaa1: Tracing other input monitors
hdaa1:  Tracing nid 24 to out
hdaa1:  Tracing nid 25 to out
hdaa1:  Tracing nid 26 to out
hdaa1: Tracing beeper
hdaa1: FG config/quirks: forcestereo ivref50 ivref80 ivref100 ivref
pcm4: &amp;lt;Realtek ALC887 (Rear Analog)&amp;gt; at nid 20 and 24,26 on hdaa1
pcm4: Playback:
pcm4:      Stream cap: 0x00000001 PCM
pcm4:         PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz
pcm4:             DAC: 2
pcm4:
pcm4:     nid=20 [pin: Line-out (Green Jack)]
pcm4:       + &amp;lt;- nid=12 [audio mixer] [src: pcm, mix]
pcm4:              + &amp;lt;- nid=2 [audio output] [src: pcm]
pcm4:              + &amp;lt;- nid=11 [audio mixer] [src: mix]
pcm4:
pcm4: Record:
pcm4:      Stream cap: 0x00000001 PCM
pcm4:         PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz
pcm4:             ADC: 8
pcm4:
pcm4:     nid=8 [audio input]
pcm4:       + &amp;lt;- nid=35 [audio mixer] [src: speaker, line, mic, mix]
pcm4:              + &amp;lt;- nid=24 [pin: Mic (Pink Jack)] [src: mic]
pcm4:              + &amp;lt;- nid=26 [pin: Line-in (Blue Jack)] [src: line]
pcm4:              + &amp;lt;- nid=29 [beep widget] [src: speaker]
pcm4:              + &amp;lt;- nid=11 [audio mixer] [src: mix]
pcm4:
pcm4: Input Mix:
pcm4:
pcm4:     nid=11 [audio mixer]
pcm4:       + &amp;lt;- nid=24 [pin: Mic (Pink Jack)] [src: mic]
pcm4:       + &amp;lt;- nid=26 [pin: Line-in (Blue Jack)] [src: line]
pcm4:       + &amp;lt;- nid=29 [beep widget] [src: speaker]
pcm4:
pcm4: Master Volume (OSS: vol): -64/0dB
pcm4:    +- ctl  1 (nid   2 out):    -64/0dB (65 steps)
pcm4:    +- ctl 17 (nid  12 in   0): mute
pcm4:    +- ctl 18 (nid  12 in   1): mute
pcm4:    +- ctl 25 (nid  20 in ):    mute
pcm4:
pcm4: PCM Volume (OSS: pcm): -64/0dB
pcm4:    +- ctl  1 (nid   2 out):    -64/0dB (65 steps)
pcm4:    +- ctl 17 (nid  12 in   0): mute
pcm4:
pcm4: Microphone Volume (OSS: mic): 0/30dB
pcm4:    +- ctl  7 (nid  11 in   0): -34/12dB (32 steps) + mute
pcm4:    +- ctl 30 (nid  24 out):    0/30dB (4 steps)
pcm4:    +- ctl 49 (nid  35 in   0): mute
pcm4:
pcm4: Line-in Volume (OSS: line): 0/30dB
pcm4:    +- ctl  9 (nid  11 in   2): -34/12dB (32 steps) + mute
pcm4:    +- ctl 34 (nid  26 out):    0/30dB (4 steps)
pcm4:    +- ctl 51 (nid  35 in   2): mute
pcm4:
pcm4: Speaker/Beep Volume (OSS: speaker): -34/12dB
pcm4:    +- ctl 12 (nid  11 in   5): -34/12dB (32 steps) + mute
pcm4:    +- ctl 54 (nid  35 in   5): mute
pcm4:
pcm4: Recording Level (OSS: rec): -16/30dB
pcm4:    +- ctl  5 (nid   8 in   0): -16/30dB (47 steps) + mute
pcm4:    +- ctl 49 (nid  35 in   0): mute
pcm4:    +- ctl 51 (nid  35 in   2): mute
pcm4:    +- ctl 54 (nid  35 in   5): mute
pcm4:    +- ctl 59 (nid  35 in  10): mute
pcm4:
pcm4: Input Mix Level (OSS: mix): -34/12dB
pcm4:    +- ctl  7 (nid  11 in   0): -34/12dB (32 steps) + mute
pcm4:    +- ctl  9 (nid  11 in   2): -34/12dB (32 steps) + mute
pcm4:    +- ctl 12 (nid  11 in   5): -34/12dB (32 steps) + mute
pcm4:    +- ctl 18 (nid  12 in   1): mute
pcm4:    +- ctl 59 (nid  35 in  10): mute
pcm4:
pcm4: Input Monitoring Level (OSS: igain): 0/0dB
pcm4:    +- ctl 18 (nid  12 in   1): mute
pcm4:
pcm4: Mixer &amp;quot;vol&amp;quot;:
pcm4: Mixer &amp;quot;pcm&amp;quot;:
pcm4: Mixer &amp;quot;speaker&amp;quot;:
pcm4: Mixer &amp;quot;line&amp;quot;:
pcm4: Mixer &amp;quot;mic&amp;quot;:
pcm4: Mixer &amp;quot;mix&amp;quot;:
pcm4: Mixer &amp;quot;rec&amp;quot;:
pcm4: Mixer &amp;quot;igain&amp;quot;:
pcm4: Mixer &amp;quot;ogain&amp;quot;:
pcm4: Playback channel set is: Front Left, Front Right,
pcm4: Playback channel matrix is: 2.0 (disconnected)
pcm4: Recording channel set is: Front Left, Front Right,
pcm4: Recording channel matrix is: 2.0 (disconnected)
pcm5: &amp;lt;Realtek ALC887 (Front Analog)&amp;gt; at nid 27 and 25 on hdaa1
pcm5: Playback:
pcm5:      Stream cap: 0x00000001 PCM
pcm5:         PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz
pcm5:             DAC: 3
pcm5:
pcm5:     nid=27 [pin: Headphones (Green Jack)]
pcm5:       + &amp;lt;- nid=13 [audio mixer] [src: pcm, mix]
pcm5:              + &amp;lt;- nid=3 [audio output] [src: pcm]
pcm5:              + &amp;lt;- nid=11 [audio mixer] [src: mix]
pcm5:
pcm5: Record:
pcm5:      Stream cap: 0x00000001 PCM
pcm5:         PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz
pcm5:             ADC: 9
pcm5:
pcm5:     nid=9 [audio input]
pcm5:       + &amp;lt;- nid=34 [audio mixer] [src: speaker, monitor]
pcm5:              + &amp;lt;- nid=25 [pin: Mic (Pink Jack)] [src: monitor]
pcm5:              + &amp;lt;- nid=29 [beep widget] [src: speaker]
pcm5:
pcm5: Master Volume (OSS: vol): -64/0dB
pcm5:    +- ctl  2 (nid   3 out):    -64/0dB (65 steps)
pcm5:    +- ctl 19 (nid  13 in   0): mute
pcm5:    +- ctl 20 (nid  13 in   1): mute
pcm5:    +- ctl 35 (nid  27 in ):    mute
pcm5:
pcm5: PCM Volume (OSS: pcm): -64/0dB
pcm5:    +- ctl  2 (nid   3 out):    -64/0dB (65 steps)
pcm5:    +- ctl 19 (nid  13 in   0): mute
pcm5:
pcm5: Microphone2 Volume (OSS: monitor): 0/30dB
pcm5:    +- ctl 32 (nid  25 out):    0/30dB (4 steps)
pcm5:    +- ctl 38 (nid  34 in   1): mute
pcm5:
pcm5: Speaker/Beep Volume (OSS: speaker)
pcm5:    +- ctl 42 (nid  34 in   5): mute
pcm5:
pcm5: Recording Level (OSS: rec): -16/30dB
pcm5:    +- ctl  6 (nid   9 in   0): -16/30dB (47 steps) + mute
pcm5:    +- ctl 32 (nid  25 out):    0/30dB (4 steps)
pcm5:    +- ctl 38 (nid  34 in   1): mute
pcm5:    +- ctl 42 (nid  34 in   5): mute
pcm5:
pcm5: Input Mix Level (OSS: mix)
pcm5:    +- ctl 20 (nid  13 in   1): mute
pcm5:
pcm5: Input Monitoring Level (OSS: igain): 0/0dB
pcm5:    +- ctl 20 (nid  13 in   1): mute
pcm5:
pcm5: Mixer &amp;quot;vol&amp;quot;:
pcm5: Mixer &amp;quot;pcm&amp;quot;:
pcm5: Mixer &amp;quot;rec&amp;quot;:
pcm5: Mixer &amp;quot;igain&amp;quot;:
pcm5: Mixer &amp;quot;ogain&amp;quot;:
pcm5: Mixer &amp;quot;monitor&amp;quot;:
pcm5: Playback channel set is: Front Left, Front Right,
pcm5: Playback channel matrix is: 2.0 (disconnected)
pcm5: Recording channel set is: Front Left, Front Right,
pcm5: Recording channel matrix is: 2.0 (disconnected)
ugen0.1: &amp;lt;0x1022 XHCI root HUB&amp;gt; at usbus0
ahcich0: ugen2.1: &amp;lt;0x1022 XHCI root HUB&amp;gt; at usbus2
ugen1.1: &amp;lt;0x1022 XHCI root HUB&amp;gt; at usbus1
AHCI reset: device ready after 100ms
uhub0: &amp;lt;0x1022 XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1&amp;gt; on usbus0
ahcich1: AHCI reset: device ready after 100ms
uhub1: &amp;lt;0x1022 XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1&amp;gt; on usbus1
uhub2: &amp;lt;0x1022 XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1&amp;gt; on usbus2
pass0 at ahcich0 bus 0 scbus0 target 0 lun 0
pass0: &amp;lt;CHN 25SATA01M 030 P0921A&amp;gt; ACS-2 ATA SATA 3.x device
pass0: Serial Number A130CI02070114
pass0: 600.000MB/s transfers (SATA 3.x, UDMA6, PIO 512bytes)
pass0: Command Queueing enabled
pass1 at ahcich1 bus 0 scbus1 target 0 lun 0
pass1: &amp;lt;ST2000DM001-1CH164 CC29&amp;gt; ACS-2 ATA SATA 3.x device
pass1: Serial Number W1E37816
pass1: 600.000MB/s transfers (SATA 3.x, UDMA6, PIO 8192bytes)
pass1: Command Queueing enabled
ada0 at ahcich0 bus 0 scbus0 target 0 lun 0
ada0: &amp;lt;CHN 25SATA01M 030 P0921A&amp;gt; ACS-2 ATA SATA 3.x device
ada0: Serial Number A130CI02070114
ada0: 600.000MB/s transfers (SATA 3.x, UDMA6, PIO 512bytes)
ada0: Command Queueing enabled
ada0: 28626MB (58626288 512 byte sectors)
GEOM: new disk ada0
ada1 at ahcich1 bus 0 scbus1 target 0 lun 0
ada1: &amp;lt;ST2000DM001-1CH164 CC29&amp;gt; ACS-2 ATA SATA 3.x device
ada1: Serial Number W1E37816
ada1: 600.000MB/s transfers (SATA 3.x, UDMA6, PIO 8192bytes)
ada1: Command Queueing enabled
ada1: 1907729MB (3907029168 512 byte sectors)
ada1: quirks=0x1&amp;lt;4K&amp;gt;
GEOM: new disk ada1
Trying to mount root from zfs:zroot/ROOT/default []...
GEOM: ada1: the primary GPT table is corrupt or invalid.
GEOM: ada1: using the secondary instead -- recovery strongly advised.
Root mount waiting for: usbus2 usbus1 usbus0
uhub1: 6 ports with 6 removable, self powered
uhub2: 6 ports with 6 removable, self powered
uhub0: 14 ports with 14 removable, self powered
ugen1.2: &amp;lt;vendor 0x04f3 OM&amp;gt; at usbus1
Root mount waiting for: usbus1 usbus0
ugen0.2: &amp;lt;ASRock LED Controller&amp;gt; at usbus0
ugen1.3: &amp;lt;Chicony Generic USB Hub&amp;gt; at usbus1
uhub3 on uhub1
uhub3: &amp;lt;Chicony Generic USB Hub, class 9/0, rev 1.10/1.00, addr 2&amp;gt; on usbus1
uhub3: 3 ports with 2 removable, bus powered
ugen0.3: &amp;lt;vendor 0x8087 product 0x0aa7&amp;gt; at usbus0
ugen1.4: &amp;lt;Chicony PFU-65 USB Keyboard&amp;gt; at usbus1
ukbd0 on uhub3
ukbd0: &amp;lt;Chicony PFU-65 USB Keyboard, class 0/0, rev 1.10/1.00, addr 3&amp;gt; on usbus1
kbd2 at ukbd0
kbd2: ukbd0, generic (0), config:0x0, flags:0x3d0000
efirtc0: providing initial system time
start_init: trying /sbin/init
lo0: link state changed to UP
re0: link state changed to DOWN
pci0: driver added
found-&amp;gt;	vendor=0x1022, dev=0x790b, revid=0x51
	domain=0, bus=0, slot=20, func=0
	class=0c-05-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0403, statreg=0x0220, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
pci0:0:20:0: reprobing on driver added
pci1: driver added
pci2: driver added
pci3: driver added
pci4: driver added
pci5: driver added
found-&amp;gt;	vendor=0x8086, dev=0x24fb, revid=0x10
	domain=0, bus=6, slot=0, func=0
	class=02-80-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0002, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
pci0:6:0:0: reprobing on driver added
iwm0: &amp;lt;Intel(R) Dual Band Wireless AC 3168&amp;gt; mem 0xfcd00000-0xfcd01fff at device 0.0 on pci5
iwm0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 284 to local APIC 4 vector 51
iwm0: using IRQ 284 for MSI
firmware: &amp;#039;iwm3168fw&amp;#039; version 0: 1028032 bytes loaded at 0xffffffff83410000
iwm0: hw rev 0x220, fw ver 22.361476.0, address c8:58:c0:b3:1b:36
iwm0: 11a rates: 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps
iwm0: 11b rates: 1Mbps 2Mbps 5.5Mbps 11Mbps
iwm0: 11g rates: 1Mbps 2Mbps 5.5Mbps 11Mbps 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps
pci6: driver added
pci7: driver added
pci8: driver added
pci9: driver added
pci10: driver added
pci11: driver added
pci12: driver added
found-&amp;gt;	vendor=0x1022, dev=0x15df, revid=0x00
	domain=0, bus=13, slot=0, func=2
	class=10-80-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0002, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 2 messages, 64 bit
	MSI-X supports 2 messages in map 0x24
pci0:13:0:2: reprobing on driver added
pci0: driver added
found-&amp;gt;	vendor=0x1022, dev=0x790b, revid=0x51
	domain=0, bus=0, slot=20, func=0
	class=0c-05-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0403, statreg=0x0220, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
pci0:0:20:0: reprobing on driver added
intsmb0: &amp;lt;AMD FCH SMBus Controller&amp;gt; at device 20.0 on pci0
pcib0: allocated type 4 (0xcd6-0xcd7) for rid 0 of intsmb0
pcib0: allocated type 4 (0xb00-0xb0f) for rid 0 of intsmb0
smbus0: &amp;lt;System Management Bus&amp;gt; on intsmb0
pci1: driver added
pci2: driver added
pci3: driver added
pci4: driver added
pci5: driver added
pci6: driver added
pci7: driver added
pci8: driver added
pci9: driver added
pci10: driver added
pci11: driver added
pci12: driver added
found-&amp;gt;	vendor=0x1022, dev=0x15df, revid=0x00
	domain=0, bus=13, slot=0, func=2
	class=10-80-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0002, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 2 messages, 64 bit
	MSI-X supports 2 messages in map 0x24
pci0:13:0:2: reprobing on driver added
ums0 on uhub1
ums0: &amp;lt;vendor 0x04f3 OM, class 0/0, rev 1.10/24.58, addr 1&amp;gt; on usbus1
ums0: 3 buttons and [XYZ] coordinates ID=0
uhid0 on uhub0
uhid0: &amp;lt;ASRock LED Controller, class 0/0, rev 1.10/0.00, addr 1&amp;gt; on usbus0
ubt0 on uhub0
ubt0: &amp;lt;vendor 0x8087 product 0x0aa7, class 224/1, rev 2.00/0.01, addr 2&amp;gt; on usbus0
WARNING: attempt to domain_add(bluetooth) after domainfinalize()
WARNING: attempt to domain_add(netgraph) after domainfinalize()&lt;/pre&gt;
&lt;/dd&gt;&lt;/dl&gt;
&lt;dl class=&quot;code&quot;&gt;
&lt;dt&gt;&lt;a href=&quot;http://www.seirios.org/seirios/dokuwiki/doku.php?do=export_code&amp;amp;id=os:freebsd:intel82599&amp;amp;codeblock=4&quot; title=&quot;この部分をダウンロード&quot; class=&quot;mediafile mf_&quot;&gt;messages&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;code&quot;&gt;Aug 19 22:27:50 subamd seirios[1297]: ==iovctl -C==
Aug 19 22:27:57 subamd kernel: pcib1: allocated prefetch range (0xe0300000-0xe030ffff) for rid 184 of ix1
Aug 19 22:27:57 subamd kernel: ix1: Lazy allocation of 0x10000 bytes rid 0x184 type 3 at 0xe0300000
Aug 19 22:27:57 subamd kernel: pcib1: allocated prefetch range (0xe0310000-0xe031ffff) for rid 190 of ix1
Aug 19 22:27:57 subamd kernel: ix1: Lazy allocation of 0x10000 bytes rid 0x190 type 3 at 0xe0310000
Aug 19 22:28:00 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 19 22:28:00 subamd kernel: 	domain=0, bus=1, slot=0, func=129
Aug 19 22:28:00 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 19 22:28:00 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 19 22:28:00 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 19 22:28:00 subamd kernel: 	intpin=_, irq=255
Aug 19 22:28:00 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 19 22:28:00 subamd kernel: 	domain=0, bus=1, slot=0, func=131
Aug 19 22:28:00 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 19 22:28:00 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 19 22:28:00 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 19 22:28:00 subamd kernel: 	intpin=_, irq=255
Aug 19 22:28:00 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 19 22:28:00 subamd kernel: 	domain=0, bus=1, slot=0, func=133
Aug 19 22:28:00 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 19 22:28:00 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 19 22:28:00 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 19 22:28:00 subamd kernel: 	intpin=_, irq=255
Aug 19 22:28:00 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 19 22:28:00 subamd kernel: 	domain=0, bus=1, slot=0, func=135
Aug 19 22:28:00 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 19 22:28:00 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 19 22:28:00 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 19 22:28:00 subamd kernel: 	intpin=_, irq=255
Aug 19 22:28:00 subamd kernel: pci1: &amp;lt;unknown&amp;gt; at device 0.129 (no driver attached)
Aug 19 22:28:00 subamd kernel: ixv0: &amp;lt;Intel(R) PRO/10GbE Virtual Function Network Driver&amp;gt; at device 0.131 on pci1
Aug 19 22:28:00 subamd kernel: ixv0: Using 2048 TX descriptors and 2048 RX descriptors
Aug 19 22:28:00 subamd kernel: ixv0: msix_init qsets capped at 1
Aug 19 22:28:00 subamd kernel: ixv0: MSI-X not supported or disabled
Aug 19 22:28:00 subamd kernel: ixv0: Using a Legacy interrupt
Aug 19 22:28:00 subamd kernel: ixv0: allocated for 1 queues
Aug 19 22:28:00 subamd kernel: ixv0: allocated for 1 rx queues
Aug 19 22:28:00 subamd kernel: pcib1: no PRT entry for 1.0.INT?
Aug 19 22:28:00 subamd kernel: ixv0: failed to allocate IRQ for rid 0, name irq0.
Aug 19 22:28:00 subamd kernel: ixv0: iflib_legacy_setup failed 12
Aug 19 22:28:00 subamd kernel: device_attach: ixv0 attach returned 12
Aug 19 22:28:00 subamd kernel: ixv0: &amp;lt;Intel(R) PRO/10GbE Virtual Function Network Driver&amp;gt; at device 0.133 on pci1
Aug 19 22:28:00 subamd kernel: ixv0: Using 2048 TX descriptors and 2048 RX descriptors
Aug 19 22:28:00 subamd kernel: ixv0: msix_init qsets capped at 1
Aug 19 22:28:00 subamd kernel: ixv0: MSI-X not supported or disabled
Aug 19 22:28:00 subamd kernel: ixv0: Using a Legacy interrupt
Aug 19 22:28:00 subamd kernel: ixv0: allocated for 1 queues
Aug 19 22:28:00 subamd kernel: ixv0: allocated for 1 rx queues
Aug 19 22:28:00 subamd kernel: pcib1: no PRT entry for 1.0.INT?
Aug 19 22:28:00 subamd kernel: ixv0: failed to allocate IRQ for rid 0, name irq0.
Aug 19 22:28:00 subamd kernel: ixv0: iflib_legacy_setup failed 12
Aug 19 22:28:00 subamd kernel: device_attach: ixv0 attach returned 12
Aug 19 22:28:00 subamd kernel: pci1: &amp;lt;unknown&amp;gt; at device 0.135 (no driver attached)
Aug 19 22:28:19 subamd seirios[1313]: ==iovctl -D==
Aug 19 22:28:22 subamd seirios[1314]: ==iovctl -C==
Aug 19 22:28:27 subamd kernel: pcib1: allocated prefetch range (0xe0300000-0xe030ffff) for rid 184 of ix1
Aug 19 22:28:27 subamd kernel: ix1: Lazy allocation of 0x10000 bytes rid 0x184 type 3 at 0xe0300000
Aug 19 22:28:27 subamd kernel: pcib1: allocated prefetch range (0xe0310000-0xe031ffff) for rid 190 of ix1
Aug 19 22:28:27 subamd kernel: ix1: Lazy allocation of 0x10000 bytes rid 0x190 type 3 at 0xe0310000
Aug 19 22:28:31 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 19 22:28:31 subamd kernel: 	domain=0, bus=1, slot=0, func=129
Aug 19 22:28:31 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 19 22:28:31 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 19 22:28:31 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 19 22:28:31 subamd kernel: 	intpin=_, irq=255
Aug 19 22:28:31 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 19 22:28:31 subamd kernel: 	domain=0, bus=1, slot=0, func=131
Aug 19 22:28:31 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 19 22:28:31 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 19 22:28:31 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 19 22:28:31 subamd kernel: 	intpin=_, irq=255
Aug 19 22:28:31 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 19 22:28:31 subamd kernel: 	domain=0, bus=1, slot=0, func=133
Aug 19 22:28:31 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 19 22:28:31 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 19 22:28:31 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 19 22:28:31 subamd kernel: 	intpin=_, irq=255
Aug 19 22:28:31 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 19 22:28:31 subamd kernel: 	domain=0, bus=1, slot=0, func=135
Aug 19 22:28:31 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 19 22:28:31 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 19 22:28:31 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 19 22:28:31 subamd kernel: 	intpin=_, irq=255
Aug 19 22:28:31 subamd kernel: pci1: &amp;lt;unknown&amp;gt; at device 0.129 (no driver attached)
Aug 19 22:28:31 subamd kernel: ixv0: &amp;lt;Intel(R) PRO/10GbE Virtual Function Network Driver&amp;gt; at device 0.131 on pci1
Aug 19 22:28:31 subamd kernel: ixv0: Using 2048 TX descriptors and 2048 RX descriptors
Aug 19 22:28:31 subamd kernel: ixv0: msix_init qsets capped at 1
Aug 19 22:28:31 subamd kernel: ixv0: MSI-X not supported or disabled
Aug 19 22:28:31 subamd kernel: ixv0: Using a Legacy interrupt
Aug 19 22:28:31 subamd kernel: ixv0: allocated for 1 queues
Aug 19 22:28:31 subamd kernel: ixv0: allocated for 1 rx queues
Aug 19 22:28:31 subamd kernel: pcib1: no PRT entry for 1.0.INT?
Aug 19 22:28:31 subamd kernel: ixv0: failed to allocate IRQ for rid 0, name irq0.
Aug 19 22:28:31 subamd kernel: ixv0: iflib_legacy_setup failed 12
Aug 19 22:28:31 subamd kernel: device_attach: ixv0 attach returned 12
Aug 19 22:28:31 subamd kernel: ixv0: &amp;lt;Intel(R) PRO/10GbE Virtual Function Network Driver&amp;gt; at device 0.133 on pci1
Aug 19 22:28:31 subamd kernel: ixv0: Using 2048 TX descriptors and 2048 RX descriptors
Aug 19 22:28:31 subamd kernel: ixv0: msix_init qsets capped at 1
Aug 19 22:28:31 subamd kernel: ixv0: MSI-X not supported or disabled
Aug 19 22:28:31 subamd kernel: ixv0: Using a Legacy interrupt
Aug 19 22:28:31 subamd kernel: ixv0: allocated for 1 queues
Aug 19 22:28:31 subamd kernel: ixv0: allocated for 1 rx queues
Aug 19 22:28:31 subamd kernel: pcib1: no PRT entry for 1.0.INT?
Aug 19 22:28:31 subamd kernel: ixv0: failed to allocate IRQ for rid 0, name irq0.
Aug 19 22:28:31 subamd kernel: ixv0: iflib_legacy_setup failed 12
Aug 19 22:28:31 subamd kernel: device_attach: ixv0 attach returned 12
Aug 19 22:28:31 subamd kernel: pci1: &amp;lt;unknown&amp;gt; at device 0.135 (no driver attached)&lt;/pre&gt;
&lt;/dd&gt;&lt;/dl&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;560SFP+&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;sfp&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:3,&amp;quot;secid&amp;quot;:7,&amp;quot;range&amp;quot;:&amp;quot;104387-207335&amp;quot;} --&gt;
&lt;h3 class=&quot;sectionedit8&quot; id=&quot;sfp_ko_replaced&quot;&gt;560SFP+ ko replaced&lt;/h3&gt;
&lt;div class=&quot;level3&quot;&gt;
&lt;dl class=&quot;code&quot;&gt;
&lt;dt&gt;&lt;a href=&quot;http://www.seirios.org/seirios/dokuwiki/doku.php?do=export_code&amp;amp;id=os:freebsd:intel82599&amp;amp;codeblock=5&quot; title=&quot;この部分をダウンロード&quot; class=&quot;mediafile mf_boot&quot;&gt;dmesg.boot&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;code&quot;&gt;APIC: CPU 5 has ACPI ID 5
APIC: CPU 6 has ACPI ID 6
APIC: CPU 7 has ACPI ID 7
APIC: CPU 8 has ACPI ID 8
APIC: CPU 9 has ACPI ID 9
APIC: CPU 10 has ACPI ID 10
APIC: CPU 11 has ACPI ID 11
APIC: CPU 12 has ACPI ID 12
APIC: CPU 13 has ACPI ID 13
APIC: CPU 14 has ACPI ID 14
APIC: CPU 15 has ACPI ID 15
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 7
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 8
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 9
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 10
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 11
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 12
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 13
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 14
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 17
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 18
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 19
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 20
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 27
Pentium Pro MTRR support enabled
x86bios:  IVT 0x000000-0x0004ff at 0xfffff80000000000
x86bios: SSEG 0x09e000-0x09efff at 0xfffffe0003ff4000
x86bios:  ROM 0x0a0000-0x0fefff at 0xfffff800000a0000
random: read 3840 bytes from preloaded cache
random: unblocking device.
arc4random: read 32 bytes from preloaded cache
VIMAGE (virtualized network stack) enabled
ULE: setup cpu 0
ULE: setup cpu 1
ULE: setup cpu 2
ULE: setup cpu 3
ULE: setup cpu 4
ULE: setup cpu 5
ULE: setup cpu 6
ULE: setup cpu 7
ULE: setup cpu 8
ULE: setup cpu 9
ULE: setup cpu 10
ULE: setup cpu 11
ULE: setup cpu 12
ULE: setup cpu 13
ULE: setup cpu 14
ULE: setup cpu 15
ACPI: RSDP 0x00000000CBFF5014 000024 (v02 ALASKA)
ACPI: XSDT 0x00000000CBFF4728 0000DC (v01 ALASKA A M I    01072009 AMI  01000013)
ACPI: FACP 0x00000000CAA32000 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
ACPI: DSDT 0x00000000CAA2B000 006218 (v02 ALASKA A M I    01072009 INTL 20120913)
ACPI: FACS 0x00000000CAFEF000 000040
ACPI: SSDT 0x00000000CAA38000 007229 (v02 AMD    AmdTable 00000002 MSFT 04000000)
ACPI: SSDT 0x00000000CAA34000 003A78 (v01 AMD    AMD AOD  00000001 INTL 20120913)
ACPI: SSDT 0x00000000CAA33000 000221 (v02 ALASKA CPUSSDT  01072009 AMI  01072009)
ACPI: FIDT 0x00000000CAA2A000 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
ACPI: MCFG 0x00000000CAA29000 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
ACPI: AAFT 0x00000000CAA28000 0000ED (v01 ALASKA OEMAAFT  01072009 MSFT 00000097)
ACPI: HPET 0x00000000CAA27000 000038 (v01 ALASKA A M I    01072009 AMI  00000005)
ACPI: VFCT 0x00000000CAA19000 00D484 (v01 ALASKA A M I    00000001 AMD  31504F47)
ACPI: BGRT 0x00000000CAA18000 000038 (v01 ALASKA A M I    01072009 AMI  00010013)
ACPI: SSDT 0x00000000CAA14000 0035A4 (v02 AMD    AmdTable 00000001 AMD  00000001)
ACPI: CRAT 0x00000000CAA13000 000F28 (v01 AMD    AmdTable 00000001 AMD  00000001)
ACPI: CDIT 0x00000000CAA12000 000029 (v01 AMD    AmdTable 00000001 AMD  00000001)
ACPI: SSDT 0x00000000CAA11000 000D37 (v01 AMD    AmdTable 00000001 INTL 20120913)
ACPI: SSDT 0x00000000CAA0F000 0010A5 (v01 AMD    AmdTable 00000001 INTL 20120913)
ACPI: SSDT 0x00000000CAA0B000 00326A (v01 AMD    AmdTable 00000001 INTL 20120913)
ACPI: WSMT 0x00000000CAA0A000 000028 (v01 ALASKA A M I    01072009 AMI  00010013)
ACPI: APIC 0x00000000CAA09000 00015E (v03 ALASKA A M I    01072009 AMI  00010013)
ACPI: SSDT 0x00000000CAA08000 000517 (v01 AMD    AmdTable 00000001 INTL 20120913)
ACPI: SSDT 0x00000000CAA07000 00007D (v01 AMD    AmdTable 00000001 INTL 20120913)
ACPI: SSDT 0x00000000CAA05000 0010AF (v01 AMD    AmdTable 00000001 INTL 20120913)
ACPI: SSDT 0x00000000CAA04000 0000BF (v01 AMD    AmdTable 00001000 INTL 20120913)
ACPI: FPDT 0x00000000CAA03000 000044 (v01 ALASKA A M I    01072009 AMI  01000013)
MADT: Found IO APIC ID 17, Interrupt 0 at 0xfec00000
ioapic0: Changing APIC ID to 17
ioapic0: ver 0x21 maxredir 0x17
ioapic0: Routing external 8259A&amp;#039;s -&amp;gt; intpin 0
MADT: Found IO APIC ID 18, Interrupt 24 at 0xfec01000
ioapic1: Changing APIC ID to 18
ioapic1: ver 0x21 maxredir 0x1f
lapic: Routing NMI -&amp;gt; LINT1
lapic: LINT1 trigger: edge
lapic: LINT1 polarity: high
MADT: Interrupt override: source 0, irq 2
ioapic0: Routing IRQ 0 -&amp;gt; intpin 2
MADT: Interrupt override: source 9, irq 9
ioapic0: intpin 9 trigger: level
ioapic0: intpin 9 polarity: low
ioapic0 &amp;lt;Version 2.1&amp;gt; irqs 0-23 on motherboard
ioapic1 &amp;lt;Version 2.1&amp;gt; irqs 24-55 on motherboard
lapic: Divisor 2, Frequency 49907320 Hz
cpu0 BSP:
     ID: 0x00000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic14: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic14: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic14: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic14: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic14: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic14: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #14 Launched!
cpu14 AP:
     ID: 0x0e000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic13: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic13: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic13: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic13: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic13: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic13: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #13 Launched!
cpu13 AP:
     ID: 0x0d000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic15: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic15: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic15: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic15: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic15: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic15: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #15 Launched!
cpu15 AP:
     ID: 0x0f000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic11: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic11: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic11: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic11: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic11: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic11: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #11 Launched!
cpu11 AP:
     ID: 0x0b000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic10: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic10: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic10: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic10: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic10: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic10: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #10 Launched!
cpu10 AP:
     ID: 0x0a000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic7: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic7: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic7: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic7: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic7: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic7: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #7 Launched!
cpu7 AP:
     ID: 0x07000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic2: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic2: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic2: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic2: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic2: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic2: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #2 Launched!
cpu2 AP:
     ID: 0x02000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic1: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic1: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic1: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic1: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic1: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic1: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #1 Launched!
cpu1 AP:
     ID: 0x01000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic4: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic4: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic4: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic4: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic4: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic4: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #4 Launched!
cpu4 AP:
     ID: 0x04000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic8: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic8: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic8: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic8: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic8: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic8: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #8 Launched!
cpu8 AP:
     ID: 0x08000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic3: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic3: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic3: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic3: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic3: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic3: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #3 Launched!
cpu3 AP:
     ID: 0x03000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic5: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic5: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic5: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic5: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic5: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic5: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #5 Launched!
cpu5 AP:
     ID: 0x05000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic6: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic6: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic6: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic6: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic6: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic6: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #6 Launched!
cpu6 AP:
     ID: 0x06000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic12: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic12: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic12: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic12: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic12: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic12: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #12 Launched!
cpu12 AP:
     ID: 0x0c000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic9: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic9: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic9: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic9: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic9: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic9: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #9 Launched!
cpu9 AP:
     ID: 0x09000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
SMP: failed TSC synchronization test
TSC timecounter discards lower 1 bit(s)
Timecounter &amp;quot;TSC-low&amp;quot; frequency 1796663556 Hz quality -100
random: entropy device external interface
wlan: &amp;lt;802.11 Link Layer&amp;gt;
snd_unit_init() u=0x00ff8000 [512] d=0x00007c00 [32] c=0x000003ff [1024]
feeder_register: snd_unit=-1 snd_maxautovchans=16 latency=2 feeder_rate_min=1 feeder_rate_max=2016000 feeder_rate_round=25
kbd: new array size 4
kbd1 at kbdmux0
mem: &amp;lt;memory&amp;gt;
000.000023 [4335] netmap_init               netmap: loaded module
null: &amp;lt;full device, null device, zero device&amp;gt;
[ath_hal] loaded
nfslock: pseudo-device
crypto: &amp;lt;crypto core&amp;gt;
tcp_log: tcp_log device
module_register_init: MOD_LOAD (vesa, 0xffffffff8112e0f0, 0) error 19
io: &amp;lt;I/O&amp;gt;
random: registering fast source Intel Secure Key RNG
random: fast provider: &amp;quot;Intel Secure Key RNG&amp;quot;
hpt27xx: RocketRAID 27xx controller driver v1.2.8
hptnr: R750/DC7280 controller driver v1.1.5
hptrr: RocketRAID 17xx/2xxx SATA controller driver v1.2
nexus0
efirtc0: &amp;lt;EFI Realtime Clock&amp;gt; on motherboard
efirtc0: registered as a time-of-day clock, resolution 1.000000s
cryptosoft0: &amp;lt;software crypto&amp;gt; on motherboard
crypto: assign cryptosoft0 driver id 0, flags 0x6000000
crypto: cryptosoft0 registers alg 1 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 2 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 3 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 4 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 5 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 16 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 6 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 7 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 32 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 18 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 19 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 20 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 8 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 15 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 9 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 10 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 13 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 14 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 34 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 35 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 36 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 37 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 11 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 22 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 23 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 25 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 24 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 26 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 27 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 28 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 21 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 17 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 29 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 30 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 31 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 40 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 39 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 38 flags 0 maxoplen 0
acpi0: &amp;lt;ALASKA A M I &amp;gt; on motherboard
ACPI: 12 ACPI AML tables successfully acquired and loaded
PCIe: Memory Mapped configuration base @ 0xf0000000
ioapic0: routing intpin 9 (ISA IRQ 9) to lapic 0 vector 48
acpi0: Power Button (fixed)
acpi0: wakeup code va 0xfffffe0003fff000 pa 0x9c000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
attimer0: &amp;lt;AT timer&amp;gt; port 0x40-0x43 irq 0 on acpi0
Timecounter &amp;quot;i8254&amp;quot; frequency 1193182 Hz quality 0
ioapic0: routing intpin 2 (ISA IRQ 0) to lapic 2 vector 48
Event timer &amp;quot;i8254&amp;quot; frequency 1193182 Hz quality 100
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
atrtc0: &amp;lt;AT realtime clock&amp;gt; port 0x70-0x71 on acpi0
atrtc0: registered as a time-of-day clock, resolution 1.000000s
ioapic0: routing intpin 8 (ISA IRQ 8) to lapic 4 vector 48
ioapic0: routing intpin 8 (ISA IRQ 8) to lapic 0 vector 49
Event timer &amp;quot;RTC&amp;quot; frequency 32768 Hz quality 0
hpet0: &amp;lt;High Precision Event Timer&amp;gt; iomem 0xfed00000-0xfed003ff irq 0,8 on acpi0
hpet0: vendor 0x1022, rev 0x1, 14318180Hz, 3 timers, legacy route
hpet0:  t0: irqs 0x00c00000 (0), MSI, periodic
hpet0:  t1: irqs 0x00c00000 (0), MSI, periodic
hpet0:  t2: irqs 0x00c00000 (0), MSI, periodic
Timecounter &amp;quot;HPET&amp;quot; frequency 14318180 Hz quality 950
msi: routing MSI-X IRQ 256 to local APIC 6 vector 48
msi: routing MSI-X IRQ 257 to local APIC 8 vector 48
msi: routing MSI-X IRQ 258 to local APIC 10 vector 48
msi: Assigning MSI-X IRQ 256 to local APIC 0 vector 50
msi: Assigning MSI-X IRQ 257 to local APIC 0 vector 51
msi: Assigning MSI-X IRQ 258 to local APIC 0 vector 52
Event timer &amp;quot;HPET&amp;quot; frequency 14318180 Hz quality 350
Event timer &amp;quot;HPET1&amp;quot; frequency 14318180 Hz quality 350
Event timer &amp;quot;HPET2&amp;quot; frequency 14318180 Hz quality 350
ACPI timer: 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/2 -&amp;gt; 10
Timecounter &amp;quot;ACPI-fast&amp;quot; frequency 3579545 Hz quality 900
acpi_timer0: &amp;lt;32-bit timer at 3.579545MHz&amp;gt; port 0x808-0x80b on acpi0
pci_link0:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
pci_link1:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
pci_link2:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
pci_link3:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
pci_link4:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
pci_link5:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
pci_link6:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
pci_link7:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
pcib0: &amp;lt;ACPI Host-PCI bridge&amp;gt; port 0xcf8-0xcff on acpi0
pcib0: decoding 5 range 0-0xff
pcib0: decoding 4 range 0-0x3af
pcib0: decoding 4 range 0x3e0-0xcf7
pcib0: decoding 4 range 0x3b0-0x3df
pcib0: decoding 4 range 0xd00-0xffff
pcib0: decoding 3 range 0xa0000-0xbffff
pcib0: decoding 3 range 0xc0000-0xdffff
pcib0: decoding 3 range 0xd0000000-0xfec2ffff
pcib0: decoding 3 range 0xfee00000-0xffffffff
pci0: &amp;lt;ACPI PCI bus&amp;gt; on pcib0
pci0: domain=0, physical bus=0
found-&amp;gt;	vendor=0x1022, dev=0x1630, revid=0x00
	domain=0, bus=0, slot=0, func=0
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x1632, revid=0x00
	domain=0, bus=0, slot=1, func=0
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x1633, revid=0x00
	domain=0, bus=0, slot=1, func=1
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=1, subbus=2
found-&amp;gt;	vendor=0x1022, dev=0x1632, revid=0x00
	domain=0, bus=0, slot=2, func=0
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x1634, revid=0x00
	domain=0, bus=0, slot=2, func=1
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=3, subbus=12
found-&amp;gt;	vendor=0x1022, dev=0x1632, revid=0x00
	domain=0, bus=0, slot=8, func=0
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x1635, revid=0x00
	domain=0, bus=0, slot=8, func=1
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=13, subbus=13
found-&amp;gt;	vendor=0x1022, dev=0x790b, revid=0x51
	domain=0, bus=0, slot=20, func=0
	class=0c-05-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0403, statreg=0x0220, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x790e, revid=0x51
	domain=0, bus=0, slot=20, func=3
	class=06-01-00, hdrtype=0x00, mfdev=1
	cmdreg=0x000f, statreg=0x0220, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x1448, revid=0x00
	domain=0, bus=0, slot=24, func=0
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x1449, revid=0x00
	domain=0, bus=0, slot=24, func=1
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x144a, revid=0x00
	domain=0, bus=0, slot=24, func=2
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x144b, revid=0x00
	domain=0, bus=0, slot=24, func=3
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x144c, revid=0x00
	domain=0, bus=0, slot=24, func=4
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x144d, revid=0x00
	domain=0, bus=0, slot=24, func=5
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x144e, revid=0x00
	domain=0, bus=0, slot=24, func=6
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x144f, revid=0x00
	domain=0, bus=0, slot=24, func=7
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
pcib1: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 1.1 on pci0
pcib0: allocated type 4 (0xf000-0xffff) for rid 1c of pcib1
pcib0: allocated type 3 (0xfc900000-0xfccfffff) for rid 20 of pcib1
pcib0: allocated type 3 (0xe0300000-0xe06fffff) for rid 24 of pcib1
pcib1:   domain            0
pcib1:   secondary bus     1
pcib1:   subordinate bus   2
pcib1:   I/O decode        0xf000-0xffff
pcib1:   memory decode     0xfc900000-0xfccfffff
pcib1:   prefetched decode 0xe0300000-0xe06fffff
pci1: &amp;lt;ACPI PCI bus&amp;gt; on pcib1
pcib1: allocated bus range (1-1) for rid 0 of pci1
pci1: domain=0, physical bus=1
found-&amp;gt;	vendor=0x8086, dev=0x10fb, revid=0x01
	domain=0, bus=1, slot=0, func=0
	class=02-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=b, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit, vector masks
	MSI-X supports 64 messages in map 0x20
	map[10]: type Memory, range 64, base 0xfca00000, size 20, memory disabled
pcib1: allocated memory range (0xfca00000-0xfcafffff) for rid 10 of pci0:1:0:0
	map[18]: type I/O Port, range 32, base 0xf020, size  5, port disabled
pcib1: allocated I/O port range (0xf020-0xf03f) for rid 18 of pci0:1:0:0
	map[20]: type Memory, range 64, base 0xfcc04000, size 14, enabled
pcib1: allocated memory range (0xfcc04000-0xfcc07fff) for rid 20 of pci0:1:0:0
found-&amp;gt;	vendor=0x8086, dev=0x10fb, revid=0x01
	domain=0, bus=1, slot=0, func=1
	class=02-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit, vector masks
	MSI-X supports 64 messages in map 0x20
	map[10]: type Memory, range 64, base 0xfc900000, size 20, memory disabled
pcib1: allocated memory range (0xfc900000-0xfc9fffff) for rid 10 of pci0:1:0:1
	map[18]: type I/O Port, range 32, base 0xf000, size  5, port disabled
pcib1: allocated I/O port range (0xf000-0xf01f) for rid 18 of pci0:1:0:1
	map[20]: type Memory, range 64, base 0xfcc00000, size 14, enabled
pcib1: allocated memory range (0xfcc00000-0xfcc03fff) for rid 20 of pci0:1:0:1
ix0: &amp;lt;Intel(R) PRO/10GbE PCI-Express Network Driver&amp;gt; port 0xf020-0xf03f mem 0xfca00000-0xfcafffff,0xfcc04000-0xfcc07fff at device 0.0 on pci1
ixgbe_attach: begin
ix0: Using 2048 TX descriptors and 2048 RX descriptors
ix0: msix_init qsets capped at 16
ix0: intr CPUs: 8 queue msgs: 63 admincnt: 1
ix0: Using 8 RX queues 8 TX queues
ix0: attempting to allocate 9 MSI-X vectors (64 supported)
msi: routing MSI-X IRQ 259 to local APIC 12 vector 48
msi: routing MSI-X IRQ 260 to local APIC 14 vector 48
msi: routing MSI-X IRQ 261 to local APIC 0 vector 53
msi: routing MSI-X IRQ 262 to local APIC 2 vector 49
msi: routing MSI-X IRQ 263 to local APIC 4 vector 48
msi: routing MSI-X IRQ 264 to local APIC 6 vector 48
msi: routing MSI-X IRQ 265 to local APIC 8 vector 48
msi: routing MSI-X IRQ 266 to local APIC 10 vector 48
msi: routing MSI-X IRQ 267 to local APIC 12 vector 49
ix0: using IRQs 259-267 for MSI-X
ix0: Using MSI-X interrupts with 9 vectors
ix0: allocated for 8 queues
ix0: allocated for 8 rx queues
msi: Assigning MSI-X IRQ 259 to local APIC 0 vector 54
msi: Assigning MSI-X IRQ 260 to local APIC 2 vector 50
msi: Assigning MSI-X IRQ 261 to local APIC 4 vector 49
msi: Assigning MSI-X IRQ 262 to local APIC 6 vector 49
msi: Assigning MSI-X IRQ 263 to local APIC 8 vector 49
msi: Assigning MSI-X IRQ 264 to local APIC 10 vector 49
msi: Assigning MSI-X IRQ 265 to local APIC 12 vector 48
msi: Assigning MSI-X IRQ 266 to local APIC 14 vector 48
msi: Assigning MSI-X IRQ 259 to local APIC 1 vector 48
msi: Assigning MSI-X IRQ 260 to local APIC 3 vector 48
msi: Assigning MSI-X IRQ 261 to local APIC 5 vector 48
msi: Assigning MSI-X IRQ 262 to local APIC 7 vector 48
msi: Assigning MSI-X IRQ 263 to local APIC 9 vector 48
msi: Assigning MSI-X IRQ 264 to local APIC 11 vector 48
msi: Assigning MSI-X IRQ 265 to local APIC 13 vector 48
msi: Assigning MSI-X IRQ 266 to local APIC 15 vector 48
ix0: bpf attached
ix0: Ethernet address: 38:ea:a7:8e:91:38
ixgbe_setup_interface: begin
ix0: PCI Express Bus: Speed 5.0GT/s Width x8
ix0: netmap queues/slots: TX 8/2048, RX 8/2048
ix1: &amp;lt;Intel(R) PRO/10GbE PCI-Express Network Driver&amp;gt; port 0xf000-0xf01f mem 0xfc900000-0xfc9fffff,0xfcc00000-0xfcc03fff at device 0.1 on pci1
ixgbe_attach: begin
ix1: Using 2048 TX descriptors and 2048 RX descriptors
ix1: msix_init qsets capped at 16
ix1: intr CPUs: 8 queue msgs: 63 admincnt: 1
ix1: Using 8 RX queues 8 TX queues
ix1: attempting to allocate 9 MSI-X vectors (64 supported)
msi: routing MSI-X IRQ 268 to local APIC 14 vector 48
msi: routing MSI-X IRQ 269 to local APIC 0 vector 53
msi: routing MSI-X IRQ 270 to local APIC 2 vector 49
msi: routing MSI-X IRQ 271 to local APIC 4 vector 48
msi: routing MSI-X IRQ 272 to local APIC 6 vector 48
msi: routing MSI-X IRQ 273 to local APIC 8 vector 48
msi: routing MSI-X IRQ 274 to local APIC 10 vector 48
msi: routing MSI-X IRQ 275 to local APIC 12 vector 48
msi: routing MSI-X IRQ 276 to local APIC 14 vector 49
ix1: using IRQs 268-276 for MSI-X
ix1: Using MSI-X interrupts with 9 vectors
ix1: allocated for 8 queues
ix1: allocated for 8 rx queues
msi: Assigning MSI-X IRQ 268 to local APIC 0 vector 54
msi: Assigning MSI-X IRQ 269 to local APIC 2 vector 50
msi: Assigning MSI-X IRQ 270 to local APIC 4 vector 49
msi: Assigning MSI-X IRQ 271 to local APIC 6 vector 49
msi: Assigning MSI-X IRQ 272 to local APIC 8 vector 49
msi: Assigning MSI-X IRQ 273 to local APIC 10 vector 49
msi: Assigning MSI-X IRQ 274 to local APIC 12 vector 50
msi: Assigning MSI-X IRQ 275 to local APIC 14 vector 48
msi: Assigning MSI-X IRQ 268 to local APIC 1 vector 49
msi: Assigning MSI-X IRQ 269 to local APIC 3 vector 49
msi: Assigning MSI-X IRQ 270 to local APIC 5 vector 49
msi: Assigning MSI-X IRQ 271 to local APIC 7 vector 49
msi: Assigning MSI-X IRQ 272 to local APIC 9 vector 49
msi: Assigning MSI-X IRQ 273 to local APIC 11 vector 49
msi: Assigning MSI-X IRQ 274 to local APIC 13 vector 49
msi: Assigning MSI-X IRQ 275 to local APIC 15 vector 49
ix1: bpf attached
ix1: Ethernet address: 38:ea:a7:8e:91:39
ixgbe_setup_interface: begin
ix1: PCI Express Bus: Speed 5.0GT/s Width x8
ix1: netmap queues/slots: TX 8/2048, RX 8/2048
pcib2: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 2.1 on pci0
pcib0: allocated type 4 (0xe000-0xefff) for rid 1c of pcib2
pcib0: allocated type 3 (0xfcd00000-0xfcffffff) for rid 20 of pcib2
pcib2:   domain            0
pcib2:   secondary bus     3
pcib2:   subordinate bus   12
pcib2:   I/O decode        0xe000-0xefff
pcib2:   memory decode     0xfcd00000-0xfcffffff
pci2: &amp;lt;ACPI PCI bus&amp;gt; on pcib2
pcib2: allocated bus range (3-3) for rid 0 of pci2
pci2: domain=0, physical bus=3
found-&amp;gt;	vendor=0x1022, dev=0x43ee, revid=0x00
	domain=0, bus=3, slot=0, func=0
	class=0c-03-30, hdrtype=0x00, mfdev=1
	cmdreg=0x0006, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 8 messages, 64 bit
	MSI-X supports 8 messages in map 0x10
	map[10]: type Memory, range 64, base 0xfcfa0000, size 15, enabled
pcib2: allocated memory range (0xfcfa0000-0xfcfa7fff) for rid 10 of pci0:3:0:0
found-&amp;gt;	vendor=0x1022, dev=0x43eb, revid=0x00
	domain=0, bus=3, slot=0, func=1
	class=01-06-01, hdrtype=0x00, mfdev=1
	cmdreg=0x0006, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=b, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[24]: type Memory, range 32, base 0xfcf80000, size 17, enabled
pcib2: allocated memory range (0xfcf80000-0xfcf9ffff) for rid 24 of pci0:3:0:1
found-&amp;gt;	vendor=0x1022, dev=0x43e9, revid=0x00
	domain=0, bus=3, slot=0, func=2
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=4, subbus=12
pcib2: allocated bus range (4-12) for rid 0 of pci0:3:0:2
xhci0: &amp;lt;XHCI (generic) USB 3.0 controller&amp;gt; mem 0xfcfa0000-0xfcfa7fff at device 0.0 on pci2
xhci0: 32 bytes context size, 64-bit DMA
xhci0: Unable to map MSI-X table
xhci0: attempting to allocate 1 MSI vectors (8 supported)
msi: routing MSI IRQ 277 to local APIC 0 vector 53
xhci0: using IRQ 277 for MSI
xhci0: MSI enabled
usbus0 on xhci0
xhci0: usbpf: Attached
usbus0: 5.0Gbps Super Speed USB v3.0
ahci0: &amp;lt;AHCI SATA controller&amp;gt; mem 0xfcf80000-0xfcf9ffff at device 0.1 on pci2
ahci0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 278 to local APIC 2 vector 49
ahci0: using IRQ 278 for MSI
ahci0: AHCI v1.31 with 6 6Gbps ports, Port Multiplier supported
ahci0: Caps: 64bit NCQ SNTF SS ALP AL CLO 6Gbps PM PMD SSC PSC 32cmd eSATA 6ports
ahci0: Caps2: DESO SADM SDS APST
ahcich0: &amp;lt;AHCI channel&amp;gt; at channel 0 on ahci0
ahcich0: Caps: HPCP
ahcich1: &amp;lt;AHCI channel&amp;gt; at channel 1 on ahci0
ahcich1: Caps: HPCP
ahcich2: &amp;lt;AHCI channel&amp;gt; at channel 2 on ahci0
ahcich2: Caps: HPCP
ahcich3: &amp;lt;AHCI channel&amp;gt; at channel 3 on ahci0
ahcich3: Caps: HPCP
ahcich4: &amp;lt;AHCI channel&amp;gt; at channel 4 on ahci0
ahcich4: Caps: HPCP
ahcich5: &amp;lt;AHCI channel&amp;gt; at channel 5 on ahci0
ahcich5: Caps: HPCP
pcib3: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 0.2 on pci2
pcib2: allocated I/O port range (0xe000-0xefff) for rid 1c of pcib3
pcib2: allocated memory range (0xfcd00000-0xfcefffff) for rid 20 of pcib3
pcib3:   domain            0
pcib3:   secondary bus     4
pcib3:   subordinate bus   12
pcib3:   I/O decode        0xe000-0xefff
pcib3:   memory decode     0xfcd00000-0xfcefffff
pcib3: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02 - AE_NOT_FOUND
pci3: &amp;lt;ACPI PCI bus&amp;gt; on pcib3
pcib3: allocated bus range (4-4) for rid 0 of pci3
pci3: domain=0, physical bus=4
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=0, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=5, subbus=5
pcib3: allocated bus range (5-5) for rid 0 of pci0:4:0:0
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=1, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=6, subbus=6
pcib3: allocated bus range (6-6) for rid 0 of pci0:4:1:0
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=2, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=7, subbus=7
pcib3: allocated bus range (7-7) for rid 0 of pci0:4:2:0
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=3, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=8, subbus=8
pcib3: allocated bus range (8-8) for rid 0 of pci0:4:3:0
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=6, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=9, subbus=9
pcib3: allocated bus range (9-9) for rid 0 of pci0:4:6:0
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=7, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=10, subbus=10
pcib3: allocated bus range (10-10) for rid 0 of pci0:4:7:0
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=8, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=11, subbus=11
pcib3: allocated bus range (11-11) for rid 0 of pci0:4:8:0
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=9, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=12, subbus=12
pcib3: allocated bus range (12-12) for rid 0 of pci0:4:9:0
pcib4: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 0.0 on pci3
pcib3: allocated I/O port range (0xe000-0xefff) for rid 1c of pcib4
pcib3: allocated memory range (0xfce00000-0xfcefffff) for rid 20 of pcib4
pcib4:   domain            0
pcib4:   secondary bus     5
pcib4:   subordinate bus   5
pcib4:   I/O decode        0xe000-0xefff
pcib4:   memory decode     0xfce00000-0xfcefffff
pcib4: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT20 - AE_NOT_FOUND
pci4: &amp;lt;ACPI PCI bus&amp;gt; on pcib4
pcib4: allocated bus range (5-5) for rid 0 of pci4
pci4: domain=0, physical bus=5
found-&amp;gt;	vendor=0x10ec, dev=0x8168, revid=0x15
	domain=0, bus=5, slot=0, func=0
	class=02-00-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D1 D2 D3  current D0
	MSI supports 1 message, 64 bit
	MSI-X supports 4 messages in map 0x20
	map[10]: type I/O Port, range 32, base 0xe000, size  8, enabled
pcib4: allocated I/O port range (0xe000-0xe0ff) for rid 10 of pci0:5:0:0
	map[18]: type Memory, range 64, base 0xfce04000, size 12, enabled
pcib4: allocated memory range (0xfce04000-0xfce04fff) for rid 18 of pci0:5:0:0
	map[20]: type Memory, range 64, base 0xfce00000, size 14, enabled
pcib4: allocated memory range (0xfce00000-0xfce03fff) for rid 20 of pci0:5:0:0
re0: &amp;lt;RealTek 8168/8111 B/C/CP/D/DP/E/F/G PCIe Gigabit Ethernet&amp;gt; port 0xe000-0xe0ff mem 0xfce04000-0xfce04fff,0xfce00000-0xfce03fff at device 0.0 on pci4
re0: MSI count : 1
re0: MSI-X count : 4
re0: attempting to allocate 1 MSI-X vectors (4 supported)
msi: routing MSI-X IRQ 279 to local APIC 4 vector 48
re0: using IRQ 279 for MSI-X
re0: Using 1 MSI-X message
re0: ASPM disabled
re0: Chip rev. 0x54000000
re0: MAC rev. 0x00100000
miibus0: &amp;lt;MII bus&amp;gt; on re0
rgephy0: &amp;lt;RTL8251/8153 1000BASE-T media interface&amp;gt; PHY 1 on miibus0
rgephy0: OUI 0x00e04c, model 0x0000, rev. 0
rgephy0:  none, 10baseT, 10baseT-FDX, 10baseT-FDX-flow, 100baseTX, 100baseTX-FDX, 100baseTX-FDX-flow, 1000baseT-FDX, 1000baseT-FDX-master, 1000baseT-FDX-flow, 1000baseT-FDX-flow-master, auto, auto-flow
re0: Using defaults for TSO: 65518/35/2048
re0: bpf attached
re0: Ethernet address: a8:a1:59:34:3f:7f
re0: netmap queues/slots: TX 1/256, RX 1/256
pcib5: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 1.0 on pci3
pcib3: allocated memory range (0xfcd00000-0xfcdfffff) for rid 20 of pcib5
pcib5:   domain            0
pcib5:   secondary bus     6
pcib5:   subordinate bus   6
pcib5:   memory decode     0xfcd00000-0xfcdfffff
pcib5: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT21 - AE_NOT_FOUND
pci5: &amp;lt;ACPI PCI bus&amp;gt; on pcib5
pcib5: allocated bus range (6-6) for rid 0 of pci5
pci5: domain=0, physical bus=6
found-&amp;gt;	vendor=0x8086, dev=0x24fb, revid=0x10
	domain=0, bus=6, slot=0, func=0
	class=02-80-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0000, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 64, base 0xfcd00000, size 13, memory disabled
pcib5: allocated memory range (0xfcd00000-0xfcd01fff) for rid 10 of pci0:6:0:0
pci5: &amp;lt;network&amp;gt; at device 0.0 (no driver attached)
pcib6: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 2.0 on pci3
pcib6:   domain            0
pcib6:   secondary bus     7
pcib6:   subordinate bus   7
pcib6: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT22 - AE_NOT_FOUND
pci6: &amp;lt;ACPI PCI bus&amp;gt; on pcib6
pcib6: allocated bus range (7-7) for rid 0 of pci6
pci6: domain=0, physical bus=7
pcib7: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 3.0 on pci3
pcib7:   domain            0
pcib7:   secondary bus     8
pcib7:   subordinate bus   8
pcib7: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT23 - AE_NOT_FOUND
pci7: &amp;lt;ACPI PCI bus&amp;gt; on pcib7
pcib7: allocated bus range (8-8) for rid 0 of pci7
pci7: domain=0, physical bus=8
pcib8: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 6.0 on pci3
pcib8:   domain            0
pcib8:   secondary bus     9
pcib8:   subordinate bus   9
pcib8: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT26 - AE_NOT_FOUND
pci8: &amp;lt;ACPI PCI bus&amp;gt; on pcib8
pcib8: allocated bus range (9-9) for rid 0 of pci8
pci8: domain=0, physical bus=9
pcib9: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 7.0 on pci3
pcib9:   domain            0
pcib9:   secondary bus     10
pcib9:   subordinate bus   10
pcib9: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT27 - AE_NOT_FOUND
pci9: &amp;lt;ACPI PCI bus&amp;gt; on pcib9
pcib9: allocated bus range (10-10) for rid 0 of pci9
pci9: domain=0, physical bus=10
pcib10: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 8.0 on pci3
pcib10:   domain            0
pcib10:   secondary bus     11
pcib10:   subordinate bus   11
pcib10: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT28 - AE_NOT_FOUND
pci10: &amp;lt;ACPI PCI bus&amp;gt; on pcib10
pcib10: allocated bus range (11-11) for rid 0 of pci10
pci10: domain=0, physical bus=11
pcib11: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 9.0 on pci3
pcib11:   domain            0
pcib11:   secondary bus     12
pcib11:   subordinate bus   12
pcib11: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT29 - AE_NOT_FOUND
pci11: &amp;lt;ACPI PCI bus&amp;gt; on pcib11
pcib11: allocated bus range (12-12) for rid 0 of pci11
pci11: domain=0, physical bus=12
pcib12: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 8.1 on pci0
pcib0: allocated type 4 (0xd000-0xdfff) for rid 1c of pcib12
pcib0: allocated type 3 (0xfc500000-0xfc8fffff) for rid 20 of pcib12
pcib0: allocated type 3 (0xd0000000-0xe01fffff) for rid 24 of pcib12
pcib12:   domain            0
pcib12:   secondary bus     13
pcib12:   subordinate bus   13
pcib12:   I/O decode        0xd000-0xdfff
pcib12:   memory decode     0xfc500000-0xfc8fffff
pcib12:   prefetched decode 0xd0000000-0xe01fffff
pci12: &amp;lt;ACPI PCI bus&amp;gt; on pcib12
pcib12: allocated bus range (13-13) for rid 0 of pci12
pci12: domain=0, physical bus=13
found-&amp;gt;	vendor=0x1002, dev=0x1636, revid=0xd8
	domain=0, bus=13, slot=0, func=0
	class=03-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0006, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 4 messages, 64 bit
	MSI-X supports 4 messages in map 0x24
	map[10]: type Prefetchable Memory, range 64, base 0xd0000000, size 28, enabled
pcib12: allocated prefetch range (0xd0000000-0xdfffffff) for rid 10 of pci0:13:0:0
	map[18]: type Prefetchable Memory, range 64, base 0xe0000000, size 21, enabled
pcib12: allocated prefetch range (0xe0000000-0xe01fffff) for rid 18 of pci0:13:0:0
	map[20]: type I/O Port, range 32, base 0xd000, size  8, port disabled
pcib12: allocated I/O port range (0xd000-0xd0ff) for rid 20 of pci0:13:0:0
	map[24]: type Memory, range 32, base 0xfc800000, size 19, enabled
pcib12: allocated memory range (0xfc800000-0xfc87ffff) for rid 24 of pci0:13:0:0
found-&amp;gt;	vendor=0x1002, dev=0x1637, revid=0x00
	domain=0, bus=13, slot=0, func=1
	class=04-03-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=b, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 32, base 0xfc888000, size 14, memory disabled
pcib12: allocated memory range (0xfc888000-0xfc88bfff) for rid 10 of pci0:13:0:1
found-&amp;gt;	vendor=0x1022, dev=0x15df, revid=0x00
	domain=0, bus=13, slot=0, func=2
	class=10-80-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 2 messages, 64 bit
	MSI-X supports 2 messages in map 0x24
	map[18]: type Memory, range 32, base 0xfc700000, size 20, memory disabled
pcib12: allocated memory range (0xfc700000-0xfc7fffff) for rid 18 of pci0:13:0:2
	map[24]: type Memory, range 32, base 0xfc88c000, size 13, enabled
pcib12: allocated memory range (0xfc88c000-0xfc88dfff) for rid 24 of pci0:13:0:2
found-&amp;gt;	vendor=0x1022, dev=0x1639, revid=0x00
	domain=0, bus=13, slot=0, func=3
	class=0c-03-30, hdrtype=0x00, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=d, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 8 messages, 64 bit
	MSI-X supports 8 messages in map 0x10
	map[10]: type Memory, range 64, base 0xfc600000, size 20, enabled
pcib12: allocated memory range (0xfc600000-0xfc6fffff) for rid 10 of pci0:13:0:3
found-&amp;gt;	vendor=0x1022, dev=0x1639, revid=0x00
	domain=0, bus=13, slot=0, func=4
	class=0c-03-30, hdrtype=0x00, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 8 messages, 64 bit
	MSI-X supports 8 messages in map 0x10
	map[10]: type Memory, range 64, base 0xfc500000, size 20, enabled
pcib12: allocated memory range (0xfc500000-0xfc5fffff) for rid 10 of pci0:13:0:4
found-&amp;gt;	vendor=0x1022, dev=0x15e3, revid=0x00
	domain=0, bus=13, slot=0, func=6
	class=04-03-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 32, base 0xfc880000, size 15, memory disabled
pcib12: allocated memory range (0xfc880000-0xfc887fff) for rid 10 of pci0:13:0:6
vgapci0: &amp;lt;VGA-compatible display&amp;gt; port 0xd000-0xd0ff mem 0xd0000000-0xdfffffff,0xe0000000-0xe01fffff,0xfc800000-0xfc87ffff at device 0.0 on pci12
hdac0: &amp;lt;ATI (0x1637) HDA Controller&amp;gt; mem 0xfc888000-0xfc88bfff at device 0.1 on pci12
hdac0: PCI card vendor: 0x1002, device: 0x1637
hdac0: HDA Driver Revision: 20120126_0002
hdac0: Config options: on=0x00000000 off=0x00000000
hdac0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 280 to local APIC 6 vector 48
hdac0: using IRQ 280 for MSI
hdac0: Caps: OSS 4, ISS 0, BSS 0, NSDO 1, 64bit, CORB 256, RIRB 256
pci12: &amp;lt;encrypt/decrypt&amp;gt; at device 0.2 (no driver attached)
xhci1: &amp;lt;XHCI (generic) USB 3.0 controller&amp;gt; mem 0xfc600000-0xfc6fffff at device 0.3 on pci12
xhci1: 64 bytes context size, 64-bit DMA
xhci1: Unable to map MSI-X table
xhci1: attempting to allocate 1 MSI vectors (8 supported)
msi: routing MSI IRQ 281 to local APIC 8 vector 48
xhci1: using IRQ 281 for MSI
xhci1: MSI enabled
usbus1 on xhci1
xhci1: usbpf: Attached
usbus1: 5.0Gbps Super Speed USB v3.0
xhci2: &amp;lt;XHCI (generic) USB 3.0 controller&amp;gt; mem 0xfc500000-0xfc5fffff at device 0.4 on pci12
xhci2: 64 bytes context size, 64-bit DMA
xhci2: Unable to map MSI-X table
xhci2: attempting to allocate 1 MSI vectors (8 supported)
msi: routing MSI IRQ 282 to local APIC 10 vector 48
xhci2: using IRQ 282 for MSI
xhci2: MSI enabled
usbus2 on xhci2
xhci2: usbpf: Attached
usbus2: 5.0Gbps Super Speed USB v3.0
hdac1: &amp;lt;AMD (0x15e3) HDA Controller&amp;gt; mem 0xfc880000-0xfc887fff at device 0.6 on pci12
hdac1: PCI card vendor: 0x1849, device: 0x288a
hdac1: HDA Driver Revision: 20120126_0002
hdac1: Config options: on=0x00000000 off=0x00000000
hdac1: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 283 to local APIC 12 vector 48
hdac1: using IRQ 283 for MSI
hdac1: Caps: OSS 4, ISS 4, BSS 0, NSDO 1, 64bit, CORB 256, RIRB 256
pci0: &amp;lt;serial bus, SMBus&amp;gt; at device 20.0 (no driver attached)
isab0: &amp;lt;PCI-ISA bridge&amp;gt; at device 20.3 on pci0
isa0: &amp;lt;ISA bus&amp;gt; on isab0
acpi_button0: &amp;lt;Power Button&amp;gt; on acpi0
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
uart2: &amp;lt;16x50 with 256 byte FIFO&amp;gt; iomem 0xfedc9000-0xfedc9fff,0xfedc7000-0xfedc7fff irq 3 on acpi0
ioapic0: routing intpin 3 (ISA IRQ 3) to lapic 14 vector 48
uart2: fast interrupt
uart2: PPS capture mode: DCD
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
uart3: &amp;lt;16x50 with 256 byte FIFO&amp;gt; iomem 0xfedca000-0xfedcafff,0xfedc8000-0xfedc8fff irq 4 on acpi0
ioapic0: routing intpin 4 (ISA IRQ 4) to lapic 0 vector 54
uart3: fast interrupt
uart3: PPS capture mode: DCD
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
uart4: &amp;lt;16x50 with 256 byte FIFO&amp;gt; iomem 0xfedce000-0xfedcefff,0xfedcc000-0xfedccfff irq 3 on acpi0
uart4: fast interrupt
uart4: PPS capture mode: DCD
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
uart5: &amp;lt;16x50 with 256 byte FIFO&amp;gt; iomem 0xfedcf000-0xfedcffff,0xfedcd000-0xfedcdfff irq 4 on acpi0
uart5: fast interrupt
uart5: PPS capture mode: DCD
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
acpi_syscontainer0: &amp;lt;System Container&amp;gt; on acpi0
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
cpu0: Processor \134_SB_.PLTF.C000 (ACPI ID 0) -&amp;gt; APIC ID 0
cpu0: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu0: switching to generic Cx mode
cpu1: Processor \134_SB_.PLTF.C001 (ACPI ID 1) -&amp;gt; APIC ID 1
cpu1: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu2: Processor \134_SB_.PLTF.C002 (ACPI ID 2) -&amp;gt; APIC ID 2
cpu2: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu3: Processor \134_SB_.PLTF.C003 (ACPI ID 3) -&amp;gt; APIC ID 3
cpu3: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu4: Processor \134_SB_.PLTF.C004 (ACPI ID 4) -&amp;gt; APIC ID 4
cpu4: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu5: Processor \134_SB_.PLTF.C005 (ACPI ID 5) -&amp;gt; APIC ID 5
cpu5: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu6: Processor \134_SB_.PLTF.C006 (ACPI ID 6) -&amp;gt; APIC ID 6
cpu6: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu7: Processor \134_SB_.PLTF.C007 (ACPI ID 7) -&amp;gt; APIC ID 7
cpu7: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu8: Processor \134_SB_.PLTF.C008 (ACPI ID 8) -&amp;gt; APIC ID 8
cpu8: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu9: Processor \134_SB_.PLTF.C009 (ACPI ID 9) -&amp;gt; APIC ID 9
cpu9: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu10: Processor \134_SB_.PLTF.C00A (ACPI ID 10) -&amp;gt; APIC ID 10
cpu10: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu11: Processor \134_SB_.PLTF.C00B (ACPI ID 11) -&amp;gt; APIC ID 11
cpu11: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu12: Processor \134_SB_.PLTF.C00C (ACPI ID 12) -&amp;gt; APIC ID 12
cpu12: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu13: Processor \134_SB_.PLTF.C00D (ACPI ID 13) -&amp;gt; APIC ID 13
cpu13: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu14: Processor \134_SB_.PLTF.C00E (ACPI ID 14) -&amp;gt; APIC ID 14
cpu14: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu15: Processor \134_SB_.PLTF.C00F (ACPI ID 15) -&amp;gt; APIC ID 15
cpu15: &amp;lt;ACPI CPU&amp;gt; on acpi0
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
uart0: &amp;lt;16550 or compatible&amp;gt; port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0
uart0: fast interrupt
uart0: PPS capture mode: DCD
ACPI: Enabled 1 GPEs in block 00 to 1F
pcib0: allocated type 3 (0xa0000-0xa07ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa0800-0xa0fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa1000-0xa17ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa1800-0xa1fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa2000-0xa27ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa2800-0xa2fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa3000-0xa37ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa3800-0xa3fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa4000-0xa47ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa4800-0xa4fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa5000-0xa57ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa5800-0xa5fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa6000-0xa67ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa6800-0xa6fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa7000-0xa77ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa7800-0xa7fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa8000-0xa87ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa8800-0xa8fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa9000-0xa97ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa9800-0xa9fff) for rid 0 of orm0
pcib0: allocated type 3 (0xaa000-0xaa7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xaa800-0xaafff) for rid 0 of orm0
pcib0: allocated type 3 (0xab000-0xab7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xab800-0xabfff) for rid 0 of orm0
pcib0: allocated type 3 (0xac000-0xac7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xac800-0xacfff) for rid 0 of orm0
pcib0: allocated type 3 (0xad000-0xad7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xad800-0xadfff) for rid 0 of orm0
pcib0: allocated type 3 (0xae000-0xae7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xae800-0xaefff) for rid 0 of orm0
pcib0: allocated type 3 (0xaf000-0xaf7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xaf800-0xaffff) for rid 0 of orm0
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 (0xc0000-0xc07ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc0800-0xc0fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc1000-0xc17ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc1800-0xc1fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc2000-0xc27ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc2800-0xc2fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc3000-0xc37ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc3800-0xc3fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc4000-0xc47ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc4800-0xc4fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc5000-0xc57ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc5800-0xc5fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc6000-0xc67ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc6800-0xc6fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc7000-0xc77ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc7800-0xc7fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc8000-0xc87ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc8800-0xc8fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc9000-0xc97ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc9800-0xc9fff) for rid 0 of orm0
pcib0: allocated type 3 (0xca000-0xca7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xca800-0xcafff) for rid 0 of orm0
pcib0: allocated type 3 (0xcb000-0xcb7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xcb800-0xcbfff) for rid 0 of orm0
pcib0: allocated type 3 (0xcc000-0xcc7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xcc800-0xccfff) for rid 0 of orm0
pcib0: allocated type 3 (0xcd000-0xcd7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xcd800-0xcdfff) for rid 0 of orm0
pcib0: allocated type 3 (0xce000-0xce7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xce800-0xcefff) for rid 0 of orm0
pcib0: allocated type 3 (0xcf000-0xcf7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xcf800-0xcffff) for rid 0 of orm0
pcib0: allocated type 3 (0xd0000-0xd07ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd0800-0xd0fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd1000-0xd17ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd1800-0xd1fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd2000-0xd27ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd2800-0xd2fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd3000-0xd37ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd3800-0xd3fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd4000-0xd47ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd4800-0xd4fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd5000-0xd57ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd5800-0xd5fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd6000-0xd67ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd6800-0xd6fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd7000-0xd77ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd7800-0xd7fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd8000-0xd87ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd8800-0xd8fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd9000-0xd97ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd9800-0xd9fff) for rid 0 of orm0
pcib0: allocated type 3 (0xda000-0xda7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xda800-0xdafff) for rid 0 of orm0
pcib0: allocated type 3 (0xdb000-0xdb7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xdb800-0xdbfff) 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
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
isa_probe_children: disabling PnP devices
atrtc: atrtc0 already exists; skipping it
attimer: attimer0 already exists; skipping it
sc: sc0 already exists; skipping it
uart: uart0 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 (0x60-0x60) for rid 0 of atkbdc0
pcib0: allocated type 4 (0x64-0x64) for rid 1 of atkbdc0
atkbdc0: &amp;lt;Keyboard controller (i8042)&amp;gt; at port 0x60,0x64 on isa0
pcib0: allocated type 4 (0x60-0x60) for rid 0 of atkbdc0
pcib0: allocated type 4 (0x64-0x64) for rid 1 of atkbdc0
atkbd0: &amp;lt;AT Keyboard&amp;gt; irq 1 on atkbdc0
kbd0 at atkbd0
kbd0: atkbd0, generic (0), config:0x0, flags:0x1f0000
ioapic0: routing intpin 1 (ISA IRQ 1) to lapic 2 vector 50
atkbd0: [GIANT-LOCKED]
psm0: unable to allocate IRQ
atkbdc0: non-PNP ISA device will be removed from GENERIC in FreeBSD 12.
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 (0x2f8-0x2f8) for rid 0 of uart1
uart1 failed to probe at port 0x2f8 irq 3 on isa0
isa_probe_children: probing PnP devices
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
hwpstate0: &amp;lt;Cool`n&amp;#039;Quiet 2.0&amp;gt; on cpu0
Device configuration finished.
procfs registered
ZFS filesystem version: 5
ZFS storage pool version: features support (5000)
Timecounters tick every 1.000 msec
lo0: bpf attached
vlan: initialized, using hash tables with chaining
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
tcp_init: net.inet.tcp.tcbhashsize auto tuned to 131072
IPsec: Initialized Security Association Processing.
AcpiOsExecute: enqueue 16 pending tasks
hpt27xx: no controller detected.
hptnr: no controller detected.
hptrr: no controller detected.
ahcich0: AHCI reset...
hdacc0: &amp;lt;ATI R6xx HDA CODEC&amp;gt; at cad 0 on hdac0
hdaa0: &amp;lt;ATI R6xx Audio Function Group&amp;gt; at nid 1 on hdacc0
ahcich0: hdaa0: Subsystem ID: 0x00aa0100
SATA connect time=100us status=00000133
ahcich0: AHCI reset: device found
hdaa0: NumGPIO=0 NumGPO=0 NumGPI=0 GPIWake=0 GPIUnsol=0
ahcich1: AHCI reset...
hdaa0: Original pins configuration:
hdaa0: nid   0x    as seq device       conn  jack    loc        color   misc
ahcich1: hdaa0:  3 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0:  5 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0:  7 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0:  9 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0: 11 585600f0 15 0  Digital-out   None  Digital 0x18       Unknown 0
hdaa0: 13 585600f0 15 0  Digital-out   None  Digital 0x18       Unknown 0
SATA connect time=100us status=00000133
hdaa0: ahcich1: AHCI reset: device found
Patched pins configuration:
hdaa0: nid   0x    as seq device       conn  jack    loc        color   misc
ahcich2: hdaa0:  3 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0:  5 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0:  7 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0:  9 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0: 11 585600f0 15 0  Digital-out   None  Digital 0x18       Unknown 0 DISA
hdaa0: 13 585600f0 15 0  Digital-out   None  Digital 0x18       Unknown 0 DISA
hdaa0: 4 associations found:
hdaa0: Association 0 (15) out:
hdaa0:  Pin nid=3 seq=0
hdaa0: Association 1 (15) out:
hdaa0:  Pin nid=5 seq=0
hdaa0: Association 2 (15) out:
hdaa0:  Pin nid=7 seq=0
hdaa0: Association 3 (15) out:
hdaa0:  Pin nid=9 seq=0
hdaa0: Tracing association 0 (15)
hdaa0:  Pin 3 traced to DAC 2
hdaa0: Association 0 (15) trace succeeded
hdaa0: Tracing association 1 (15)
hdaa0:  Pin 5 traced to DAC 4
hdaa0: Association 1 (15) trace succeeded
hdaa0: Tracing association 2 (15)
hdaa0:  Pin 7 traced to DAC 6
hdaa0: Association 2 (15) trace succeeded
hdaa0: Tracing association 3 (15)
hdaa0:  Pin 9 traced to DAC 8
hdaa0: Association 3 (15) trace succeeded
hdaa0: Looking for additional DAC for association 0 (15)
hdaa0: Looking for additional DAC for association 1 (15)
hdaa0: Looking for additional DAC for association 2 (15)
hdaa0: Looking for additional DAC for association 3 (15)
hdaa0: Tracing input monitor
hdaa0: Tracing other input monitors
hdaa0: Tracing beeper
AHCI reset...
hdaa0: Pin sense: nid=3 sense=0x7fffffff (disconnected, ELD valid)
hdaa0: Pin sense: nid=5 sense=0x7fffffff (disconnected, ELD valid)
hdaa0: Pin sense: nid=7 sense=0x7fffffff (disconnected, ELD valid)
hdaa0: Pin sense: nid=9 sense=0x7fffffff (disconnected, ELD valid)
hdaa0: FG config/quirks: forcestereo ivref50 ivref80 ivref100 ivref
pcm0: &amp;lt;ATI R6xx (HDMI)&amp;gt; at nid 3 on hdaa0
pcm0: Playback:
pcm0:      Stream cap: 0x00000005 AC3 PCM
pcm0:         PCM cap: 0x00020070 16 bits, 32 44 48 KHz
pcm0:             DAC: 2
pcm0:
pcm0:     nid=3 [pin: Digital-out (Jack)]
ahcich2: pcm0:       + &amp;lt;- nid=2 [audio output] [src: pcm]
pcm0:
SATA connect timeout time=10000us status=00000000
pcm0: ahcich2: AHCI reset: device not found
ahcich3: Mixer &amp;quot;vol&amp;quot; -&amp;gt; &amp;quot;none&amp;quot;:AHCI reset...
 child=0x00000010
pcm0: Mixer &amp;quot;pcm&amp;quot;: parent=&amp;quot;vol&amp;quot;
pcm0: Soft PCM mixer ENABLED
pcm0: Playback channel set is: Front Left, Front Right,
pcm0: Playback channel matrix is: 2.0 (disconnected)
pcm1: &amp;lt;ATI R6xx (HDMI)&amp;gt; at nid 5 on hdaa0
pcm1: Playback:
ahcich3: pcm1:      Stream cap: 0x00000005 AC3 PCM
pcm1:         PCM cap: 0x00020070 16 bits, 32 44 48 KHz
pcm1:             DAC: 4
pcm1:
pcm1:     nid=5 [pin: Digital-out (Jack)]
pcm1:       + &amp;lt;- nid=4 [audio output] [src: pcm]
pcm1:
SATA connect timeout time=10000us status=00000000
pcm1: ahcich3: AHCI reset: device not found
ahcich4: Mixer &amp;quot;vol&amp;quot; -&amp;gt; &amp;quot;none&amp;quot;: child=0x00000010
pcm1: Mixer &amp;quot;pcm&amp;quot;: parent=&amp;quot;vol&amp;quot;
pcm1: Soft PCM mixer ENABLED
AHCI reset...
pcm1: Playback channel set is: Front Left, Front Right,
pcm1: Playback channel matrix is: 2.0 (disconnected)
pcm2: &amp;lt;ATI R6xx (HDMI)&amp;gt; at nid 7 on hdaa0
pcm2: Playback:
pcm2:      Stream cap: 0x00000005 AC3 PCM
pcm2:         PCM cap: 0x00020070 16 bits, 32 44 48 KHz
pcm2:             DAC: 6
ahcich4: pcm2:
pcm2:     nid=7 [pin: Digital-out (Jack)]
pcm2:       + &amp;lt;- nid=6 [audio output] [src: pcm]
pcm2:
SATA connect timeout time=10000us status=00000000
pcm2: ahcich4: AHCI reset: device not found
ahcich5: AHCI reset...
Mixer &amp;quot;vol&amp;quot; -&amp;gt; &amp;quot;none&amp;quot;: child=0x00000010
pcm2: Mixer &amp;quot;pcm&amp;quot;: parent=&amp;quot;vol&amp;quot;
pcm2: Soft PCM mixer ENABLED
pcm2: Playback channel set is: Front Left, Front Right,
pcm2: Playback channel matrix is: 2.0 (disconnected)
pcm3: &amp;lt;ATI R6xx (HDMI)&amp;gt; at nid 9 on hdaa0
ahcich5: pcm3: Playback:
pcm3:      Stream cap: 0x00000005 AC3 PCM
pcm3:         PCM cap: 0x00020070 16 bits, 32 44 48 KHz
pcm3:             DAC: 8
pcm3:
pcm3:     nid=9 [pin: Digital-out (Jack)]
pcm3:       + &amp;lt;- nid=8 [audio output] [src: pcm]
pcm3:
SATA connect timeout time=10000us status=00000000
pcm3: ahcich5: AHCI reset: device not found
Mixer &amp;quot;vol&amp;quot; -&amp;gt; &amp;quot;none&amp;quot;: child=0x00000010
pcm3: Mixer &amp;quot;pcm&amp;quot;: parent=&amp;quot;vol&amp;quot;
pcm3: Soft PCM mixer ENABLED
pcm3: Playback channel set is: Front Left, Front Right,
pcm3: Playback channel matrix is: 2.0 (disconnected)
hdacc1: &amp;lt;Realtek ALC887 HDA CODEC&amp;gt; at cad 0 on hdac1
hdaa1: &amp;lt;Realtek ALC887 Audio Function Group&amp;gt; at nid 1 on hdacc1
hdaa1: Subsystem ID: 0x1849288a
hdaa1: NumGPIO=2 NumGPO=0 NumGPI=0 GPIWake=0 GPIUnsol=1
hdaa1:  GPIO0: disabled
hdaa1:  GPIO1: disabled
hdaa1: Original pins configuration:
hdaa1: nid   0x    as seq device       conn  jack    loc        color   misc
hdaa1: 17 40000000 0  0  Line-out      None  Unknown 0x00       Unknown 0
hdaa1: 18 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa1: 20 01014010 1  0  Line-out      Jack  1/8     Rear       Green   0
hdaa1: 21 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa1: 22 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa1: 23 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa1: 24 01a19030 3  0  Mic           Jack  1/8     Rear       Pink    0
hdaa1: 25 02a19040 4  0  Mic           Jack  1/8     Front      Pink    0
hdaa1: 26 0181303f 3  15 Line-in       Jack  1/8     Rear       Blue    0
hdaa1: 27 02214020 2  0  Headphones    Jack  1/8     Front      Green   0
hdaa1: 28 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa1: 29 4026c629 2  9  Headphones    None  Digital 0x00       Res.C   6
hdaa1: 30 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa1: 31 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa1: Patching widget caps nid=29 0x00400400 -&amp;gt; 0x00700400
hdaa1: Patched pins configuration:
hdaa1: nid   0x    as seq device       conn  jack    loc        color   misc
hdaa1: 17 40000000 0  0  Line-out      None  Unknown 0x00       Unknown 0 DISA
hdaa1: 18 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa1: 20 01014010 1  0  Line-out      Jack  1/8     Rear       Green   0
hdaa1: 21 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa1: 22 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa1: 23 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa1: 24 01a19030 3  0  Mic           Jack  1/8     Rear       Pink    0
hdaa1: 25 02a19040 4  0  Mic           Jack  1/8     Front      Pink    0
hdaa1: 26 0181303f 3  15 Line-in       Jack  1/8     Rear       Blue    0
hdaa1: 27 02214020 2  0  Headphones    Jack  1/8     Front      Green   0
hdaa1: 28 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: 31 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa1: 4 associations found:
hdaa1: Association 0 (1) out:
hdaa1:  Pin nid=20 seq=0
hdaa1: Association 1 (2) out:
hdaa1:  Pin nid=27 seq=0
hdaa1: Association 2 (3) in:
hdaa1:  Pin nid=24 seq=0
hdaa1:  Pin nid=26 seq=15
hdaa1: Association 3 (4) in:
hdaa1:  Pin nid=25 seq=0
hdaa1: Tracing association 0 (1)
hdaa1:  Pin 20 traced to DAC 2
hdaa1: Association 0 (1) trace succeeded
hdaa1: Tracing association 1 (2)
hdaa1:  Pin 27 traced to DAC 3
hdaa1: Association 1 (2) trace succeeded
hdaa1: Tracing association 2 (3)
hdaa1:  Pin 24 traced to ADC 8
hdaa1:  Pin 26 traced to ADC 8
hdaa1: Association 2 (3) trace succeeded
hdaa1: Tracing association 3 (4)
hdaa1:  Pin 25 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 nid 34 to out
hdaa1:  Tracing nid 35 to out
hdaa1: Tracing other input monitors
hdaa1:  Tracing nid 24 to out
hdaa1:  Tracing nid 25 to out
hdaa1:  Tracing nid 26 to out
hdaa1: Tracing beeper
hdaa1: FG config/quirks: forcestereo ivref50 ivref80 ivref100 ivref
pcm4: &amp;lt;Realtek ALC887 (Rear Analog)&amp;gt; at nid 20 and 24,26 on hdaa1
pcm4: Playback:
pcm4:      Stream cap: 0x00000001 PCM
pcm4:         PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz
pcm4:             DAC: 2
pcm4:
pcm4:     nid=20 [pin: Line-out (Green Jack)]
pcm4:       + &amp;lt;- nid=12 [audio mixer] [src: pcm, mix]
pcm4:              + &amp;lt;- nid=2 [audio output] [src: pcm]
pcm4:              + &amp;lt;- nid=11 [audio mixer] [src: mix]
pcm4:
pcm4: Record:
pcm4:      Stream cap: 0x00000001 PCM
pcm4:         PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz
pcm4:             ADC: 8
pcm4:
pcm4:     nid=8 [audio input]
pcm4:       + &amp;lt;- nid=35 [audio mixer] [src: speaker, line, mic, mix]
pcm4:              + &amp;lt;- nid=24 [pin: Mic (Pink Jack)] [src: mic]
pcm4:              + &amp;lt;- nid=26 [pin: Line-in (Blue Jack)] [src: line]
pcm4:              + &amp;lt;- nid=29 [beep widget] [src: speaker]
pcm4:              + &amp;lt;- nid=11 [audio mixer] [src: mix]
pcm4:
pcm4: Input Mix:
pcm4:
pcm4:     nid=11 [audio mixer]
pcm4:       + &amp;lt;- nid=24 [pin: Mic (Pink Jack)] [src: mic]
pcm4:       + &amp;lt;- nid=26 [pin: Line-in (Blue Jack)] [src: line]
pcm4:       + &amp;lt;- nid=29 [beep widget] [src: speaker]
pcm4:
pcm4: Master Volume (OSS: vol): -64/0dB
pcm4:    +- ctl  1 (nid   2 out):    -64/0dB (65 steps)
pcm4:    +- ctl 17 (nid  12 in   0): mute
pcm4:    +- ctl 18 (nid  12 in   1): mute
pcm4:    +- ctl 25 (nid  20 in ):    mute
pcm4:
pcm4: PCM Volume (OSS: pcm): -64/0dB
pcm4:    +- ctl  1 (nid   2 out):    -64/0dB (65 steps)
pcm4:    +- ctl 17 (nid  12 in   0): mute
pcm4:
pcm4: Microphone Volume (OSS: mic): 0/30dB
pcm4:    +- ctl  7 (nid  11 in   0): -34/12dB (32 steps) + mute
pcm4:    +- ctl 30 (nid  24 out):    0/30dB (4 steps)
pcm4:    +- ctl 49 (nid  35 in   0): mute
pcm4:
pcm4: Line-in Volume (OSS: line): 0/30dB
pcm4:    +- ctl  9 (nid  11 in   2): -34/12dB (32 steps) + mute
pcm4:    +- ctl 34 (nid  26 out):    0/30dB (4 steps)
pcm4:    +- ctl 51 (nid  35 in   2): mute
pcm4:
pcm4: Speaker/Beep Volume (OSS: speaker): -34/12dB
pcm4:    +- ctl 12 (nid  11 in   5): -34/12dB (32 steps) + mute
pcm4:    +- ctl 54 (nid  35 in   5): mute
pcm4:
pcm4: Recording Level (OSS: rec): -16/30dB
pcm4:    +- ctl  5 (nid   8 in   0): -16/30dB (47 steps) + mute
pcm4:    +- ctl 49 (nid  35 in   0): mute
pcm4:    +- ctl 51 (nid  35 in   2): mute
pcm4:    +- ctl 54 (nid  35 in   5): mute
pcm4:    +- ctl 59 (nid  35 in  10): mute
pcm4:
pcm4: Input Mix Level (OSS: mix): -34/12dB
pcm4:    +- ctl  7 (nid  11 in   0): -34/12dB (32 steps) + mute
pcm4:    +- ctl  9 (nid  11 in   2): -34/12dB (32 steps) + mute
pcm4:    +- ctl 12 (nid  11 in   5): -34/12dB (32 steps) + mute
pcm4:    +- ctl 18 (nid  12 in   1): mute
pcm4:    +- ctl 59 (nid  35 in  10): mute
pcm4:
pcm4: Input Monitoring Level (OSS: igain): 0/0dB
pcm4:    +- ctl 18 (nid  12 in   1): mute
pcm4:
pcm4: Mixer &amp;quot;vol&amp;quot;:
pcm4: Mixer &amp;quot;pcm&amp;quot;:
pcm4: Mixer &amp;quot;speaker&amp;quot;:
pcm4: Mixer &amp;quot;line&amp;quot;:
pcm4: Mixer &amp;quot;mic&amp;quot;:
pcm4: Mixer &amp;quot;mix&amp;quot;:
pcm4: Mixer &amp;quot;rec&amp;quot;:
pcm4: Mixer &amp;quot;igain&amp;quot;:
pcm4: Mixer &amp;quot;ogain&amp;quot;:
pcm4: Playback channel set is: Front Left, Front Right,
pcm4: Playback channel matrix is: 2.0 (disconnected)
pcm4: Recording channel set is: Front Left, Front Right,
pcm4: Recording channel matrix is: 2.0 (disconnected)
pcm5: &amp;lt;Realtek ALC887 (Front Analog)&amp;gt; at nid 27 and 25 on hdaa1
pcm5: Playback:
pcm5:      Stream cap: 0x00000001 PCM
pcm5:         PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz
pcm5:             DAC: 3
pcm5:
pcm5:     nid=27 [pin: Headphones (Green Jack)]
pcm5:       + &amp;lt;- nid=13 [audio mixer] [src: pcm, mix]
pcm5:              + &amp;lt;- nid=3 [audio output] [src: pcm]
pcm5:              + &amp;lt;- nid=11 [audio mixer] [src: mix]
pcm5:
pcm5: Record:
pcm5:      Stream cap: 0x00000001 PCM
pcm5:         PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz
pcm5:             ADC: 9
pcm5:
pcm5:     nid=9 [audio input]
pcm5:       + &amp;lt;- nid=34 [audio mixer] [src: speaker, monitor]
pcm5:              + &amp;lt;- nid=25 [pin: Mic (Pink Jack)] [src: monitor]
pcm5:              + &amp;lt;- nid=29 [beep widget] [src: speaker]
pcm5:
pcm5: Master Volume (OSS: vol): -64/0dB
pcm5:    +- ctl  2 (nid   3 out):    -64/0dB (65 steps)
pcm5:    +- ctl 19 (nid  13 in   0): mute
pcm5:    +- ctl 20 (nid  13 in   1): mute
pcm5:    +- ctl 35 (nid  27 in ):    mute
pcm5:
pcm5: PCM Volume (OSS: pcm): -64/0dB
pcm5:    +- ctl  2 (nid   3 out):    -64/0dB (65 steps)
pcm5:    +- ctl 19 (nid  13 in   0): mute
pcm5:
pcm5: Microphone2 Volume (OSS: monitor): 0/30dB
pcm5:    +- ctl 32 (nid  25 out):    0/30dB (4 steps)
pcm5:    +- ctl 38 (nid  34 in   1): mute
pcm5:
pcm5: Speaker/Beep Volume (OSS: speaker)
pcm5:    +- ctl 42 (nid  34 in   5): mute
pcm5:
pcm5: Recording Level (OSS: rec): -16/30dB
pcm5:    +- ctl  6 (nid   9 in   0): -16/30dB (47 steps) + mute
pcm5:    +- ctl 32 (nid  25 out):    0/30dB (4 steps)
pcm5:    +- ctl 38 (nid  34 in   1): mute
pcm5:    +- ctl 42 (nid  34 in   5): mute
pcm5:
pcm5: Input Mix Level (OSS: mix)
pcm5:    +- ctl 20 (nid  13 in   1): mute
pcm5:
pcm5: Input Monitoring Level (OSS: igain): 0/0dB
pcm5:    +- ctl 20 (nid  13 in   1): mute
pcm5:
pcm5: Mixer &amp;quot;vol&amp;quot;:
pcm5: Mixer &amp;quot;pcm&amp;quot;:
pcm5: Mixer &amp;quot;rec&amp;quot;:
pcm5: Mixer &amp;quot;igain&amp;quot;:
pcm5: Mixer &amp;quot;ogain&amp;quot;:
pcm5: Mixer &amp;quot;monitor&amp;quot;:
pcm5: Playback channel set is: Front Left, Front Right,
pcm5: Playback channel matrix is: 2.0 (disconnected)
pcm5: Recording channel set is: Front Left, Front Right,
pcm5: Recording channel matrix is: 2.0 (disconnected)
ugen0.1: &amp;lt;0x1022 XHCI root HUB&amp;gt; at usbus0
ahcich0: ugen1.1: &amp;lt;0x1022 XHCI root HUB&amp;gt; at usbus1
ugen2.1: &amp;lt;0x1022 XHCI root HUB&amp;gt; at usbus2
uhub0: AHCI reset: device ready after 100ms
ahcich1: AHCI reset: device ready after 100ms
&amp;lt;0x1022 XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1&amp;gt; on usbus0
uhub1: &amp;lt;0x1022 XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1&amp;gt; on usbus2
uhub2: &amp;lt;0x1022 XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1&amp;gt; on usbus1
pass0 at ahcich0 bus 0 scbus0 target 0 lun 0
pass0: &amp;lt;CHN 25SATA01M 030 P0921A&amp;gt; ACS-2 ATA SATA 3.x device
pass0: Serial Number A130CI02070114
pass0: 600.000MB/s transfers (SATA 3.x, UDMA6, PIO 512bytes)
pass0: Command Queueing enabled
pass1 at ahcich1 bus 0 scbus1 target 0 lun 0
pass1: &amp;lt;ST2000DM001-1CH164 CC29&amp;gt; ACS-2 ATA SATA 3.x device
pass1: Serial Number W1E37816
pass1: 600.000MB/s transfers (SATA 3.x, UDMA6, PIO 8192bytes)
pass1: Command Queueing enabled
ada0 at ahcich0 bus 0 scbus0 target 0 lun 0
ada0: &amp;lt;CHN 25SATA01M 030 P0921A&amp;gt; ACS-2 ATA SATA 3.x device
ada0: Serial Number A130CI02070114
ada0: 600.000MB/s transfers (SATA 3.x, UDMA6, PIO 512bytes)
ada0: Command Queueing enabled
ada0: 28626MB (58626288 512 byte sectors)
GEOM: new disk ada0
ada1 at ahcich1 bus 0 scbus1 target 0 lun 0
ada1: &amp;lt;ST2000DM001-1CH164 CC29&amp;gt; ACS-2 ATA SATA 3.x device
ada1: Serial Number W1E37816
ada1: 600.000MB/s transfers (SATA 3.x, UDMA6, PIO 8192bytes)
ada1: Command Queueing enabled
ada1: 1907729MB (3907029168 512 byte sectors)
ada1: quirks=0x1&amp;lt;4K&amp;gt;
Trying to mount root from zfs:zroot/ROOT/default []...
GEOM: new disk ada1
GEOM: ada1: the primary GPT table is corrupt or invalid.
GEOM: ada1: using the secondary instead -- recovery strongly advised.
Root mount waiting for: usbus2 usbus1 usbus0
uhub1: 6 ports with 6 removable, self powered
uhub2: 6 ports with 6 removable, self powered
uhub0: 14 ports with 14 removable, self powered
ugen1.2: &amp;lt;vendor 0x04f3 OM&amp;gt; at usbus1
Root mount waiting for: usbus1 usbus0
ugen0.2: &amp;lt;ASRock LED Controller&amp;gt; at usbus0
ugen1.3: &amp;lt;Chicony Generic USB Hub&amp;gt; at usbus1
uhub3 on uhub2
uhub3: &amp;lt;Chicony Generic USB Hub, class 9/0, rev 1.10/1.00, addr 2&amp;gt; on usbus1
uhub3: 3 ports with 2 removable, bus powered
ugen0.3: &amp;lt;vendor 0x8087 product 0x0aa7&amp;gt; at usbus0
ugen1.4: &amp;lt;Chicony PFU-65 USB Keyboard&amp;gt; at usbus1
ukbd0 on uhub3
ukbd0: &amp;lt;Chicony PFU-65 USB Keyboard, class 0/0, rev 1.10/1.00, addr 3&amp;gt; on usbus1
kbd2 at ukbd0
kbd2: ukbd0, generic (0), config:0x0, flags:0x3d0000
efirtc0: providing initial system time
start_init: trying /sbin/init
lo0: link state changed to UP
re0: link state changed to DOWN
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
pci0: driver added
found-&amp;gt;	vendor=0x1022, dev=0x790b, revid=0x51
	domain=0, bus=0, slot=20, func=0
	class=0c-05-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0403, statreg=0x0220, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
pci0:0:20:0: reprobing on driver added
pci1: driver added
pci2: driver added
pci3: driver added
pci4: driver added
pci5: driver added
found-&amp;gt;	vendor=0x8086, dev=0x24fb, revid=0x10
	domain=0, bus=6, slot=0, func=0
	class=02-80-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0002, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
pci0:6:0:0: reprobing on driver added
iwm0: &amp;lt;Intel(R) Dual Band Wireless AC 3168&amp;gt; mem 0xfcd00000-0xfcd01fff at device 0.0 on pci5
iwm0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 284 to local APIC 4 vector 49
iwm0: using IRQ 284 for MSI
firmware: &amp;#039;iwm3168fw&amp;#039; version 0: 1028032 bytes loaded at 0xffffffff83410000
iwm0: hw rev 0x220, fw ver 22.361476.0, address c8:58:c0:b3:1b:36
iwm0: 11a rates: 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps
iwm0: 11b rates: 1Mbps 2Mbps 5.5Mbps 11Mbps
iwm0: 11g rates: 1Mbps 2Mbps 5.5Mbps 11Mbps 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps
pci6: driver added
pci7: driver added
pci8: driver added
pci9: driver added
pci10: driver added
pci11: driver added
pci12: driver added
found-&amp;gt;	vendor=0x1022, dev=0x15df, revid=0x00
	domain=0, bus=13, slot=0, func=2
	class=10-80-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0002, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 2 messages, 64 bit
	MSI-X supports 2 messages in map 0x24
pci0:13:0:2: reprobing on driver added
pci0: driver added
found-&amp;gt;	vendor=0x1022, dev=0x790b, revid=0x51
	domain=0, bus=0, slot=20, func=0
	class=0c-05-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0403, statreg=0x0220, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
pci0:0:20:0: reprobing on driver added
intsmb0: &amp;lt;AMD FCH SMBus Controller&amp;gt; at device 20.0 on pci0
pcib0: allocated type 4 (0xcd6-0xcd7) for rid 0 of intsmb0
pcib0: allocated type 4 (0xb00-0xb0f) for rid 0 of intsmb0
smbus0: &amp;lt;System Management Bus&amp;gt; on intsmb0
pci1: driver added
pci2: driver added
pci3: driver added
pci4: driver added
pci5: driver added
pci6: driver added
pci7: driver added
pci8: driver added
pci9: driver added
pci10: driver added
pci11: driver added
pci12: driver added
found-&amp;gt;	vendor=0x1022, dev=0x15df, revid=0x00
	domain=0, bus=13, slot=0, func=2
	class=10-80-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0002, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 2 messages, 64 bit
	MSI-X supports 2 messages in map 0x24
pci0:13:0:2: reprobing on driver added
ums0 on uhub2
ums0: &amp;lt;vendor 0x04f3 OM, class 0/0, rev 1.10/24.58, addr 1&amp;gt; on usbus1
ums0: 3 buttons and [XYZ] coordinates ID=0
uhid0 on uhub0
uhid0: &amp;lt;ASRock LED Controller, class 0/0, rev 1.10/0.00, addr 1&amp;gt; on usbus0
ubt0 on uhub0
ubt0: &amp;lt;vendor 0x8087 product 0x0aa7, class 224/1, rev 2.00/0.01, addr 2&amp;gt; on usbus0
WARNING: attempt to domain_add(bluetooth) after domainfinalize()
WARNING: attempt to domain_add(netgraph) after domainfinalize()&lt;/pre&gt;
&lt;/dd&gt;&lt;/dl&gt;
&lt;dl class=&quot;code&quot;&gt;
&lt;dt&gt;&lt;a href=&quot;http://www.seirios.org/seirios/dokuwiki/doku.php?do=export_code&amp;amp;id=os:freebsd:intel82599&amp;amp;codeblock=6&quot; title=&quot;この部分をダウンロード&quot; class=&quot;mediafile mf_&quot;&gt;messages&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;code&quot;&gt;Aug 20 00:01:19 subamd seirios[1316]: ==iovctl -C==
Aug 20 00:01:27 subamd kernel: ixgbe_if_init: begin
Aug 20 00:01:27 subamd kernel: ixgbe_if_multi_set: begin
Aug 20 00:01:27 subamd kernel: pcib1: allocated prefetch range (0xe0300000-0xe030ffff) for rid 184 of ix1
Aug 20 00:01:27 subamd kernel: ix1: Lazy allocation of 0x10000 bytes rid 0x184 type 3 at 0xe0300000
Aug 20 00:01:27 subamd kernel: pcib1: allocated prefetch range (0xe0310000-0xe031ffff) for rid 190 of ix1
Aug 20 00:01:27 subamd kernel: ix1: Lazy allocation of 0x10000 bytes rid 0x190 type 3 at 0xe0310000
Aug 20 00:01:28 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 20 00:01:28 subamd kernel: 	domain=0, bus=1, slot=0, func=129
Aug 20 00:01:28 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 20 00:01:28 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 20 00:01:28 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 20 00:01:28 subamd kernel: 	intpin=_, irq=255
Aug 20 00:01:28 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 20 00:01:28 subamd kernel: 	domain=0, bus=1, slot=0, func=131
Aug 20 00:01:28 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 20 00:01:28 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 20 00:01:28 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 20 00:01:28 subamd kernel: 	intpin=_, irq=255
Aug 20 00:01:28 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 20 00:01:28 subamd kernel: 	domain=0, bus=1, slot=0, func=133
Aug 20 00:01:28 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 20 00:01:28 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 20 00:01:28 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 20 00:01:28 subamd kernel: 	intpin=_, irq=255
Aug 20 00:01:28 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 20 00:01:28 subamd kernel: 	domain=0, bus=1, slot=0, func=135
Aug 20 00:01:28 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 20 00:01:28 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 20 00:01:28 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 20 00:01:28 subamd kernel: 	intpin=_, irq=255
Aug 20 00:01:28 subamd kernel: pci1: &amp;lt;unknown&amp;gt; at device 0.129 (no driver attached)
Aug 20 00:01:29 subamd kernel: ixv0: &amp;lt;Intel(R) PRO/10GbE Virtual Function Network Driver&amp;gt; at device 0.131 on pci1
Aug 20 00:01:29 subamd kernel: ixv0: ...reset_hw() failure: Reset Failed!
Aug 20 00:01:29 subamd kernel: ixv0: IFDI_ATTACH_PRE failed 5
Aug 20 00:01:29 subamd kernel: device_attach: ixv0 attach returned 5
Aug 20 00:01:29 subamd kernel: ixv0: &amp;lt;Intel(R) PRO/10GbE Virtual Function Network Driver&amp;gt; at device 0.133 on pci1
Aug 20 00:01:29 subamd kernel: ixv0: ...reset_hw() failure: Reset Failed!
Aug 20 00:01:29 subamd kernel: ixv0: IFDI_ATTACH_PRE failed 5
Aug 20 00:01:29 subamd kernel: device_attach: ixv0 attach returned 5
Aug 20 00:01:29 subamd kernel: pci1: &amp;lt;unknown&amp;gt; at device 0.135 (no driver attached)
Aug 20 00:01:41 subamd seirios[1330]: ==iovctl -D==
Aug 20 00:01:51 subamd seirios[1332]: ==iovctl -C==
Aug 20 00:01:57 subamd kernel: ixgbe_if_init: begin
Aug 20 00:01:57 subamd kernel: ixgbe_if_multi_set: begin
Aug 20 00:01:57 subamd kernel: pcib1: allocated prefetch range (0xe0300000-0xe030ffff) for rid 184 of ix1
Aug 20 00:01:57 subamd kernel: ix1: Lazy allocation of 0x10000 bytes rid 0x184 type 3 at 0xe0300000
Aug 20 00:01:57 subamd kernel: pcib1: allocated prefetch range (0xe0310000-0xe031ffff) for rid 190 of ix1
Aug 20 00:01:57 subamd kernel: ix1: Lazy allocation of 0x10000 bytes rid 0x190 type 3 at 0xe0310000
Aug 20 00:01:58 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 20 00:01:58 subamd kernel: 	domain=0, bus=1, slot=0, func=129
Aug 20 00:01:58 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 20 00:01:58 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 20 00:01:58 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 20 00:01:58 subamd kernel: 	intpin=_, irq=255
Aug 20 00:01:58 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 20 00:01:58 subamd kernel: 	domain=0, bus=1, slot=0, func=131
Aug 20 00:01:58 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 20 00:01:58 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 20 00:01:58 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 20 00:01:58 subamd kernel: 	intpin=_, irq=255
Aug 20 00:01:58 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 20 00:01:58 subamd kernel: 	domain=0, bus=1, slot=0, func=133
Aug 20 00:01:58 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 20 00:01:58 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 20 00:01:58 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 20 00:01:58 subamd kernel: 	intpin=_, irq=255
Aug 20 00:01:58 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 20 00:01:58 subamd kernel: 	domain=0, bus=1, slot=0, func=135
Aug 20 00:01:58 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 20 00:01:58 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 20 00:01:58 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 20 00:01:58 subamd kernel: 	intpin=_, irq=255
Aug 20 00:01:58 subamd kernel: pci1: &amp;lt;unknown&amp;gt; at device 0.129 (no driver attached)
Aug 20 00:01:58 subamd kernel: ixv0: &amp;lt;Intel(R) PRO/10GbE Virtual Function Network Driver&amp;gt; at device 0.131 on pci1
Aug 20 00:01:58 subamd kernel: ixv0: ...reset_hw() failure: Reset Failed!
Aug 20 00:01:58 subamd kernel: ixv0: IFDI_ATTACH_PRE failed 5
Aug 20 00:01:58 subamd kernel: device_attach: ixv0 attach returned 5
Aug 20 00:01:58 subamd kernel: ixv0: &amp;lt;Intel(R) PRO/10GbE Virtual Function Network Driver&amp;gt; at device 0.133 on pci1
Aug 20 00:01:58 subamd kernel: ixv0: ...reset_hw() failure: Reset Failed!
Aug 20 00:01:58 subamd kernel: ixv0: IFDI_ATTACH_PRE failed 5
Aug 20 00:01:58 subamd kernel: device_attach: ixv0 attach returned 5
Aug 20 00:01:58 subamd kernel: pci1: &amp;lt;unknown&amp;gt; at device 0.135 (no driver attached)&lt;/pre&gt;
&lt;/dd&gt;&lt;/dl&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;560SFP+ ko replaced&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;sfp_ko_replaced&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:5,&amp;quot;secid&amp;quot;:8,&amp;quot;range&amp;quot;:&amp;quot;207336-308400&amp;quot;} --&gt;
&lt;h2 class=&quot;sectionedit9&quot; id=&quot;boot_kernel以下全部置き換えた&quot;&gt;/boot/kernel以下全部置き換えた&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;
&lt;dl class=&quot;code&quot;&gt;
&lt;dt&gt;&lt;a href=&quot;http://www.seirios.org/seirios/dokuwiki/doku.php?do=export_code&amp;amp;id=os:freebsd:intel82599&amp;amp;codeblock=7&quot; title=&quot;この部分をダウンロード&quot; class=&quot;mediafile mf_&quot;&gt;dmesg&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;code&quot;&gt;APIC: CPU 2 has ACPI ID 2
APIC: CPU 3 has ACPI ID 3
APIC: CPU 4 has ACPI ID 4
APIC: CPU 5 has ACPI ID 5
APIC: CPU 6 has ACPI ID 6
APIC: CPU 7 has ACPI ID 7
APIC: CPU 8 has ACPI ID 8
APIC: CPU 9 has ACPI ID 9
APIC: CPU 10 has ACPI ID 10
APIC: CPU 11 has ACPI ID 11
APIC: CPU 12 has ACPI ID 12
APIC: CPU 13 has ACPI ID 13
APIC: CPU 14 has ACPI ID 14
APIC: CPU 15 has ACPI ID 15
x86bios:  IVT 0x000000-0x0004ff at 0xfffff80000000000
x86bios: SSEG 0x09e000-0x09efff at 0xfffffe0003fb4000
x86bios:  ROM 0x0a0000-0x0fefff at 0xfffff800000a0000
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 7
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 8
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 9
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 10
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 11
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 12
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 13
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 14
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 17
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 18
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 19
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 20
lapic0: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 27
Pentium Pro MTRR support enabled
random: read 3840 bytes from preloaded cache
random: unblocking device.
arc4random: read 32 bytes from preloaded cache
VIMAGE (virtualized network stack) enabled
ULE: setup cpu 0
ULE: setup cpu 1
ULE: setup cpu 2
ULE: setup cpu 3
ULE: setup cpu 4
ULE: setup cpu 5
ULE: setup cpu 6
ULE: setup cpu 7
ULE: setup cpu 8
ULE: setup cpu 9
ULE: setup cpu 10
ULE: setup cpu 11
ULE: setup cpu 12
ULE: setup cpu 13
ULE: setup cpu 14
ULE: setup cpu 15
ACPI: RSDP 0x00000000CBFF5014 000024 (v02 ALASKA)
ACPI: XSDT 0x00000000CBFF4728 0000DC (v01 ALASKA A M I    01072009 AMI  01000013)
ACPI: FACP 0x00000000CAA32000 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
ACPI: DSDT 0x00000000CAA2B000 006218 (v02 ALASKA A M I    01072009 INTL 20120913)
ACPI: FACS 0x00000000CAFEF000 000040
ACPI: SSDT 0x00000000CAA38000 007229 (v02 AMD    AmdTable 00000002 MSFT 04000000)
ACPI: SSDT 0x00000000CAA34000 003A78 (v01 AMD    AMD AOD  00000001 INTL 20120913)
ACPI: SSDT 0x00000000CAA33000 000221 (v02 ALASKA CPUSSDT  01072009 AMI  01072009)
ACPI: FIDT 0x00000000CAA2A000 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
ACPI: MCFG 0x00000000CAA29000 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
ACPI: AAFT 0x00000000CAA28000 0000ED (v01 ALASKA OEMAAFT  01072009 MSFT 00000097)
ACPI: HPET 0x00000000CAA27000 000038 (v01 ALASKA A M I    01072009 AMI  00000005)
ACPI: VFCT 0x00000000CAA19000 00D484 (v01 ALASKA A M I    00000001 AMD  31504F47)
ACPI: BGRT 0x00000000CAA18000 000038 (v01 ALASKA A M I    01072009 AMI  00010013)
ACPI: SSDT 0x00000000CAA14000 0035A4 (v02 AMD    AmdTable 00000001 AMD  00000001)
ACPI: CRAT 0x00000000CAA13000 000F28 (v01 AMD    AmdTable 00000001 AMD  00000001)
ACPI: CDIT 0x00000000CAA12000 000029 (v01 AMD    AmdTable 00000001 AMD  00000001)
ACPI: SSDT 0x00000000CAA11000 000D37 (v01 AMD    AmdTable 00000001 INTL 20120913)
ACPI: SSDT 0x00000000CAA0F000 0010A5 (v01 AMD    AmdTable 00000001 INTL 20120913)
ACPI: SSDT 0x00000000CAA0B000 00326A (v01 AMD    AmdTable 00000001 INTL 20120913)
ACPI: WSMT 0x00000000CAA0A000 000028 (v01 ALASKA A M I    01072009 AMI  00010013)
ACPI: APIC 0x00000000CAA09000 00015E (v03 ALASKA A M I    01072009 AMI  00010013)
ACPI: SSDT 0x00000000CAA08000 000517 (v01 AMD    AmdTable 00000001 INTL 20120913)
ACPI: SSDT 0x00000000CAA07000 00007D (v01 AMD    AmdTable 00000001 INTL 20120913)
ACPI: SSDT 0x00000000CAA05000 0010AF (v01 AMD    AmdTable 00000001 INTL 20120913)
ACPI: SSDT 0x00000000CAA04000 0000BF (v01 AMD    AmdTable 00001000 INTL 20120913)
ACPI: FPDT 0x00000000CAA03000 000044 (v01 ALASKA A M I    01072009 AMI  01000013)
MADT: Found IO APIC ID 17, Interrupt 0 at 0xfec00000
ioapic0: Changing APIC ID to 17
ioapic0: ver 0x21 maxredir 0x17
ioapic0: Routing external 8259A&amp;#039;s -&amp;gt; intpin 0
MADT: Found IO APIC ID 18, Interrupt 24 at 0xfec01000
ioapic1: Changing APIC ID to 18
ioapic1: ver 0x21 maxredir 0x1f
lapic: Routing NMI -&amp;gt; LINT1
lapic: LINT1 trigger: edge
lapic: LINT1 polarity: high
MADT: Interrupt override: source 0, irq 2
ioapic0: Routing IRQ 0 -&amp;gt; intpin 2
MADT: Interrupt override: source 9, irq 9
ioapic0: intpin 9 trigger: level
ioapic0: intpin 9 polarity: low
ioapic0 &amp;lt;Version 2.1&amp;gt; irqs 0-23 on motherboard
ioapic1 &amp;lt;Version 2.1&amp;gt; irqs 24-55 on motherboard
lapic: Divisor 2, Frequency 49907238 Hz
cpu0 BSP:
     ID: 0x00000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic11: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic11: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic11: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic11: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic11: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic11: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #11 Launched!
cpu11 AP:
     ID: 0x0b000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic7: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic7: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic7: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic7: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic7: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic7: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #7 Launched!
cpu7 AP:
     ID: 0x07000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic10: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic10: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic10: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic10: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic10: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic10: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #10 Launched!
cpu10 AP:
     ID: 0x0a000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic9: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic9: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic9: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic9: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic9: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic9: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #9 Launched!
cpu9 AP:
     ID: 0x09000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic15: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic15: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic15: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic15: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic15: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic15: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #15 Launched!
cpu15 AP:
     ID: 0x0f000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic14: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic14: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic14: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic14: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic14: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic14: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #14 Launched!
cpu14 AP:
     ID: 0x0e000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic13: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic13: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic13: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic13: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic13: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic13: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #13 Launched!
cpu13 AP:
     ID: 0x0d000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic5: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic5: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic5: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic5: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic5: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic5: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #5 Launched!
cpu5 AP:
     ID: 0x05000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic12: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic12: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic12: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic12: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic12: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic12: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #12 Launched!
cpu12 AP:
     ID: 0x0c000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic1: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic1: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic1: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic1: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic1: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic1: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #1 Launched!
cpu1 AP:
     ID: 0x01000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic3: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic3: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic3: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic3: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic3: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic3: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #3 Launched!
cpu3 AP:
     ID: 0x03000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic6: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic6: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic6: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic6: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic6: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic6: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #6 Launched!
cpu6 AP:
     ID: 0x06000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic2: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic2: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic2: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic2: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic2: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic2: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #2 Launched!
cpu2 AP:
     ID: 0x02000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic4: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic4: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic4: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic4: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic4: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic4: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #4 Launched!
cpu4 AP:
     ID: 0x04000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
lapic8: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 0
lapic8: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 1
lapic8: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 2
lapic8: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 3
lapic8: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 5
lapic8: MCE Thresholding ELVT unmasked
amd_thresholding_monitor: Starting AMD thresholding on bank 6
SMP: AP CPU #8 Launched!
cpu8 AP:
     ID: 0x08000000   VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x000000f0 pmc: 0x00010400
   AMD ext features: 0x00040007
   AMD elvt0: 0x00010000
   AMD elvt1: 0x000000f2
   AMD elvt2: 0x00010000
   AMD elvt3: 0x00010000
SMP: failed TSC synchronization test
TSC timecounter discards lower 1 bit(s)
Timecounter &amp;quot;TSC-low&amp;quot; frequency 1796660568 Hz quality -100
snd_unit_init() u=0x00ff8000 [512] d=0x00007c00 [32] c=0x000003ff [1024]
feeder_register: snd_unit=-1 snd_maxautovchans=16 latency=2 feeder_rate_min=1 feeder_rate_max=2016000 feeder_rate_round=25
wlan: &amp;lt;802.11 Link Layer&amp;gt;
random: entropy device external interface
[ath_hal] loaded
nfslock: pseudo-device
crypto: &amp;lt;crypto core&amp;gt;
tcp_log: tcp_log device
module_register_init: MOD_LOAD (vesa, 0xffffffff811527b0, 0) error 19
io: &amp;lt;I/O&amp;gt;
kbd: new array size 4
kbd1 at kbdmux0
mem: &amp;lt;memory&amp;gt;
random: registering fast source Intel Secure Key RNG
random: fast provider: &amp;quot;Intel Secure Key RNG&amp;quot;
000.000065 [4335] netmap_init               netmap: loaded module
null: &amp;lt;full device, null device, zero device&amp;gt;
hptrr: RocketRAID 17xx/2xxx SATA controller driver v1.2
hpt27xx: RocketRAID 27xx controller driver v1.2.8
hptnr: R750/DC7280 controller driver v1.1.5
nexus0
efirtc0: &amp;lt;EFI Realtime Clock&amp;gt; on motherboard
efirtc0: registered as a time-of-day clock, resolution 1.000000s
cryptosoft0: &amp;lt;software crypto&amp;gt; on motherboard
crypto: assign cryptosoft0 driver id 0, flags 0x6000000
crypto: cryptosoft0 registers alg 1 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 2 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 3 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 4 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 5 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 16 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 6 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 7 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 32 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 18 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 19 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 20 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 8 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 15 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 9 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 10 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 13 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 14 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 34 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 35 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 36 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 37 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 11 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 22 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 23 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 25 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 24 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 26 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 27 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 28 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 21 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 17 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 29 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 30 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 31 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 40 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 39 flags 0 maxoplen 0
crypto: cryptosoft0 registers alg 38 flags 0 maxoplen 0
acpi0: &amp;lt;ALASKA A M I &amp;gt; on motherboard
ACPI: 12 ACPI AML tables successfully acquired and loaded
PCIe: Memory Mapped configuration base @ 0xf0000000
ioapic0: routing intpin 9 (ISA IRQ 9) to lapic 0 vector 48
acpi0: Power Button (fixed)
acpi0: wakeup code va 0xfffffe0003fff000 pa 0x9c000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
attimer0: &amp;lt;AT timer&amp;gt; port 0x40-0x43 irq 0 on acpi0
Timecounter &amp;quot;i8254&amp;quot; frequency 1193182 Hz quality 0
ioapic0: routing intpin 2 (ISA IRQ 0) to lapic 2 vector 48
Event timer &amp;quot;i8254&amp;quot; frequency 1193182 Hz quality 100
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
atrtc0: &amp;lt;AT realtime clock&amp;gt; port 0x70-0x71 on acpi0
atrtc0: registered as a time-of-day clock, resolution 1.000000s
ioapic0: routing intpin 8 (ISA IRQ 8) to lapic 4 vector 48
ioapic0: routing intpin 8 (ISA IRQ 8) to lapic 0 vector 49
Event timer &amp;quot;RTC&amp;quot; frequency 32768 Hz quality 0
hpet0: &amp;lt;High Precision Event Timer&amp;gt; iomem 0xfed00000-0xfed003ff irq 0,8 on acpi0
hpet0: vendor 0x1022, rev 0x1, 14318180Hz, 3 timers, legacy route
hpet0:  t0: irqs 0x00c00000 (0), MSI, periodic
hpet0:  t1: irqs 0x00c00000 (0), MSI, periodic
hpet0:  t2: irqs 0x00c00000 (0), MSI, periodic
Timecounter &amp;quot;HPET&amp;quot; frequency 14318180 Hz quality 950
msi: routing MSI-X IRQ 256 to local APIC 6 vector 48
msi: routing MSI-X IRQ 257 to local APIC 8 vector 48
msi: routing MSI-X IRQ 258 to local APIC 10 vector 48
msi: Assigning MSI-X IRQ 256 to local APIC 0 vector 50
msi: Assigning MSI-X IRQ 257 to local APIC 0 vector 51
msi: Assigning MSI-X IRQ 258 to local APIC 0 vector 52
Event timer &amp;quot;HPET&amp;quot; frequency 14318180 Hz quality 350
Event timer &amp;quot;HPET1&amp;quot; frequency 14318180 Hz quality 350
Event timer &amp;quot;HPET2&amp;quot; frequency 14318180 Hz quality 350
ACPI timer: 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/2 -&amp;gt; 10
Timecounter &amp;quot;ACPI-fast&amp;quot; frequency 3579545 Hz quality 900
acpi_timer0: &amp;lt;32-bit timer at 3.579545MHz&amp;gt; port 0x808-0x80b on acpi0
pci_link0:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
pci_link1:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
pci_link2:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
pci_link3:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
pci_link4:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
pci_link5:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
pci_link6:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
pci_link7:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0  255   N     0  4 5 7 10 11 14 15
  Validation          0  255   N     0  4 5 7 10 11 14 15
  After Disable       0  255   N     0  4 5 7 10 11 14 15
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
pcib0: &amp;lt;ACPI Host-PCI bridge&amp;gt; port 0xcf8-0xcff on acpi0
pcib0: decoding 5 range 0-0xff
pcib0: decoding 4 range 0-0x3af
pcib0: decoding 4 range 0x3e0-0xcf7
pcib0: decoding 4 range 0x3b0-0x3df
pcib0: decoding 4 range 0xd00-0xffff
pcib0: decoding 3 range 0xa0000-0xbffff
pcib0: decoding 3 range 0xc0000-0xdffff
pcib0: decoding 3 range 0xd0000000-0xfec2ffff
pcib0: decoding 3 range 0xfee00000-0xffffffff
pci0: &amp;lt;ACPI PCI bus&amp;gt; on pcib0
pci0: domain=0, physical bus=0
found-&amp;gt;	vendor=0x1022, dev=0x1630, revid=0x00
	domain=0, bus=0, slot=0, func=0
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x1632, revid=0x00
	domain=0, bus=0, slot=1, func=0
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x1633, revid=0x00
	domain=0, bus=0, slot=1, func=1
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=1, subbus=2
found-&amp;gt;	vendor=0x1022, dev=0x1632, revid=0x00
	domain=0, bus=0, slot=2, func=0
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x1634, revid=0x00
	domain=0, bus=0, slot=2, func=1
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=3, subbus=12
found-&amp;gt;	vendor=0x1022, dev=0x1632, revid=0x00
	domain=0, bus=0, slot=8, func=0
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x1635, revid=0x00
	domain=0, bus=0, slot=8, func=1
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=13, subbus=13
found-&amp;gt;	vendor=0x1022, dev=0x790b, revid=0x51
	domain=0, bus=0, slot=20, func=0
	class=0c-05-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0403, statreg=0x0220, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x790e, revid=0x51
	domain=0, bus=0, slot=20, func=3
	class=06-01-00, hdrtype=0x00, mfdev=1
	cmdreg=0x000f, statreg=0x0220, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x1448, revid=0x00
	domain=0, bus=0, slot=24, func=0
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x1449, revid=0x00
	domain=0, bus=0, slot=24, func=1
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x144a, revid=0x00
	domain=0, bus=0, slot=24, func=2
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x144b, revid=0x00
	domain=0, bus=0, slot=24, func=3
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x144c, revid=0x00
	domain=0, bus=0, slot=24, func=4
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x144d, revid=0x00
	domain=0, bus=0, slot=24, func=5
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x144e, revid=0x00
	domain=0, bus=0, slot=24, func=6
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found-&amp;gt;	vendor=0x1022, dev=0x144f, revid=0x00
	domain=0, bus=0, slot=24, func=7
	class=06-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
pcib1: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 1.1 on pci0
pcib0: allocated type 4 (0xf000-0xffff) for rid 1c of pcib1
pcib0: allocated type 3 (0xfc900000-0xfccfffff) for rid 20 of pcib1
pcib0: allocated type 3 (0xe0300000-0xe06fffff) for rid 24 of pcib1
pcib1:   domain            0
pcib1:   secondary bus     1
pcib1:   subordinate bus   2
pcib1:   I/O decode        0xf000-0xffff
pcib1:   memory decode     0xfc900000-0xfccfffff
pcib1:   prefetched decode 0xe0300000-0xe06fffff
pci1: &amp;lt;ACPI PCI bus&amp;gt; on pcib1
pcib1: allocated bus range (1-1) for rid 0 of pci1
pci1: domain=0, physical bus=1
found-&amp;gt;	vendor=0x8086, dev=0x10fb, revid=0x01
	domain=0, bus=1, slot=0, func=0
	class=02-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=b, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit, vector masks
	MSI-X supports 64 messages in map 0x20
	map[10]: type Memory, range 64, base 0xfca00000, size 20, memory disabled
pcib1: allocated memory range (0xfca00000-0xfcafffff) for rid 10 of pci0:1:0:0
	map[18]: type I/O Port, range 32, base 0xf020, size  5, port disabled
pcib1: allocated I/O port range (0xf020-0xf03f) for rid 18 of pci0:1:0:0
	map[20]: type Memory, range 64, base 0xfcc04000, size 14, enabled
pcib1: allocated memory range (0xfcc04000-0xfcc07fff) for rid 20 of pci0:1:0:0
found-&amp;gt;	vendor=0x8086, dev=0x10fb, revid=0x01
	domain=0, bus=1, slot=0, func=1
	class=02-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit, vector masks
	MSI-X supports 64 messages in map 0x20
	map[10]: type Memory, range 64, base 0xfc900000, size 20, memory disabled
pcib1: allocated memory range (0xfc900000-0xfc9fffff) for rid 10 of pci0:1:0:1
	map[18]: type I/O Port, range 32, base 0xf000, size  5, port disabled
pcib1: allocated I/O port range (0xf000-0xf01f) for rid 18 of pci0:1:0:1
	map[20]: type Memory, range 64, base 0xfcc00000, size 14, enabled
pcib1: allocated memory range (0xfcc00000-0xfcc03fff) for rid 20 of pci0:1:0:1
ix0: &amp;lt;Intel(R) PRO/10GbE PCI-Express Network Driver&amp;gt; port 0xf020-0xf03f mem 0xfca00000-0xfcafffff,0xfcc04000-0xfcc07fff at device 0.0 on pci1
ixgbe_attach: begin
ix0: Using 2048 TX descriptors and 2048 RX descriptors
ix0: msix_init qsets capped at 16
ix0: intr CPUs: 8 queue msgs: 63 admincnt: 1
ix0: Using 8 RX queues 8 TX queues
ix0: attempting to allocate 9 MSI-X vectors (64 supported)
msi: routing MSI-X IRQ 259 to local APIC 12 vector 48
msi: routing MSI-X IRQ 260 to local APIC 14 vector 48
msi: routing MSI-X IRQ 261 to local APIC 0 vector 53
msi: routing MSI-X IRQ 262 to local APIC 2 vector 49
msi: routing MSI-X IRQ 263 to local APIC 4 vector 48
msi: routing MSI-X IRQ 264 to local APIC 6 vector 48
msi: routing MSI-X IRQ 265 to local APIC 8 vector 48
msi: routing MSI-X IRQ 266 to local APIC 10 vector 48
msi: routing MSI-X IRQ 267 to local APIC 12 vector 49
ix0: using IRQs 259-267 for MSI-X
ix0: Using MSI-X interrupts with 9 vectors
ix0: allocated for 8 queues
ix0: allocated for 8 rx queues
msi: Assigning MSI-X IRQ 259 to local APIC 0 vector 54
msi: Assigning MSI-X IRQ 260 to local APIC 2 vector 50
msi: Assigning MSI-X IRQ 261 to local APIC 4 vector 49
msi: Assigning MSI-X IRQ 262 to local APIC 6 vector 49
msi: Assigning MSI-X IRQ 263 to local APIC 8 vector 49
msi: Assigning MSI-X IRQ 264 to local APIC 10 vector 49
msi: Assigning MSI-X IRQ 265 to local APIC 12 vector 48
msi: Assigning MSI-X IRQ 266 to local APIC 14 vector 48
msi: Assigning MSI-X IRQ 259 to local APIC 1 vector 48
msi: Assigning MSI-X IRQ 260 to local APIC 3 vector 48
msi: Assigning MSI-X IRQ 261 to local APIC 5 vector 48
msi: Assigning MSI-X IRQ 262 to local APIC 7 vector 48
msi: Assigning MSI-X IRQ 263 to local APIC 9 vector 48
msi: Assigning MSI-X IRQ 264 to local APIC 11 vector 48
msi: Assigning MSI-X IRQ 265 to local APIC 13 vector 48
msi: Assigning MSI-X IRQ 266 to local APIC 15 vector 48
ix0: bpf attached
ix0: Ethernet address: 38:ea:a7:8e:91:38
ixgbe_setup_interface: begin
ix0: PCI Express Bus: Speed 5.0GT/s Width x8
ix0: netmap queues/slots: TX 8/2048, RX 8/2048
ix1: &amp;lt;Intel(R) PRO/10GbE PCI-Express Network Driver&amp;gt; port 0xf000-0xf01f mem 0xfc900000-0xfc9fffff,0xfcc00000-0xfcc03fff at device 0.1 on pci1
ixgbe_attach: begin
ix1: Using 2048 TX descriptors and 2048 RX descriptors
ix1: msix_init qsets capped at 16
ix1: intr CPUs: 8 queue msgs: 63 admincnt: 1
ix1: Using 8 RX queues 8 TX queues
ix1: attempting to allocate 9 MSI-X vectors (64 supported)
msi: routing MSI-X IRQ 268 to local APIC 14 vector 48
msi: routing MSI-X IRQ 269 to local APIC 0 vector 53
msi: routing MSI-X IRQ 270 to local APIC 2 vector 49
msi: routing MSI-X IRQ 271 to local APIC 4 vector 48
msi: routing MSI-X IRQ 272 to local APIC 6 vector 48
msi: routing MSI-X IRQ 273 to local APIC 8 vector 48
msi: routing MSI-X IRQ 274 to local APIC 10 vector 48
msi: routing MSI-X IRQ 275 to local APIC 12 vector 48
msi: routing MSI-X IRQ 276 to local APIC 14 vector 49
ix1: using IRQs 268-276 for MSI-X
ix1: Using MSI-X interrupts with 9 vectors
ix1: allocated for 8 queues
ix1: allocated for 8 rx queues
msi: Assigning MSI-X IRQ 268 to local APIC 0 vector 54
msi: Assigning MSI-X IRQ 269 to local APIC 2 vector 50
msi: Assigning MSI-X IRQ 270 to local APIC 4 vector 49
msi: Assigning MSI-X IRQ 271 to local APIC 6 vector 49
msi: Assigning MSI-X IRQ 272 to local APIC 8 vector 49
msi: Assigning MSI-X IRQ 273 to local APIC 10 vector 49
msi: Assigning MSI-X IRQ 274 to local APIC 12 vector 50
msi: Assigning MSI-X IRQ 275 to local APIC 14 vector 48
msi: Assigning MSI-X IRQ 268 to local APIC 1 vector 49
msi: Assigning MSI-X IRQ 269 to local APIC 3 vector 49
msi: Assigning MSI-X IRQ 270 to local APIC 5 vector 49
msi: Assigning MSI-X IRQ 271 to local APIC 7 vector 49
msi: Assigning MSI-X IRQ 272 to local APIC 9 vector 49
msi: Assigning MSI-X IRQ 273 to local APIC 11 vector 49
msi: Assigning MSI-X IRQ 274 to local APIC 13 vector 49
msi: Assigning MSI-X IRQ 275 to local APIC 15 vector 49
ix1: bpf attached
ix1: Ethernet address: 38:ea:a7:8e:91:39
ixgbe_setup_interface: begin
ix1: PCI Express Bus: Speed 5.0GT/s Width x8
ix1: netmap queues/slots: TX 8/2048, RX 8/2048
pcib2: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 2.1 on pci0
pcib0: allocated type 4 (0xe000-0xefff) for rid 1c of pcib2
pcib0: allocated type 3 (0xfcd00000-0xfcffffff) for rid 20 of pcib2
pcib2:   domain            0
pcib2:   secondary bus     3
pcib2:   subordinate bus   12
pcib2:   I/O decode        0xe000-0xefff
pcib2:   memory decode     0xfcd00000-0xfcffffff
pci2: &amp;lt;ACPI PCI bus&amp;gt; on pcib2
pcib2: allocated bus range (3-3) for rid 0 of pci2
pci2: domain=0, physical bus=3
found-&amp;gt;	vendor=0x1022, dev=0x43ee, revid=0x00
	domain=0, bus=3, slot=0, func=0
	class=0c-03-30, hdrtype=0x00, mfdev=1
	cmdreg=0x0006, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 8 messages, 64 bit
	MSI-X supports 8 messages in map 0x10
	map[10]: type Memory, range 64, base 0xfcfa0000, size 15, enabled
pcib2: allocated memory range (0xfcfa0000-0xfcfa7fff) for rid 10 of pci0:3:0:0
found-&amp;gt;	vendor=0x1022, dev=0x43eb, revid=0x00
	domain=0, bus=3, slot=0, func=1
	class=01-06-01, hdrtype=0x00, mfdev=1
	cmdreg=0x0006, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=b, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[24]: type Memory, range 32, base 0xfcf80000, size 17, enabled
pcib2: allocated memory range (0xfcf80000-0xfcf9ffff) for rid 24 of pci0:3:0:1
found-&amp;gt;	vendor=0x1022, dev=0x43e9, revid=0x00
	domain=0, bus=3, slot=0, func=2
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=4, subbus=12
pcib2: allocated bus range (4-12) for rid 0 of pci0:3:0:2
xhci0: &amp;lt;XHCI (generic) USB 3.0 controller&amp;gt; mem 0xfcfa0000-0xfcfa7fff at device 0.0 on pci2
xhci0: 32 bytes context size, 64-bit DMA
xhci0: Unable to map MSI-X table
xhci0: attempting to allocate 1 MSI vectors (8 supported)
msi: routing MSI IRQ 277 to local APIC 0 vector 53
xhci0: using IRQ 277 for MSI
xhci0: MSI enabled
usbus0 on xhci0
xhci0: usbpf: Attached
usbus0: 5.0Gbps Super Speed USB v3.0
ahci0: &amp;lt;AHCI SATA controller&amp;gt; mem 0xfcf80000-0xfcf9ffff at device 0.1 on pci2
ahci0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 278 to local APIC 2 vector 49
ahci0: using IRQ 278 for MSI
ahci0: AHCI v1.31 with 6 6Gbps ports, Port Multiplier supported
ahci0: Caps: 64bit NCQ SNTF SS ALP AL CLO 6Gbps PM PMD SSC PSC 32cmd eSATA 6ports
ahci0: Caps2: DESO SADM SDS APST
ahcich0: &amp;lt;AHCI channel&amp;gt; at channel 0 on ahci0
ahcich0: Caps: HPCP
ahcich1: &amp;lt;AHCI channel&amp;gt; at channel 1 on ahci0
ahcich1: Caps: HPCP
ahcich2: &amp;lt;AHCI channel&amp;gt; at channel 2 on ahci0
ahcich2: Caps: HPCP
ahcich3: &amp;lt;AHCI channel&amp;gt; at channel 3 on ahci0
ahcich3: Caps: HPCP
ahcich4: &amp;lt;AHCI channel&amp;gt; at channel 4 on ahci0
ahcich4: Caps: HPCP
ahcich5: &amp;lt;AHCI channel&amp;gt; at channel 5 on ahci0
ahcich5: Caps: HPCP
pcib3: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 0.2 on pci2
pcib2: allocated I/O port range (0xe000-0xefff) for rid 1c of pcib3
pcib2: allocated memory range (0xfcd00000-0xfcefffff) for rid 20 of pcib3
pcib3:   domain            0
pcib3:   secondary bus     4
pcib3:   subordinate bus   12
pcib3:   I/O decode        0xe000-0xefff
pcib3:   memory decode     0xfcd00000-0xfcefffff
pcib3: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02 - AE_NOT_FOUND
pci3: &amp;lt;ACPI PCI bus&amp;gt; on pcib3
pcib3: allocated bus range (4-4) for rid 0 of pci3
pci3: domain=0, physical bus=4
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=0, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=5, subbus=5
pcib3: allocated bus range (5-5) for rid 0 of pci0:4:0:0
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=1, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=6, subbus=6
pcib3: allocated bus range (6-6) for rid 0 of pci0:4:1:0
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=2, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=7, subbus=7
pcib3: allocated bus range (7-7) for rid 0 of pci0:4:2:0
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=3, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=8, subbus=8
pcib3: allocated bus range (8-8) for rid 0 of pci0:4:3:0
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=6, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=9, subbus=9
pcib3: allocated bus range (9-9) for rid 0 of pci0:4:6:0
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=7, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=10, subbus=10
pcib3: allocated bus range (10-10) for rid 0 of pci0:4:7:0
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=8, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=11, subbus=11
pcib3: allocated bus range (11-11) for rid 0 of pci0:4:8:0
found-&amp;gt;	vendor=0x1022, dev=0x43ea, revid=0x00
	domain=0, bus=4, slot=9, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	secbus=12, subbus=12
pcib3: allocated bus range (12-12) for rid 0 of pci0:4:9:0
pcib4: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 0.0 on pci3
pcib3: allocated I/O port range (0xe000-0xefff) for rid 1c of pcib4
pcib3: allocated memory range (0xfce00000-0xfcefffff) for rid 20 of pcib4
pcib4:   domain            0
pcib4:   secondary bus     5
pcib4:   subordinate bus   5
pcib4:   I/O decode        0xe000-0xefff
pcib4:   memory decode     0xfce00000-0xfcefffff
pcib4: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT20 - AE_NOT_FOUND
pci4: &amp;lt;ACPI PCI bus&amp;gt; on pcib4
pcib4: allocated bus range (5-5) for rid 0 of pci4
pci4: domain=0, physical bus=5
found-&amp;gt;	vendor=0x10ec, dev=0x8168, revid=0x15
	domain=0, bus=5, slot=0, func=0
	class=02-00-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D1 D2 D3  current D0
	MSI supports 1 message, 64 bit
	MSI-X supports 4 messages in map 0x20
	map[10]: type I/O Port, range 32, base 0xe000, size  8, enabled
pcib4: allocated I/O port range (0xe000-0xe0ff) for rid 10 of pci0:5:0:0
	map[18]: type Memory, range 64, base 0xfce04000, size 12, enabled
pcib4: allocated memory range (0xfce04000-0xfce04fff) for rid 18 of pci0:5:0:0
	map[20]: type Memory, range 64, base 0xfce00000, size 14, enabled
pcib4: allocated memory range (0xfce00000-0xfce03fff) for rid 20 of pci0:5:0:0
re0: &amp;lt;RealTek 8168/8111 B/C/CP/D/DP/E/F/G PCIe Gigabit Ethernet&amp;gt; port 0xe000-0xe0ff mem 0xfce04000-0xfce04fff,0xfce00000-0xfce03fff at device 0.0 on pci4
re0: MSI count : 1
re0: MSI-X count : 4
re0: attempting to allocate 1 MSI-X vectors (4 supported)
msi: routing MSI-X IRQ 279 to local APIC 4 vector 48
re0: using IRQ 279 for MSI-X
re0: Using 1 MSI-X message
re0: ASPM disabled
re0: Chip rev. 0x54000000
re0: MAC rev. 0x00100000
miibus0: &amp;lt;MII bus&amp;gt; on re0
rgephy0: &amp;lt;RTL8251/8153 1000BASE-T media interface&amp;gt; PHY 1 on miibus0
rgephy0: OUI 0x00e04c, model 0x0000, rev. 0
rgephy0:  none, 10baseT, 10baseT-FDX, 10baseT-FDX-flow, 100baseTX, 100baseTX-FDX, 100baseTX-FDX-flow, 1000baseT-FDX, 1000baseT-FDX-master, 1000baseT-FDX-flow, 1000baseT-FDX-flow-master, auto, auto-flow
re0: Using defaults for TSO: 65518/35/2048
re0: bpf attached
re0: Ethernet address: a8:a1:59:34:3f:7f
re0: netmap queues/slots: TX 1/256, RX 1/256
pcib5: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 1.0 on pci3
pcib3: allocated memory range (0xfcd00000-0xfcdfffff) for rid 20 of pcib5
pcib5:   domain            0
pcib5:   secondary bus     6
pcib5:   subordinate bus   6
pcib5:   memory decode     0xfcd00000-0xfcdfffff
pcib5: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT21 - AE_NOT_FOUND
pci5: &amp;lt;ACPI PCI bus&amp;gt; on pcib5
pcib5: allocated bus range (6-6) for rid 0 of pci5
pci5: domain=0, physical bus=6
found-&amp;gt;	vendor=0x8086, dev=0x24fb, revid=0x10
	domain=0, bus=6, slot=0, func=0
	class=02-80-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0000, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 64, base 0xfcd00000, size 13, memory disabled
pcib5: allocated memory range (0xfcd00000-0xfcd01fff) for rid 10 of pci0:6:0:0
pci5: &amp;lt;network&amp;gt; at device 0.0 (no driver attached)
pcib6: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 2.0 on pci3
pcib6:   domain            0
pcib6:   secondary bus     7
pcib6:   subordinate bus   7
pcib6: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT22 - AE_NOT_FOUND
pci6: &amp;lt;ACPI PCI bus&amp;gt; on pcib6
pcib6: allocated bus range (7-7) for rid 0 of pci6
pci6: domain=0, physical bus=7
pcib7: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 3.0 on pci3
pcib7:   domain            0
pcib7:   secondary bus     8
pcib7:   subordinate bus   8
pcib7: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT23 - AE_NOT_FOUND
pci7: &amp;lt;ACPI PCI bus&amp;gt; on pcib7
pcib7: allocated bus range (8-8) for rid 0 of pci7
pci7: domain=0, physical bus=8
pcib8: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 6.0 on pci3
pcib8:   domain            0
pcib8:   secondary bus     9
pcib8:   subordinate bus   9
pcib8: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT26 - AE_NOT_FOUND
pci8: &amp;lt;ACPI PCI bus&amp;gt; on pcib8
pcib8: allocated bus range (9-9) for rid 0 of pci8
pci8: domain=0, physical bus=9
pcib9: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 7.0 on pci3
pcib9:   domain            0
pcib9:   secondary bus     10
pcib9:   subordinate bus   10
pcib9: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT27 - AE_NOT_FOUND
pci9: &amp;lt;ACPI PCI bus&amp;gt; on pcib9
pcib9: allocated bus range (10-10) for rid 0 of pci9
pci9: domain=0, physical bus=10
pcib10: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 8.0 on pci3
pcib10:   domain            0
pcib10:   secondary bus     11
pcib10:   subordinate bus   11
pcib10: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT28 - AE_NOT_FOUND
pci10: &amp;lt;ACPI PCI bus&amp;gt; on pcib10
pcib10: allocated bus range (11-11) for rid 0 of pci10
pci10: domain=0, physical bus=11
pcib11: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 9.0 on pci3
pcib11:   domain            0
pcib11:   secondary bus     12
pcib11:   subordinate bus   12
pcib11: could not get PCI interrupt routing table for \134_SB_.PCI0.GPP3.PT02.PT29 - AE_NOT_FOUND
pci11: &amp;lt;ACPI PCI bus&amp;gt; on pcib11
pcib11: allocated bus range (12-12) for rid 0 of pci11
pci11: domain=0, physical bus=12
pcib12: &amp;lt;ACPI PCI-PCI bridge&amp;gt; at device 8.1 on pci0
pcib0: allocated type 4 (0xd000-0xdfff) for rid 1c of pcib12
pcib0: allocated type 3 (0xfc500000-0xfc8fffff) for rid 20 of pcib12
pcib0: allocated type 3 (0xd0000000-0xe01fffff) for rid 24 of pcib12
pcib12:   domain            0
pcib12:   secondary bus     13
pcib12:   subordinate bus   13
pcib12:   I/O decode        0xd000-0xdfff
pcib12:   memory decode     0xfc500000-0xfc8fffff
pcib12:   prefetched decode 0xd0000000-0xe01fffff
pci12: &amp;lt;ACPI PCI bus&amp;gt; on pcib12
pcib12: allocated bus range (13-13) for rid 0 of pci12
pci12: domain=0, physical bus=13
found-&amp;gt;	vendor=0x1002, dev=0x1636, revid=0xd8
	domain=0, bus=13, slot=0, func=0
	class=03-00-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0006, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 4 messages, 64 bit
	MSI-X supports 4 messages in map 0x24
	map[10]: type Prefetchable Memory, range 64, base 0xd0000000, size 28, enabled
pcib12: allocated prefetch range (0xd0000000-0xdfffffff) for rid 10 of pci0:13:0:0
	map[18]: type Prefetchable Memory, range 64, base 0xe0000000, size 21, enabled
pcib12: allocated prefetch range (0xe0000000-0xe01fffff) for rid 18 of pci0:13:0:0
	map[20]: type I/O Port, range 32, base 0xd000, size  8, port disabled
pcib12: allocated I/O port range (0xd000-0xd0ff) for rid 20 of pci0:13:0:0
	map[24]: type Memory, range 32, base 0xfc800000, size 19, enabled
pcib12: allocated memory range (0xfc800000-0xfc87ffff) for rid 24 of pci0:13:0:0
found-&amp;gt;	vendor=0x1002, dev=0x1637, revid=0x00
	domain=0, bus=13, slot=0, func=1
	class=04-03-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=b, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 32, base 0xfc888000, size 14, memory disabled
pcib12: allocated memory range (0xfc888000-0xfc88bfff) for rid 10 of pci0:13:0:1
found-&amp;gt;	vendor=0x1022, dev=0x15df, revid=0x00
	domain=0, bus=13, slot=0, func=2
	class=10-80-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 2 messages, 64 bit
	MSI-X supports 2 messages in map 0x24
	map[18]: type Memory, range 32, base 0xfc700000, size 20, memory disabled
pcib12: allocated memory range (0xfc700000-0xfc7fffff) for rid 18 of pci0:13:0:2
	map[24]: type Memory, range 32, base 0xfc88c000, size 13, enabled
pcib12: allocated memory range (0xfc88c000-0xfc88dfff) for rid 24 of pci0:13:0:2
found-&amp;gt;	vendor=0x1022, dev=0x1639, revid=0x00
	domain=0, bus=13, slot=0, func=3
	class=0c-03-30, hdrtype=0x00, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=d, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 8 messages, 64 bit
	MSI-X supports 8 messages in map 0x10
	map[10]: type Memory, range 64, base 0xfc600000, size 20, enabled
pcib12: allocated memory range (0xfc600000-0xfc6fffff) for rid 10 of pci0:13:0:3
found-&amp;gt;	vendor=0x1022, dev=0x1639, revid=0x00
	domain=0, bus=13, slot=0, func=4
	class=0c-03-30, hdrtype=0x00, mfdev=1
	cmdreg=0x0007, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 8 messages, 64 bit
	MSI-X supports 8 messages in map 0x10
	map[10]: type Memory, range 64, base 0xfc500000, size 20, enabled
pcib12: allocated memory range (0xfc500000-0xfc5fffff) for rid 10 of pci0:13:0:4
found-&amp;gt;	vendor=0x1022, dev=0x15e3, revid=0x00
	domain=0, bus=13, slot=0, func=6
	class=04-03-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0000, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 32, base 0xfc880000, size 15, memory disabled
pcib12: allocated memory range (0xfc880000-0xfc887fff) for rid 10 of pci0:13:0:6
vgapci0: &amp;lt;VGA-compatible display&amp;gt; port 0xd000-0xd0ff mem 0xd0000000-0xdfffffff,0xe0000000-0xe01fffff,0xfc800000-0xfc87ffff at device 0.0 on pci12
hdac0: &amp;lt;ATI (0x1637) HDA Controller&amp;gt; mem 0xfc888000-0xfc88bfff at device 0.1 on pci12
hdac0: PCI card vendor: 0x1002, device: 0x1637
hdac0: HDA Driver Revision: 20120126_0002
hdac0: Config options: on=0x00000000 off=0x00000000
hdac0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 280 to local APIC 6 vector 48
hdac0: using IRQ 280 for MSI
hdac0: Caps: OSS 4, ISS 0, BSS 0, NSDO 1, 64bit, CORB 256, RIRB 256
pci12: &amp;lt;encrypt/decrypt&amp;gt; at device 0.2 (no driver attached)
xhci1: &amp;lt;XHCI (generic) USB 3.0 controller&amp;gt; mem 0xfc600000-0xfc6fffff at device 0.3 on pci12
xhci1: 64 bytes context size, 64-bit DMA
xhci1: Unable to map MSI-X table
xhci1: attempting to allocate 1 MSI vectors (8 supported)
msi: routing MSI IRQ 281 to local APIC 8 vector 48
xhci1: using IRQ 281 for MSI
xhci1: MSI enabled
usbus1 on xhci1
xhci1: usbpf: Attached
usbus1: 5.0Gbps Super Speed USB v3.0
xhci2: &amp;lt;XHCI (generic) USB 3.0 controller&amp;gt; mem 0xfc500000-0xfc5fffff at device 0.4 on pci12
xhci2: 64 bytes context size, 64-bit DMA
xhci2: Unable to map MSI-X table
xhci2: attempting to allocate 1 MSI vectors (8 supported)
msi: routing MSI IRQ 282 to local APIC 10 vector 48
xhci2: using IRQ 282 for MSI
xhci2: MSI enabled
usbus2 on xhci2
xhci2: usbpf: Attached
usbus2: 5.0Gbps Super Speed USB v3.0
hdac1: &amp;lt;AMD (0x15e3) HDA Controller&amp;gt; mem 0xfc880000-0xfc887fff at device 0.6 on pci12
hdac1: PCI card vendor: 0x1849, device: 0x288a
hdac1: HDA Driver Revision: 20120126_0002
hdac1: Config options: on=0x00000000 off=0x00000000
hdac1: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 283 to local APIC 12 vector 48
hdac1: using IRQ 283 for MSI
hdac1: Caps: OSS 4, ISS 4, BSS 0, NSDO 1, 64bit, CORB 256, RIRB 256
pci0: &amp;lt;serial bus, SMBus&amp;gt; at device 20.0 (no driver attached)
isab0: &amp;lt;PCI-ISA bridge&amp;gt; at device 20.3 on pci0
isa0: &amp;lt;ISA bus&amp;gt; on isab0
acpi_button0: &amp;lt;Power Button&amp;gt; on acpi0
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
uart2: &amp;lt;16x50 with 256 byte FIFO&amp;gt; iomem 0xfedc9000-0xfedc9fff,0xfedc7000-0xfedc7fff irq 3 on acpi0
ioapic0: routing intpin 3 (ISA IRQ 3) to lapic 14 vector 48
uart2: fast interrupt
uart2: PPS capture mode: DCD
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
uart3: &amp;lt;16x50 with 256 byte FIFO&amp;gt; iomem 0xfedca000-0xfedcafff,0xfedc8000-0xfedc8fff irq 4 on acpi0
ioapic0: routing intpin 4 (ISA IRQ 4) to lapic 0 vector 54
uart3: fast interrupt
uart3: PPS capture mode: DCD
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
uart4: &amp;lt;16x50 with 256 byte FIFO&amp;gt; iomem 0xfedce000-0xfedcefff,0xfedcc000-0xfedccfff irq 3 on acpi0
uart4: fast interrupt
uart4: PPS capture mode: DCD
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
uart5: &amp;lt;16x50 with 256 byte FIFO&amp;gt; iomem 0xfedcf000-0xfedcffff,0xfedcd000-0xfedcdfff irq 4 on acpi0
uart5: fast interrupt
uart5: PPS capture mode: DCD
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
acpi_syscontainer0: &amp;lt;System Container&amp;gt; on acpi0
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
cpu0: Processor \134_SB_.PLTF.C000 (ACPI ID 0) -&amp;gt; APIC ID 0
cpu0: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu0: switching to generic Cx mode
cpu1: Processor \134_SB_.PLTF.C001 (ACPI ID 1) -&amp;gt; APIC ID 1
cpu1: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu2: Processor \134_SB_.PLTF.C002 (ACPI ID 2) -&amp;gt; APIC ID 2
cpu2: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu3: Processor \134_SB_.PLTF.C003 (ACPI ID 3) -&amp;gt; APIC ID 3
cpu3: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu4: Processor \134_SB_.PLTF.C004 (ACPI ID 4) -&amp;gt; APIC ID 4
cpu4: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu5: Processor \134_SB_.PLTF.C005 (ACPI ID 5) -&amp;gt; APIC ID 5
cpu5: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu6: Processor \134_SB_.PLTF.C006 (ACPI ID 6) -&amp;gt; APIC ID 6
cpu6: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu7: Processor \134_SB_.PLTF.C007 (ACPI ID 7) -&amp;gt; APIC ID 7
cpu7: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu8: Processor \134_SB_.PLTF.C008 (ACPI ID 8) -&amp;gt; APIC ID 8
cpu8: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu9: Processor \134_SB_.PLTF.C009 (ACPI ID 9) -&amp;gt; APIC ID 9
cpu9: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu10: Processor \134_SB_.PLTF.C00A (ACPI ID 10) -&amp;gt; APIC ID 10
cpu10: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu11: Processor \134_SB_.PLTF.C00B (ACPI ID 11) -&amp;gt; APIC ID 11
cpu11: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu12: Processor \134_SB_.PLTF.C00C (ACPI ID 12) -&amp;gt; APIC ID 12
cpu12: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu13: Processor \134_SB_.PLTF.C00D (ACPI ID 13) -&amp;gt; APIC ID 13
cpu13: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu14: Processor \134_SB_.PLTF.C00E (ACPI ID 14) -&amp;gt; APIC ID 14
cpu14: &amp;lt;ACPI CPU&amp;gt; on acpi0
cpu15: Processor \134_SB_.PLTF.C00F (ACPI ID 15) -&amp;gt; APIC ID 15
cpu15: &amp;lt;ACPI CPU&amp;gt; on acpi0
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
Table &amp;#039;FACP&amp;#039; at 0xcaa32000
FACP: Found table at 0xcaa32000
uart0: &amp;lt;16550 or compatible&amp;gt; port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0
uart0: fast interrupt
uart0: PPS capture mode: DCD
ACPI: Enabled 1 GPEs in block 00 to 1F
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 (0xa0000-0xa07ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa0800-0xa0fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa1000-0xa17ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa1800-0xa1fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa2000-0xa27ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa2800-0xa2fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa3000-0xa37ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa3800-0xa3fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa4000-0xa47ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa4800-0xa4fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa5000-0xa57ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa5800-0xa5fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa6000-0xa67ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa6800-0xa6fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa7000-0xa77ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa7800-0xa7fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa8000-0xa87ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa8800-0xa8fff) for rid 0 of orm0
pcib0: allocated type 3 (0xa9000-0xa97ff) for rid 0 of orm0
pcib0: allocated type 3 (0xa9800-0xa9fff) for rid 0 of orm0
pcib0: allocated type 3 (0xaa000-0xaa7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xaa800-0xaafff) for rid 0 of orm0
pcib0: allocated type 3 (0xab000-0xab7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xab800-0xabfff) for rid 0 of orm0
pcib0: allocated type 3 (0xac000-0xac7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xac800-0xacfff) for rid 0 of orm0
pcib0: allocated type 3 (0xad000-0xad7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xad800-0xadfff) for rid 0 of orm0
pcib0: allocated type 3 (0xae000-0xae7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xae800-0xaefff) for rid 0 of orm0
pcib0: allocated type 3 (0xaf000-0xaf7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xaf800-0xaffff) for rid 0 of orm0
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 (0xc0000-0xc07ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc0800-0xc0fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc1000-0xc17ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc1800-0xc1fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc2000-0xc27ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc2800-0xc2fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc3000-0xc37ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc3800-0xc3fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc4000-0xc47ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc4800-0xc4fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc5000-0xc57ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc5800-0xc5fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc6000-0xc67ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc6800-0xc6fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc7000-0xc77ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc7800-0xc7fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc8000-0xc87ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc8800-0xc8fff) for rid 0 of orm0
pcib0: allocated type 3 (0xc9000-0xc97ff) for rid 0 of orm0
pcib0: allocated type 3 (0xc9800-0xc9fff) for rid 0 of orm0
pcib0: allocated type 3 (0xca000-0xca7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xca800-0xcafff) for rid 0 of orm0
pcib0: allocated type 3 (0xcb000-0xcb7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xcb800-0xcbfff) for rid 0 of orm0
pcib0: allocated type 3 (0xcc000-0xcc7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xcc800-0xccfff) for rid 0 of orm0
pcib0: allocated type 3 (0xcd000-0xcd7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xcd800-0xcdfff) for rid 0 of orm0
pcib0: allocated type 3 (0xce000-0xce7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xce800-0xcefff) for rid 0 of orm0
pcib0: allocated type 3 (0xcf000-0xcf7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xcf800-0xcffff) for rid 0 of orm0
pcib0: allocated type 3 (0xd0000-0xd07ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd0800-0xd0fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd1000-0xd17ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd1800-0xd1fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd2000-0xd27ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd2800-0xd2fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd3000-0xd37ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd3800-0xd3fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd4000-0xd47ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd4800-0xd4fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd5000-0xd57ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd5800-0xd5fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd6000-0xd67ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd6800-0xd6fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd7000-0xd77ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd7800-0xd7fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd8000-0xd87ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd8800-0xd8fff) for rid 0 of orm0
pcib0: allocated type 3 (0xd9000-0xd97ff) for rid 0 of orm0
pcib0: allocated type 3 (0xd9800-0xd9fff) for rid 0 of orm0
pcib0: allocated type 3 (0xda000-0xda7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xda800-0xdafff) for rid 0 of orm0
pcib0: allocated type 3 (0xdb000-0xdb7ff) for rid 0 of orm0
pcib0: allocated type 3 (0xdb800-0xdbfff) 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
isa_probe_children: disabling PnP devices
atrtc: atrtc0 already exists; skipping it
attimer: attimer0 already exists; skipping it
sc: sc0 already exists; skipping it
uart: uart0 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 (0x60-0x60) for rid 0 of atkbdc0
pcib0: allocated type 4 (0x64-0x64) for rid 1 of atkbdc0
atkbdc0: &amp;lt;Keyboard controller (i8042)&amp;gt; at port 0x60,0x64 on isa0
pcib0: allocated type 4 (0x60-0x60) for rid 0 of atkbdc0
pcib0: allocated type 4 (0x64-0x64) for rid 1 of atkbdc0
atkbd0: &amp;lt;AT Keyboard&amp;gt; irq 1 on atkbdc0
kbd0 at atkbd0
kbd0: atkbd0, generic (0), config:0x0, flags:0x1f0000
ioapic0: routing intpin 1 (ISA IRQ 1) to lapic 2 vector 50
atkbd0: [GIANT-LOCKED]
psm0: unable to allocate IRQ
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 (0x2f8-0x2f8) for rid 0 of uart1
uart1 failed to probe at port 0x2f8 irq 3 on isa0
isa_probe_children: probing PnP devices
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
AcpiOsExecute: task queue not started
hwpstate0: &amp;lt;Cool`n&amp;#039;Quiet 2.0&amp;gt; on cpu0
Device configuration finished.
procfs registered
ZFS filesystem version: 5
ZFS storage pool version: features support (5000)
Timecounters tick every 1.000 msec
vlan: initialized, using hash tables with chaining
lo0: bpf attached
IPsec: Initialized Security Association Processing.
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
arc4random: read 32 bytes from preloaded cache
tcp_init: net.inet.tcp.tcbhashsize auto tuned to 131072
AcpiOsExecute: enqueue 16 pending tasks
hptrr: no controller detected.
hpt27xx: no controller detected.
hptnr: no controller detected.
ahcich0: AHCI reset...
hdacc0: &amp;lt;ATI R6xx HDA CODEC&amp;gt; at cad 0 on hdac0
hdaa0: &amp;lt;ATI R6xx Audio Function Group&amp;gt; at nid 1 on hdacc0
ahcich0: hdaa0: Subsystem ID: 0x00aa0100
SATA connect time=100us status=00000133
ahcich0: AHCI reset: device found
hdaa0: NumGPIO=0 NumGPO=0 NumGPI=0 GPIWake=0 GPIUnsol=0
ahcich1: AHCI reset...
hdaa0: Original pins configuration:
hdaa0: nid   0x    as seq device       conn  jack    loc        color   misc
ahcich1: hdaa0:  3 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0:  5 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0:  7 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
SATA connect time=100us status=00000133
ahcich1: AHCI reset: device found
hdaa0:  9 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
ahcich2: hdaa0: 11 585600f0 15 0  Digital-out   None  Digital 0x18       Unknown 0
hdaa0: 13 585600f0 15 0  Digital-out   None  Digital 0x18       Unknown 0
AHCI reset...
hdaa0: Patched pins configuration:
hdaa0: nid   0x    as seq device       conn  jack    loc        color   misc
hdaa0:  3 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0:  5 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0:  7 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0:  9 185600f0 15 0  Digital-out   Jack  Digital 0x18       Unknown 0
hdaa0: 11 585600f0 15 0  Digital-out   None  Digital 0x18       Unknown 0 DISA
hdaa0: 13 585600f0 15 0  Digital-out   None  Digital 0x18       Unknown 0 DISA
hdaa0: 4 associations found:
hdaa0: Association 0 (15) out:
hdaa0:  Pin nid=3 seq=0
hdaa0: Association 1 (15) out:
hdaa0:  Pin nid=5 seq=0
hdaa0: Association 2 (15) out:
ahcich2: hdaa0:  Pin nid=7 seq=0
hdaa0: Association 3 (15) out:
hdaa0:  Pin nid=9 seq=0
hdaa0: Tracing association 0 (15)
hdaa0:  Pin 3 traced to DAC 2
hdaa0: Association 0 (15) trace succeeded
hdaa0: Tracing association 1 (15)
hdaa0:  Pin 5 traced to DAC 4
hdaa0: Association 1 (15) trace succeeded
hdaa0: Tracing association 2 (15)
hdaa0:  Pin 7 traced to DAC 6
hdaa0: Association 2 (15) trace succeeded
hdaa0: Tracing association 3 (15)
hdaa0:  Pin 9 traced to DAC 8
hdaa0: Association 3 (15) trace succeeded
hdaa0: Looking for additional DAC for association 0 (15)
hdaa0: Looking for additional DAC for association 1 (15)
hdaa0: Looking for additional DAC for association 2 (15)
hdaa0: Looking for additional DAC for association 3 (15)
hdaa0: Tracing input monitor
hdaa0: Tracing other input monitors
hdaa0: Tracing beeper
SATA connect timeout time=10000us status=00000000
hdaa0: ahcich2: AHCI reset: device not found
ahcich3: AHCI reset...
Pin sense: nid=3 sense=0x7fffffff (disconnected, ELD valid)
hdaa0: Pin sense: nid=5 sense=0x7fffffff (disconnected, ELD valid)
hdaa0: Pin sense: nid=7 sense=0x7fffffff (disconnected, ELD valid)
hdaa0: Pin sense: nid=9 sense=0x7fffffff (disconnected, ELD valid)
hdaa0: FG config/quirks: forcestereo ivref50 ivref80 ivref100 ivref
pcm0: &amp;lt;ATI R6xx (HDMI)&amp;gt; at nid 3 on hdaa0
pcm0: Playback:
pcm0:      Stream cap: 0x00000005 AC3 PCM
pcm0:         PCM cap: 0x00020070 16 bits, 32 44 48 KHz
pcm0:             DAC: 2
pcm0:
ahcich3: pcm0:     nid=3 [pin: Digital-out (Jack)]
pcm0:       + &amp;lt;- nid=2 [audio output] [src: pcm]
pcm0:
SATA connect timeout time=10000us status=00000000
pcm0: ahcich3: AHCI reset: device not found
ahcich4: AHCI reset...
Mixer &amp;quot;vol&amp;quot; -&amp;gt; &amp;quot;none&amp;quot;: child=0x00000010
pcm0: Mixer &amp;quot;pcm&amp;quot;: parent=&amp;quot;vol&amp;quot;
pcm0: Soft PCM mixer ENABLED
pcm0: Playback channel set is: Front Left, Front Right,
pcm0: Playback channel matrix is: 2.0 (disconnected)
pcm1: &amp;lt;ATI R6xx (HDMI)&amp;gt; at nid 5 on hdaa0
pcm1: Playback:
ahcich4: pcm1:      Stream cap: 0x00000005SATA connect timeout time=10000us status=00000000
ahcich4: AHCI reset: device not found
ahcich5: AHCI reset...
 AC3 PCM
pcm1:         PCM cap: 0x00020070 16 bits, 32 44 48 KHz
pcm1:             DAC: 4
pcm1:
pcm1:     nid=5 [pin: Digital-out (Jack)]
pcm1:       + &amp;lt;- nid=4 [audio output] [src: pcm]
pcm1:
pcm1: Mixer &amp;quot;vol&amp;quot; -&amp;gt; &amp;quot;none&amp;quot;: child=0x00000010
pcm1: Mixer &amp;quot;pcm&amp;quot;: parent=&amp;quot;vol&amp;quot;
pcm1: Soft PCM mixer ENABLED
ahcich5: SATA connect timeout time=10000us status=00000000
ahcich5: AHCI reset: device not found
pcm1: Playback channel set is: Front Left, Front Right,
pcm1: Playback channel matrix is: 2.0 (disconnected)
pcm2: &amp;lt;ATI R6xx (HDMI)&amp;gt; at nid 7 on hdaa0
pcm2: Playback:
pcm2:      Stream cap: 0x00000005 AC3 PCM
pcm2:         PCM cap: 0x00020070 16 bits, 32 44 48 KHz
pcm2:             DAC: 6
pcm2:
pcm2:     nid=7 [pin: Digital-out (Jack)]
pcm2:       + &amp;lt;- nid=6 [audio output] [src: pcm]
pcm2:
pcm2: Mixer &amp;quot;vol&amp;quot; -&amp;gt; &amp;quot;none&amp;quot;: child=0x00000010
pcm2: Mixer &amp;quot;pcm&amp;quot;: parent=&amp;quot;vol&amp;quot;
pcm2: Soft PCM mixer ENABLED
pcm2: Playback channel set is: Front Left, Front Right,
pcm2: Playback channel matrix is: 2.0 (disconnected)
pcm3: &amp;lt;ATI R6xx (HDMI)&amp;gt; at nid 9 on hdaa0
pcm3: Playback:
pcm3:      Stream cap: 0x00000005 AC3 PCM
pcm3:         PCM cap: 0x00020070 16 bits, 32 44 48 KHz
pcm3:             DAC: 8
pcm3:
pcm3:     nid=9 [pin: Digital-out (Jack)]
pcm3:       + &amp;lt;- nid=8 [audio output] [src: pcm]
pcm3:
pcm3: Mixer &amp;quot;vol&amp;quot; -&amp;gt; &amp;quot;none&amp;quot;: child=0x00000010
pcm3: Mixer &amp;quot;pcm&amp;quot;: parent=&amp;quot;vol&amp;quot;
pcm3: Soft PCM mixer ENABLED
pcm3: Playback channel set is: Front Left, Front Right,
pcm3: Playback channel matrix is: 2.0 (disconnected)
hdacc1: &amp;lt;Realtek ALC887 HDA CODEC&amp;gt; at cad 0 on hdac1
hdaa1: &amp;lt;Realtek ALC887 Audio Function Group&amp;gt; at nid 1 on hdacc1
hdaa1: Subsystem ID: 0x1849288a
hdaa1: NumGPIO=2 NumGPO=0 NumGPI=0 GPIWake=0 GPIUnsol=1
hdaa1:  GPIO0: disabled
hdaa1:  GPIO1: disabled
hdaa1: Original pins configuration:
hdaa1: nid   0x    as seq device       conn  jack    loc        color   misc
hdaa1: 17 40000000 0  0  Line-out      None  Unknown 0x00       Unknown 0
hdaa1: 18 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa1: 20 01014010 1  0  Line-out      Jack  1/8     Rear       Green   0
hdaa1: 21 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa1: 22 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa1: 23 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa1: 24 01a19030 3  0  Mic           Jack  1/8     Rear       Pink    0
hdaa1: 25 02a19040 4  0  Mic           Jack  1/8     Front      Pink    0
hdaa1: 26 0181303f 3  15 Line-in       Jack  1/8     Rear       Blue    0
hdaa1: 27 02214020 2  0  Headphones    Jack  1/8     Front      Green   0
hdaa1: 28 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa1: 29 4026c629 2  9  Headphones    None  Digital 0x00       Res.C   6
hdaa1: 30 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa1: 31 411111f0 15 0  Speaker       None  1/8     Rear       Black   1
hdaa1: Patching widget caps nid=29 0x00400400 -&amp;gt; 0x00700400
hdaa1: Patched pins configuration:
hdaa1: nid   0x    as seq device       conn  jack    loc        color   misc
hdaa1: 17 40000000 0  0  Line-out      None  Unknown 0x00       Unknown 0 DISA
hdaa1: 18 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa1: 20 01014010 1  0  Line-out      Jack  1/8     Rear       Green   0
hdaa1: 21 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa1: 22 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa1: 23 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa1: 24 01a19030 3  0  Mic           Jack  1/8     Rear       Pink    0
hdaa1: 25 02a19040 4  0  Mic           Jack  1/8     Front      Pink    0
hdaa1: 26 0181303f 3  15 Line-in       Jack  1/8     Rear       Blue    0
hdaa1: 27 02214020 2  0  Headphones    Jack  1/8     Front      Green   0
hdaa1: 28 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: 31 411111f0 15 0  Speaker       None  1/8     Rear       Black   1 DISA
hdaa1: 4 associations found:
hdaa1: Association 0 (1) out:
hdaa1:  Pin nid=20 seq=0
hdaa1: Association 1 (2) out:
hdaa1:  Pin nid=27 seq=0
hdaa1: Association 2 (3) in:
hdaa1:  Pin nid=24 seq=0
hdaa1:  Pin nid=26 seq=15
hdaa1: Association 3 (4) in:
hdaa1:  Pin nid=25 seq=0
hdaa1: Tracing association 0 (1)
hdaa1:  Pin 20 traced to DAC 2
hdaa1: Association 0 (1) trace succeeded
hdaa1: Tracing association 1 (2)
hdaa1:  Pin 27 traced to DAC 3
hdaa1: Association 1 (2) trace succeeded
hdaa1: Tracing association 2 (3)
hdaa1:  Pin 24 traced to ADC 8
hdaa1:  Pin 26 traced to ADC 8
hdaa1: Association 2 (3) trace succeeded
hdaa1: Tracing association 3 (4)
hdaa1:  Pin 25 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 nid 34 to out
hdaa1:  Tracing nid 35 to out
hdaa1: Tracing other input monitors
hdaa1:  Tracing nid 24 to out
hdaa1:  Tracing nid 25 to out
hdaa1:  Tracing nid 26 to out
hdaa1: Tracing beeper
hdaa1: FG config/quirks: forcestereo ivref50 ivref80 ivref100 ivref
pcm4: &amp;lt;Realtek ALC887 (Rear Analog)&amp;gt; at nid 20 and 24,26 on hdaa1
pcm4: Playback:
pcm4:      Stream cap: 0x00000001 PCM
pcm4:         PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz
pcm4:             DAC: 2
pcm4:
pcm4:     nid=20 [pin: Line-out (Green Jack)]
pcm4:       + &amp;lt;- nid=12 [audio mixer] [src: pcm, mix]
pcm4:              + &amp;lt;- nid=2 [audio output] [src: pcm]
pcm4:              + &amp;lt;- nid=11 [audio mixer] [src: mix]
pcm4:
pcm4: Record:
pcm4:      Stream cap: 0x00000001 PCM
pcm4:         PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz
pcm4:             ADC: 8
pcm4:
pcm4:     nid=8 [audio input]
pcm4:       + &amp;lt;- nid=35 [audio mixer] [src: speaker, line, mic, mix]
pcm4:              + &amp;lt;- nid=24 [pin: Mic (Pink Jack)] [src: mic]
pcm4:              + &amp;lt;- nid=26 [pin: Line-in (Blue Jack)] [src: line]
pcm4:              + &amp;lt;- nid=29 [beep widget] [src: speaker]
pcm4:              + &amp;lt;- nid=11 [audio mixer] [src: mix]
pcm4:
pcm4: Input Mix:
pcm4:
pcm4:     nid=11 [audio mixer]
pcm4:       + &amp;lt;- nid=24 [pin: Mic (Pink Jack)] [src: mic]
pcm4:       + &amp;lt;- nid=26 [pin: Line-in (Blue Jack)] [src: line]
pcm4:       + &amp;lt;- nid=29 [beep widget] [src: speaker]
pcm4:
pcm4: Master Volume (OSS: vol): -64/0dB
pcm4:    +- ctl  1 (nid   2 out):    -64/0dB (65 steps)
pcm4:    +- ctl 17 (nid  12 in   0): mute
pcm4:    +- ctl 18 (nid  12 in   1): mute
pcm4:    +- ctl 25 (nid  20 in ):    mute
pcm4:
pcm4: PCM Volume (OSS: pcm): -64/0dB
pcm4:    +- ctl  1 (nid   2 out):    -64/0dB (65 steps)
pcm4:    +- ctl 17 (nid  12 in   0): mute
pcm4:
pcm4: Microphone Volume (OSS: mic): 0/30dB
pcm4:    +- ctl  7 (nid  11 in   0): -34/12dB (32 steps) + mute
pcm4:    +- ctl 30 (nid  24 out):    0/30dB (4 steps)
pcm4:    +- ctl 49 (nid  35 in   0): mute
pcm4:
pcm4: Line-in Volume (OSS: line): 0/30dB
pcm4:    +- ctl  9 (nid  11 in   2): -34/12dB (32 steps) + mute
pcm4:    +- ctl 34 (nid  26 out):    0/30dB (4 steps)
pcm4:    +- ctl 51 (nid  35 in   2): mute
pcm4:
pcm4: Speaker/Beep Volume (OSS: speaker): -34/12dB
pcm4:    +- ctl 12 (nid  11 in   5): -34/12dB (32 steps) + mute
pcm4:    +- ctl 54 (nid  35 in   5): mute
pcm4:
pcm4: Recording Level (OSS: rec): -16/30dB
pcm4:    +- ctl  5 (nid   8 in   0): -16/30dB (47 steps) + mute
pcm4:    +- ctl 49 (nid  35 in   0): mute
pcm4:    +- ctl 51 (nid  35 in   2): mute
pcm4:    +- ctl 54 (nid  35 in   5): mute
pcm4:    +- ctl 59 (nid  35 in  10): mute
pcm4:
pcm4: Input Mix Level (OSS: mix): -34/12dB
pcm4:    +- ctl  7 (nid  11 in   0): -34/12dB (32 steps) + mute
pcm4:    +- ctl  9 (nid  11 in   2): -34/12dB (32 steps) + mute
pcm4:    +- ctl 12 (nid  11 in   5): -34/12dB (32 steps) + mute
pcm4:    +- ctl 18 (nid  12 in   1): mute
pcm4:    +- ctl 59 (nid  35 in  10): mute
pcm4:
pcm4: Input Monitoring Level (OSS: igain): 0/0dB
pcm4:    +- ctl 18 (nid  12 in   1): mute
pcm4:
pcm4: Mixer &amp;quot;vol&amp;quot;:
pcm4: Mixer &amp;quot;pcm&amp;quot;:
pcm4: Mixer &amp;quot;speaker&amp;quot;:
pcm4: Mixer &amp;quot;line&amp;quot;:
pcm4: Mixer &amp;quot;mic&amp;quot;:
pcm4: Mixer &amp;quot;mix&amp;quot;:
pcm4: Mixer &amp;quot;rec&amp;quot;:
pcm4: Mixer &amp;quot;igain&amp;quot;:
pcm4: Mixer &amp;quot;ogain&amp;quot;:
pcm4: Playback channel set is: Front Left, Front Right,
pcm4: Playback channel matrix is: 2.0 (disconnected)
pcm4: Recording channel set is: Front Left, Front Right,
pcm4: Recording channel matrix is: 2.0 (disconnected)
pcm5: &amp;lt;Realtek ALC887 (Front Analog)&amp;gt; at nid 27 and 25 on hdaa1
pcm5: Playback:
pcm5:      Stream cap: 0x00000001 PCM
pcm5:         PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz
pcm5:             DAC: 3
pcm5:
pcm5:     nid=27 [pin: Headphones (Green Jack)]
pcm5:       + &amp;lt;- nid=13 [audio mixer] [src: pcm, mix]
pcm5:              + &amp;lt;- nid=3 [audio output] [src: pcm]
pcm5:              + &amp;lt;- nid=11 [audio mixer] [src: mix]
pcm5:
pcm5: Record:
pcm5:      Stream cap: 0x00000001 PCM
pcm5:         PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz
pcm5:             ADC: 9
pcm5:
pcm5:     nid=9 [audio input]
pcm5:       + &amp;lt;- nid=34 [audio mixer] [src: speaker, monitor]
pcm5:              + &amp;lt;- nid=25 [pin: Mic (Pink Jack)] [src: monitor]
pcm5:              + &amp;lt;- nid=29 [beep widget] [src: speaker]
pcm5:
pcm5: Master Volume (OSS: vol): -64/0dB
pcm5:    +- ctl  2 (nid   3 out):    -64/0dB (65 steps)
pcm5:    +- ctl 19 (nid  13 in   0): mute
pcm5:    +- ctl 20 (nid  13 in   1): mute
pcm5:    +- ctl 35 (nid  27 in ):    mute
pcm5:
pcm5: PCM Volume (OSS: pcm): -64/0dB
pcm5:    +- ctl  2 (nid   3 out):    -64/0dB (65 steps)
pcm5:    +- ctl 19 (nid  13 in   0): mute
pcm5:
pcm5: Microphone2 Volume (OSS: monitor): 0/30dB
pcm5:    +- ctl 32 (nid  25 out):    0/30dB (4 steps)
pcm5:    +- ctl 38 (nid  34 in   1): mute
pcm5:
pcm5: Speaker/Beep Volume (OSS: speaker)
pcm5:    +- ctl 42 (nid  34 in   5): mute
pcm5:
pcm5: Recording Level (OSS: rec): -16/30dB
pcm5:    +- ctl  6 (nid   9 in   0): -16/30dB (47 steps) + mute
pcm5:    +- ctl 32 (nid  25 out):    0/30dB (4 steps)
pcm5:    +- ctl 38 (nid  34 in   1): mute
pcm5:    +- ctl 42 (nid  34 in   5): mute
pcm5:
pcm5: Input Mix Level (OSS: mix)
pcm5:    +- ctl 20 (nid  13 in   1): mute
pcm5:
pcm5: Input Monitoring Level (OSS: igain): 0/0dB
pcm5:    +- ctl 20 (nid  13 in   1): mute
pcm5:
pcm5: Mixer &amp;quot;vol&amp;quot;:
pcm5: Mixer &amp;quot;pcm&amp;quot;:
pcm5: Mixer &amp;quot;rec&amp;quot;:
pcm5: Mixer &amp;quot;igain&amp;quot;:
pcm5: Mixer &amp;quot;ogain&amp;quot;:
pcm5: Mixer &amp;quot;monitor&amp;quot;:
pcm5: Playback channel set is: Front Left, Front Right,
pcm5: Playback channel matrix is: 2.0 (disconnected)
pcm5: Recording channel set is: Front Left, Front Right,
pcm5: Recording channel matrix is: 2.0 (disconnected)
ahcich0: AHCI reset: device ready after 100ms
ugen2.1: &amp;lt;0x1022 XHCI root HUB&amp;gt; at usbus2
ugen1.1: &amp;lt;0x1022 XHCI root HUB&amp;gt; at usbus1
ugen0.1: &amp;lt;0x1022 XHCI root HUB&amp;gt; at usbus0
ahcich1: uhub0: &amp;lt;0x1022 XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1&amp;gt; on usbus1
AHCI reset: device ready after 100ms
uhub1: &amp;lt;0x1022 XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1&amp;gt; on usbus2
uhub2: &amp;lt;0x1022 XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1&amp;gt; on usbus0
GEOM: new disk ada0
ada0 at ahcich0 bus 0 scbus0 target 0 lun 0
ada0: &amp;lt;CHN 25SATA01M 030 P0921A&amp;gt; ACS-2 ATA SATA 3.x device
ada0: Serial Number A130CI02070114
ada0: 600.000MB/s transfers (SATA 3.x, UDMA6, PIO 512bytes)
ada0: Command Queueing enabled
ada0: 28626MB (58626288 512 byte sectors)
ada1 at ahcich1 bus 0 scbus1 target 0 lun 0
ada1: &amp;lt;ST2000DM001-1CH164 CC29&amp;gt; ACS-2 ATA SATA 3.x device
ada1: Serial Number W1E37816
ada1: 600.000MB/s transfers (SATA 3.x, UDMA6, PIO 8192bytes)
ada1: Command Queueing enabled
ada1: 1907729MB (3907029168 512 byte sectors)
ada1: quirks=0x1&amp;lt;4K&amp;gt;
GEOM: new disk ada1
pass0 at ahcich0 bus 0 scbus0 target 0 lun 0
pass0: &amp;lt;CHN 25SATA01M 030 P0921A&amp;gt; ACS-2 ATA SATA 3.x device
pass0: Serial Number A130CI02070114
pass0: 600.000MB/s transfers (SATA 3.x, UDMA6, PIO 512bytes)
pass0: Command Queueing enabled
pass1 at ahcich1 bus 0 scbus1 target 0 lun 0
pass1: &amp;lt;ST2000DM001-1CH164 CC29&amp;gt; ACS-2 ATA SATA 3.x device
pass1: Serial Number W1E37816
pass1: 600.000MB/s transfers (SATA 3.x, UDMA6, PIO 8192bytes)
pass1: Command Queueing enabled
Trying to mount root from zfs:zroot/ROOT/default []...
GEOM: ada1: the primary GPT table is corrupt or invalid.
GEOM: ada1: using the secondary instead -- recovery strongly advised.
Root mount waiting for: usbus2 usbus1 usbus0
uhub0: 6 ports with 6 removable, self powered
uhub1: 6 ports with 6 removable, self powered
uhub2: 14 ports with 14 removable, self powered
ugen1.2: &amp;lt;vendor 0x04f3 OM&amp;gt; at usbus1
Root mount waiting for: usbus1 usbus0
ugen0.2: &amp;lt;ASRock LED Controller&amp;gt; at usbus0
ugen1.3: &amp;lt;Chicony Generic USB Hub&amp;gt; at usbus1
uhub3 on uhub0
uhub3: &amp;lt;Chicony Generic USB Hub, class 9/0, rev 1.10/1.00, addr 2&amp;gt; on usbus1
uhub3: 3 ports with 2 removable, bus powered
ugen0.3: &amp;lt;vendor 0x8087 product 0x0aa7&amp;gt; at usbus0
ugen1.4: &amp;lt;Chicony PFU-65 USB Keyboard&amp;gt; at usbus1
ukbd0 on uhub3
ukbd0: &amp;lt;Chicony PFU-65 USB Keyboard, class 0/0, rev 1.10/1.00, addr 3&amp;gt; on usbus1
kbd2 at ukbd0
kbd2: ukbd0, generic (0), config:0x0, flags:0x3d0000
efirtc0: providing initial system time
start_init: trying /sbin/init
lo0: link state changed to UP
re0: link state changed to DOWN
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
ixgbe_if_media_status: begin
pci0: driver added
found-&amp;gt;	vendor=0x1022, dev=0x790b, revid=0x51
	domain=0, bus=0, slot=20, func=0
	class=0c-05-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0403, statreg=0x0220, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
pci0:0:20:0: reprobing on driver added
pci1: driver added
pci2: driver added
pci3: driver added
pci4: driver added
pci5: driver added
found-&amp;gt;	vendor=0x8086, dev=0x24fb, revid=0x10
	domain=0, bus=6, slot=0, func=0
	class=02-80-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0002, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
pci0:6:0:0: reprobing on driver added
iwm0: &amp;lt;Intel(R) Dual Band Wireless AC 3168&amp;gt; mem 0xfcd00000-0xfcd01fff at device 0.0 on pci5
iwm0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 284 to local APIC 4 vector 49
iwm0: using IRQ 284 for MSI
firmware: &amp;#039;iwm3168fw&amp;#039; version 0: 1028032 bytes loaded at 0xffffffff83410000
iwm0: hw rev 0x220, fw ver 22.361476.0, address c8:58:c0:b3:1b:36
iwm0: 11a rates: 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps
iwm0: 11b rates: 1Mbps 2Mbps 5.5Mbps 11Mbps
iwm0: 11g rates: 1Mbps 2Mbps 5.5Mbps 11Mbps 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps
pci6: driver added
pci7: driver added
pci8: driver added
pci9: driver added
pci10: driver added
pci11: driver added
pci12: driver added
found-&amp;gt;	vendor=0x1022, dev=0x15df, revid=0x00
	domain=0, bus=13, slot=0, func=2
	class=10-80-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0002, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 2 messages, 64 bit
	MSI-X supports 2 messages in map 0x24
pci0:13:0:2: reprobing on driver added
pci0: driver added
found-&amp;gt;	vendor=0x1022, dev=0x790b, revid=0x51
	domain=0, bus=0, slot=20, func=0
	class=0c-05-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0403, statreg=0x0220, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
pci0:0:20:0: reprobing on driver added
intsmb0: &amp;lt;AMD FCH SMBus Controller&amp;gt; at device 20.0 on pci0
pcib0: allocated type 4 (0xcd6-0xcd7) for rid 0 of intsmb0
pcib0: allocated type 4 (0xb00-0xb0f) for rid 0 of intsmb0
smbus0: &amp;lt;System Management Bus&amp;gt; on intsmb0
pci1: driver added
pci2: driver added
pci3: driver added
pci4: driver added
pci5: driver added
pci6: driver added
pci7: driver added
pci8: driver added
pci9: driver added
pci10: driver added
pci11: driver added
pci12: driver added
found-&amp;gt;	vendor=0x1022, dev=0x15df, revid=0x00
	domain=0, bus=13, slot=0, func=2
	class=10-80-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0002, statreg=0x0010, cachelnsz=16 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=255
	powerspec 3  supports D0 D3  current D0
	MSI supports 2 messages, 64 bit
	MSI-X supports 2 messages in map 0x24
pci0:13:0:2: reprobing on driver added
ums0 on uhub0
ums0: &amp;lt;vendor 0x04f3 OM, class 0/0, rev 1.10/24.58, addr 1&amp;gt; on usbus1
ums0: 3 buttons and [XYZ] coordinates ID=0
uhid0 on uhub2
uhid0: &amp;lt;ASRock LED Controller, class 0/0, rev 1.10/0.00, addr 1&amp;gt; on usbus0
ubt0 on uhub2
ubt0: &amp;lt;vendor 0x8087 product 0x0aa7, class 224/1, rev 2.00/0.01, addr 2&amp;gt; on usbus0
WARNING: attempt to domain_add(bluetooth) after domainfinalize()
WARNING: attempt to domain_add(netgraph) after domainfinalize()&lt;/pre&gt;
&lt;/dd&gt;&lt;/dl&gt;
&lt;dl class=&quot;code&quot;&gt;
&lt;dt&gt;&lt;a href=&quot;http://www.seirios.org/seirios/dokuwiki/doku.php?do=export_code&amp;amp;id=os:freebsd:intel82599&amp;amp;codeblock=8&quot; title=&quot;この部分をダウンロード&quot; class=&quot;mediafile mf_&quot;&gt;messages&lt;/a&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;pre class=&quot;code&quot;&gt;Aug 20 00:31:53 subamd kernel: ixgbe_if_init: begin
Aug 20 00:31:53 subamd kernel: ixgbe_if_multi_set: begin
Aug 20 00:31:53 subamd kernel: pcib1: allocated prefetch range (0xe0300000-0xe030ffff) for rid 184 of ix1
Aug 20 00:31:53 subamd kernel: ix1: Lazy allocation of 0x10000 bytes rid 0x184 type 3 at 0xe0300000
Aug 20 00:31:53 subamd kernel: pcib1: allocated prefetch range (0xe0310000-0xe031ffff) for rid 190 of ix1
Aug 20 00:31:53 subamd kernel: ix1: Lazy allocation of 0x10000 bytes rid 0x190 type 3 at 0xe0310000
Aug 20 00:31:54 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 20 00:31:54 subamd kernel: 	domain=0, bus=1, slot=0, func=129
Aug 20 00:31:54 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 20 00:31:54 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 20 00:31:54 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 20 00:31:54 subamd kernel: 	intpin=_, irq=255
Aug 20 00:31:54 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 20 00:31:54 subamd kernel: 	domain=0, bus=1, slot=0, func=131
Aug 20 00:31:54 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 20 00:31:54 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 20 00:31:54 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 20 00:31:54 subamd kernel: 	intpin=_, irq=255
Aug 20 00:31:54 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 20 00:31:54 subamd kernel: 	domain=0, bus=1, slot=0, func=133
Aug 20 00:31:54 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 20 00:31:54 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 20 00:31:54 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 20 00:31:54 subamd kernel: 	intpin=_, irq=255
Aug 20 00:31:54 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 20 00:31:54 subamd kernel: 	domain=0, bus=1, slot=0, func=135
Aug 20 00:31:54 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 20 00:31:54 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 20 00:31:54 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 20 00:31:54 subamd kernel: 	intpin=_, irq=255
Aug 20 00:31:54 subamd kernel: pci1: &amp;lt;unknown&amp;gt; at device 0.129 (no driver attached)
Aug 20 00:31:54 subamd kernel: ixv0: &amp;lt;Intel(R) PRO/10GbE Virtual Function Network Driver&amp;gt; at device 0.131 on pci1
Aug 20 00:31:54 subamd kernel: ixv_attach: begin
Aug 20 00:31:54 subamd kernel: DEBUG: ixgbe_reset_hw_vf: timeout
Aug 20 00:31:54 subamd kernel: ixv0: ...reset_hw() failure: Reset Failed!
Aug 20 00:31:54 subamd kernel: ixv0: IFDI_ATTACH_PRE failed 5
Aug 20 00:31:54 subamd kernel: device_attach: ixv0 attach returned 5
Aug 20 00:31:54 subamd kernel: ixv0: &amp;lt;Intel(R) PRO/10GbE Virtual Function Network Driver&amp;gt; at device 0.133 on pci1
Aug 20 00:31:54 subamd kernel: ixv_attach: begin
Aug 20 00:31:54 subamd kernel: DEBUG: ixgbe_reset_hw_vf: timeout
Aug 20 00:31:54 subamd kernel: ixv0: ...reset_hw() failure: Reset Failed!
Aug 20 00:31:54 subamd kernel: ixv0: IFDI_ATTACH_PRE failed 5
Aug 20 00:31:54 subamd kernel: device_attach: ixv0 attach returned 5
Aug 20 00:31:54 subamd kernel: pci1: &amp;lt;unknown&amp;gt; at device 0.135 (no driver attached)
Aug 20 00:32:05 subamd kernel: ixgbe_if_media_status: begin
Aug 20 00:32:05 subamd syslogd: last message repeated 5 times
Aug 20 00:32:17 subamd seirios[1315]: ==iovctl -D==
Aug 20 00:32:25 subamd seirios[1317]: ==iovctl -C==
Aug 20 00:32:33 subamd kernel: ixgbe_if_media_status: begin
Aug 20 00:32:33 subamd syslogd: last message repeated 5 times
Aug 20 00:32:42 subamd kernel: ixgbe_if_init: begin
Aug 20 00:32:42 subamd kernel: ixgbe_if_multi_set: begin
Aug 20 00:32:42 subamd kernel: pcib1: allocated prefetch range (0xe0300000-0xe030ffff) for rid 184 of ix1
Aug 20 00:32:42 subamd kernel: ix1: Lazy allocation of 0x10000 bytes rid 0x184 type 3 at 0xe0300000
Aug 20 00:32:42 subamd kernel: pcib1: allocated prefetch range (0xe0310000-0xe031ffff) for rid 190 of ix1
Aug 20 00:32:42 subamd kernel: ix1: Lazy allocation of 0x10000 bytes rid 0x190 type 3 at 0xe0310000
Aug 20 00:32:43 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 20 00:32:43 subamd kernel: 	domain=0, bus=1, slot=0, func=129
Aug 20 00:32:43 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 20 00:32:43 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 20 00:32:43 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 20 00:32:43 subamd kernel: 	intpin=_, irq=255
Aug 20 00:32:43 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 20 00:32:43 subamd kernel: 	domain=0, bus=1, slot=0, func=131
Aug 20 00:32:43 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 20 00:32:43 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 20 00:32:43 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 20 00:32:43 subamd kernel: 	intpin=_, irq=255
Aug 20 00:32:43 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 20 00:32:43 subamd kernel: 	domain=0, bus=1, slot=0, func=133
Aug 20 00:32:43 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 20 00:32:43 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 20 00:32:43 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 20 00:32:43 subamd kernel: 	intpin=_, irq=255
Aug 20 00:32:43 subamd kernel: found-&amp;gt;	vendor=0x8086, dev=0x10ed, revid=0xff
Aug 20 00:32:43 subamd kernel: 	domain=0, bus=1, slot=0, func=135
Aug 20 00:32:43 subamd kernel: 	class=ff-ff-ff, hdrtype=0x7f, mfdev=1
Aug 20 00:32:43 subamd kernel: 	cmdreg=0xffff, statreg=0xffff, cachelnsz=255 (dwords)
Aug 20 00:32:43 subamd kernel: 	lattimer=0xff (7650 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
Aug 20 00:32:43 subamd kernel: 	intpin=_, irq=255
Aug 20 00:32:43 subamd kernel: pci1: &amp;lt;unknown&amp;gt; at device 0.129 (no driver attached)
Aug 20 00:32:43 subamd kernel: ixv0: &amp;lt;Intel(R) PRO/10GbE Virtual Function Network Driver&amp;gt; at device 0.131 on pci1
Aug 20 00:32:43 subamd kernel: ixv_attach: begin
Aug 20 00:32:43 subamd kernel: DEBUG: ixgbe_reset_hw_vf: timeout
Aug 20 00:32:43 subamd kernel: ixv0: ...reset_hw() failure: Reset Failed!
Aug 20 00:32:43 subamd kernel: ixv0: IFDI_ATTACH_PRE failed 5
Aug 20 00:32:43 subamd kernel: device_attach: ixv0 attach returned 5
Aug 20 00:32:43 subamd kernel: ixv0: &amp;lt;Intel(R) PRO/10GbE Virtual Function Network Driver&amp;gt; at device 0.133 on pci1
Aug 20 00:32:43 subamd kernel: ixv_attach: begin
Aug 20 00:32:43 subamd kernel: DEBUG: ixgbe_reset_hw_vf: timeout
Aug 20 00:32:43 subamd kernel: ixv0: ...reset_hw() failure: Reset Failed!
Aug 20 00:32:43 subamd kernel: ixv0: IFDI_ATTACH_PRE failed 5
Aug 20 00:32:43 subamd kernel: device_attach: ixv0 attach returned 5
Aug 20 00:32:43 subamd kernel: pci1: &amp;lt;unknown&amp;gt; at device 0.135 (no driver attached)
Aug 20 00:32:46 subamd kernel: ixgbe_if_media_status: begin&lt;/pre&gt;
&lt;/dd&gt;&lt;/dl&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;\/boot\/kernel\u4ee5\u4e0b\u5168\u90e8\u7f6e\u304d\u63db\u3048\u305f&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;boot_kernel\u4ee5\u4e0b\u5168\u90e8\u7f6e\u304d\u63db\u3048\u305f&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:7,&amp;quot;secid&amp;quot;:9,&amp;quot;range&amp;quot;:&amp;quot;308401-410195&amp;quot;} --&gt;
&lt;h2 class=&quot;sectionedit10&quot; id=&quot;とりあえずのまとめ&quot;&gt;とりあえずのまとめ&lt;/h2&gt;
&lt;div class=&quot;level2&quot;&gt;

&lt;p&gt;
現時点では、Intel X520(82599搭載のNIC)に関して、FreeBSD 12.1-RELEASEでSR-IOVが正しく動作していない模様。
&lt;/p&gt;
&lt;ul&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; SR-IOVに関する初期化時にTimeout &lt;code&gt;subamd kernel: DEBUG: ixgbe_reset_hw_vf: timeout&lt;/code&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; ixv?が作成されない&lt;/div&gt;
&lt;/li&gt;
&lt;li class=&quot;level1&quot;&gt;&lt;div class=&quot;li&quot;&gt; ix自体は動作しているように見える&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;
と言う状態であることがわかった。したがって。SR-IOVを利用したNICの多重化に関しては、現時点では、XCP-ngを利用してXCP-ng側でやってみるしか手がない。
&lt;/p&gt;

&lt;/div&gt;
&lt;!-- EDIT{&amp;quot;target&amp;quot;:&amp;quot;section&amp;quot;,&amp;quot;name&amp;quot;:&amp;quot;\u3068\u308a\u3042\u3048\u305a\u306e\u307e\u3068\u3081&amp;quot;,&amp;quot;hid&amp;quot;:&amp;quot;\u3068\u308a\u3042\u3048\u305a\u306e\u307e\u3068\u3081&amp;quot;,&amp;quot;codeblockOffset&amp;quot;:9,&amp;quot;secid&amp;quot;:10,&amp;quot;range&amp;quot;:&amp;quot;410196-&amp;quot;} --&gt;</description>
            <author>seirios@undisclosed.example.com (seirios)</author>
            <pubDate>Fri, 21 Aug 2020 09:18:31 +0000</pubDate>
        </item>
    </channel>
</rss>
