転載・引用について

ユーザ用ツール

サイト用ツール


tech:benchmark:ms-01

差分

このページの2つのバージョン間の差分を表示します。

この比較画面へのリンク

両方とも前のリビジョン前のリビジョン
次のリビジョン
前のリビジョン
tech:benchmark:ms-01 [2024/05/15 01:44] – [テーブル] seiriostech:benchmark:ms-01 [2024/06/01 03:21] (現在) – [FreeBSD sysctl Tunables (All cores)] seirios
行 206: 行 206:
   * HyperThreadingはOnのまま実行する   * HyperThreadingはOnのまま実行する
  
 +=== 試験手順 ===
 試験は以下のようにして実施する 試験は以下のようにして実施する
   * 以下のscriptを作成   * 以下のscriptを作成
     * <code bash buildtest.sh>     * <code bash buildtest.sh>
 +#!/bin/sh
 +
 +NCPU=`sysctl -n hw.ncpu`
 +
 +echo Build >> _buildlog
 +date "+%Y-%m-%d %H:%M:%S" >> _buildlog
 MAKEOBJDIRPREFIX=/tmp/obj DESTDIR=/tmp/release time make buildworld 2>&1 | tee _World.log MAKEOBJDIRPREFIX=/tmp/obj DESTDIR=/tmp/release time make buildworld 2>&1 | tee _World.log
 +echo Build done >> _buildlog
 +date "+%Y-%m-%d %H:%M:%S" >> _buildlog
 +
 +rm -rf /tmp/obj
 +sleep 30
 +
 +echo Kern >> _buildlog
 +date "+%Y-%m-%d %H:%M:%S" >> _buildlog
 MAKEOBJDIRPREFIX=/tmp/obj DESTDIR=/tmp/release time make buildkernel 2>&1 | tee _Kern.log MAKEOBJDIRPREFIX=/tmp/obj DESTDIR=/tmp/release time make buildkernel 2>&1 | tee _Kern.log
 +echo Kern done >> _buildlog
 +date "+%Y-%m-%d %H:%M:%S" >> _buildlog
 +
 +rm -rf /tmp/obj
 +sleep 30
 +
 +echo Build $NCPU >> _buildlog
 +date "+%Y-%m-%d %H:%M:%S" >> _buildlog
 +MAKEOBJDIRPREFIX=/tmp/obj DESTDIR=/tmp/release time make -j $NCPU buildworld 2>&1 | tee _World${NCPU}.log
 +echo Build $NCPU done >> _buildlog
 +date "+%Y-%m-%d %H:%M:%S" >> _buildlog
 +
 +rm -rf /tmp/obj
 +sleep 30
 +
 +echo Kern $NCPU >> _buildlog
 +date "+%Y-%m-%d %H:%M:%S" >> _buildlog
 +MAKEOBJDIRPREFIX=/tmp/obj DESTDIR=/tmp/release time make -j $NCPU buildkernel 2>&1 | tee _Kern${NCPU}.log
 +echo Kern $NCPU done >> _buildlog
 +date "+%Y-%m-%d %H:%M:%S" >> _buildlog
 </code> </code>
-    <code bash buildtest2.sh> +  * 上記scriptを実行する
-NCPU=`sysctl -n hw.ncpu` +
-MAKEOBJDIRPREFIX=/tmp/obj DESTDIR=/tmp/release time make -j $NCPU buildworld 2>&1 | tee _World.log +
-MAKEOBJDIRPREFIX=/tmp/obj DESTDIR=/tmp/release time make -j $NCPU buildkernel 2>&1 | tee _Kern.log +
-</code> +
-  * timeコマンドを利用し、上記scriptを実行する+
   * 出力された時間を比較する   * 出力された時間を比較する
 +
 +  * 消費電力測定にはRATOK RS-BTWATTCH2を用い、Realtime計測を利用して消費電力を測定した
 +    * 消費電力測定において、消費電力量1W未満は参考値
 +    * Realtime計測は1秒単位で計測する
 +  * データ解析は、RS-BTWATTCH2で取得したRealtime計測値をCSVで出力し、CSVデータの正規化を行なった上で、Rでグラフ化する
 +    * R scriptと処理用shell scriptは以下の通り
 +    * <code bash normalize.sh>
 +#!/bin/sh
 +##########
 +#
 +# Normalize Ratok BT WattCH2 CSV Data
 +#
 +##########
 +# Format
 +# 1st line: Index
 +# Realtime Data
 +# 年/月/日,時:分:秒,消費電力(W),電圧(V),電流(mA)
 +# 2024/05/04,20:12:45,23.100,101.393,241.142
 +# yy/mm/dd,hh:mm:ss,Power Consumprion(W), Voltage(V), electric current(A)
 +
 +#-- Usage
 +Usage() {
 +  echo "$0 infile"
 +}
 +
 +#-- Main
 +[ $# -ne 1 ] && Usage && exit 0
 +
 +echo "Date,Time,Watt"
 +cat ${1} | \
 +awk 'FS=","{print $1,",",$2,",",$3}' | \
 +sed '1d'
 +</code>
 +    * <code R grapher.R>
 +args1 = commandArgs(trailingOnly=TRUE)[1]
 +IFN=paste(args1,".csv",sep="")
 +OFN=paste(args1,".png",sep="")
 +RT <- read.csv(IFN, header = TRUE)
 +ts <- as.POSIXct(paste(RT$Date, RT$Time))
 +pwmin <- min(RT$Watt)
 +pwmax <- max(RT$Watt)
 +COMMENT=paste("Max:", pwmax," ,Min:", pwmin, "W")
 +png(OFN, width = 800, height = 400)
 +plot(ts,RT$Watt,type='l',ylim=c(0,150),xlab="time",ylab="Power(W)")
 +mtext(COMMENT, side=3, line=0)
 +dev.off()
 +</code>
 +    * 上記scriptを利用して、以下の手順でgraph化する
 +    * <code bash>
 +for i in *csv; do
 +echo ${i%%.csv}
 +  /bin/sh normalize.sh ${i} > ${i%%.csv}.tmp
 +  mv ${i%%.csv}.tmp ${i}
 +  /usr/local/bin/Rscript grapher.R ${i%%.csv}
 +done
 +</code>
 +
 +=== 試験データ CPU ===
  
 ^  ~~=label(build)~~\\ 表1: Build試験\\ 項目  ^  t1 : P cores only (6C/12T)                                                                                                                                                                                                   |||||^  t2 : All cores (14C/20T)                                                                                                                                                                                                        |||||| ^  ~~=label(build)~~\\ 表1: Build試験\\ 項目  ^  t1 : P cores only (6C/12T)                                                                                                                                                                                                   |||||^  t2 : All cores (14C/20T)                                                                                                                                                                                                        ||||||
行 230: 行 318:
 ^ Time                                        |  Start: 2024-05-14 21:16:06\\ End: 2024-05-14 21:33:41                                                        |||  Start: 2024-05-14 22:24:54\\ End: 2024-05-14 22:27:39                                                         |||  Start: 2024-05-15 00:00:17\\ End: 2024-05-15 00:26:06                                                        |||  Start: 2024-05-15 01:07:40\\ End: 2024-05-15 01:09:49                                                            ||| ^ Time                                        |  Start: 2024-05-14 21:16:06\\ End: 2024-05-14 21:33:41                                                        |||  Start: 2024-05-14 22:24:54\\ End: 2024-05-14 22:27:39                                                         |||  Start: 2024-05-15 00:00:17\\ End: 2024-05-15 00:26:06                                                        |||  Start: 2024-05-15 01:07:40\\ End: 2024-05-15 01:09:49                                                            |||
 ^ 計                                          | ~~=round(r3c1+r6c1, 2)~~                                | ~~=round(r3c2+r6c2, 2)~~  | ~~=round(r3c3+r6c3, 2)~~  | ~~=round(r3c4+r6c4, 2)~~                                 | ~~=round(r3c5+r6c5, 2)~~  | ~~=round(r3c6+r6c6, 2)~~  | ~~=round(r3c7+r6c7, 2)~~                                | ~~=round(r3c8+r6c8, 2)~~  | ~~=round(r3c9+r6c9, 2)~~  | ~~=round(r3c10+r6c10, 2)~~                              | ~~=round(r3c11+r6c11, 2)~~  | ~~=round(r3c12+r6c12, 2)~~  | ^ 計                                          | ~~=round(r3c1+r6c1, 2)~~                                | ~~=round(r3c2+r6c2, 2)~~  | ~~=round(r3c3+r6c3, 2)~~  | ~~=round(r3c4+r6c4, 2)~~                                 | ~~=round(r3c5+r6c5, 2)~~  | ~~=round(r3c6+r6c6, 2)~~  | ~~=round(r3c7+r6c7, 2)~~                                | ~~=round(r3c8+r6c8, 2)~~  | ~~=round(r3c9+r6c9, 2)~~  | ~~=round(r3c10+r6c10, 2)~~                              | ~~=round(r3c11+r6c11, 2)~~  | ~~=round(r3c12+r6c12, 2)~~  |
-^                          (user+system)/real |  ~~=round( ((r9c2+r9c3)/r9c1), )~~                                                                          |||  ~~=round( ((r9c5+r9c6)/r9c4), )~~                                                                           |||  ~~=round( ((r9c8+r9c9)/r9c7), )~~                                                                          |||  ~~=round( ((r9c11+r9c12)/r9c10), )~~                                                                           |||+^                          (user+system)/real |  ~~=round( ((r9c2+r9c3)/r9c1), )~~                                                                          |||  ~~=round( ((r9c5+r9c6)/r9c4), )~~                                                                           |||  ~~=round( ((r9c8+r9c9)/r9c7), )~~                                                                          |||  ~~=round( ((r9c11+r9c12)/r9c10), )~~                                                                           |||
  
 +<WRAP group>
 +<WRAP half left column>
 +  * t1 : P-cores Only
 +    * 11.64 / 12 = 97.0% buildworld
 +    * 11.42 / 12 = 95.2% buildkernel
 +    * 11.63 / 12 = 96.9% total
 +</WRAP>
 +<WRAP half left column>
 +  * t2 : All cores
 +    * 18.55 / 20 = 92.8% buildworld
 +    * 18.22 / 20 = 91.1% buildkernel
 +    * 18.54 / 20 = 92.7% total
 +</WRAP>
 +</WRAP>
 +
 +=== 試験データ 電源 ===
 +
 +  * 電力測定には、RATOK RS-BTWATTCH2 を使用し、Realtime計測データを取得した
 +    * グラフ作成には、Rを用いた。
   * 標準状態(特に何も動いていない状態)での消費電力は20-26W程度   * 標準状態(特に何も動いていない状態)での消費電力は20-26W程度
-  Build実行時の消費電力は、80-110W程度+ 
 +  t1 電力消費量グラフ 
 +    * {{:tech:benchmark:ms-01:wtchk-2.png|t1 電力消費量}} 
 +  * t2 電力消費量グラフ 
 +    * {{:tech:benchmark:ms-01:wtchk-1.png|t2 電力消費量}} 
 +  * 元データ 
 +    * {{ :tech:benchmark:ms-01:t1powerconsumption.csv |t1 消費電力データ}} 
 +    * {{ :tech:benchmark:ms-01:t1powerconsumption.csv |t2 消費電力データ}}
  
 ==== Network試験 ==== ==== Network試験 ====
行 265: 行 379:
 ==== FreeBSD Build試験 ==== ==== FreeBSD Build試験 ====
  
-==== 単体試験 ====+==== Network試験 ==== 
 + 
 +=== 単体試験 === 
 + 
 +=== 対向試験 === 
 + 
 +=== Router試験 === 
 + 
 +==== 結論 ==== 
 +本試験の結果の範囲でMS-01を評価する。 
 + 
 +MS-01は、いわゆるMobile端末用に開発されたCPUを搭載した、小型でありながら10Gbps I/Fを2個、2,5Gbps I/Fを2個持つ比較的安価な小型ワークステーションPCである。性能面から判断するに、2024年現在における一般的なユーザー用途での利用や、通常の開発に利用する端末としては、問題がないと考えられる。
  
-==== 対向試験 ====+その上で、本機器の特徴であるNICを4ポート持つ機器として考えると、以下の用途が考えられる。 
 +  * Routerを含むNetwork機器 
 +  * 仮想環境用Server 
 +  * PCI slotにHBAやRAIDカードを投入の上、外部Storageを接続したNAS
  
-==== Router試験 ====+  * CPU性能の問題で、64 Byteパケットを大量に処理しなければならないようなRouterとしては厳しい 
 +  * FreeBSDを利用する場合、おそらくnetinet系の実装上の問題で、Routerとしての転送能力は高くない 
 +    * PPSが低い 
 +  * 平均パケットサイズが256bytes以上の通信ならば、10Gbpsの処理を行えることから平均パケットサイズが384Bytesを超えるならば、25Gbpsの処理は行えると考えられる 
 +    * ただし、この辺は、通信試験結果と合わせて再考する必要がある(データ整理が必要。TBD) 
 +    * 特にX710のMulti Queueを使える場合と使えない場合で性能に差が出る(割り当てられるCPU coreが偏るから)点に注意 
 +  * 同時に複数のプロセスを並行で動作させるならば、P-core/E-core両方を利用する方が良い。 
 +  * Single Processで頑張るならば、E-coreはOffにした方が良い 
 +  * Hypervisorを動作させる(XCP-ng/KVM/Bhyveなど)ならば、限界(64GBytes)までメモリーを搭載した上で、VMの用途などに応じてCPU設定を変更すべき 
 +    * あまり性能がいらないサーバーをたくさん建てるなら全コア使う 
 +    * 性能が必要な処理をするサーバーを建てるなら、P-coreのみにするか、「性能が必要なVMに対してP-coreを割り当てる」などの対策が必要
  
  
行 282: 行 420:
  
 ===== Appendix ===== ===== Appendix =====
-==== Boot時 dmesg ====+ 
 +==== FreeBSD dmesg (Pcore Only) ===
  
 <code - dmesg.t1> <code - dmesg.t1>
行 538: 行 677:
 Security policy loaded: MAC/ntpd (mac_ntpd) Security policy loaded: MAC/ntpd (mac_ntpd)
 </code> </code>
 +
 +==== FreeBSD dmesg (All cores) ====
  
 <code - dmesg.t2> <code - dmesg.t2>
行 775: 行 916:
 Security policy loaded: MAC/ntpd (mac_ntpd) Security policy loaded: MAC/ntpd (mac_ntpd)
 </code> </code>
-==== sysctl 実行結果 ==== 
  
-=== Loader Tunables === +==== NetBSD dmesg ==== 
-<code - t1:sysctl -Ta>+<code> 
 +# dmesg 
 +[     1.000000] Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 
 +[     1.000000]     2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 
 +[     1.000000]     2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 
 +[     1.000000]     2024 
 +[     1.000000]     The NetBSD Foundation, Inc.  All rights reserved. 
 +[     1.000000] Copyright (c) 1982, 1986, 1989, 1991, 1993 
 +[     1.000000]     The Regents of the University of California.  All rights reserved. 
 + 
 +[     1.000000] NetBSD 10.0 (GENERIC) #0: Thu Mar 28 08:33:33 UTC 2024 
 +[     1.000000]         mkrepro@mkrepro.NetBSD.org:/usr/src/sys/arch/amd64/compile/GENERIC 
 +[     1.000000] total memory = 65265 MB 
 +[     1.000000] avail memory = 63125 MB 
 +[     1.000000] timecounter: Timecounters tick every 10.000 msec 
 +[     1.000000] Kernelized RAIDframe activated 
 +[     1.000000] RTC BIOS diagnostic error 0x1b<memory_size,fixed_disk> 
 +[     1.000000] timecounter: Timecounter "i8254" frequency 1193182 Hz quality 100 
 +[     1.000004] efi: systbl at pa 43e65018 
 +[     1.000004] mainbus0 (root) 
 +[     1.000004] ACPI: RSDP 0x00000000428B6014 000024 (v02 ALASKA) 
 +[     1.000004] ACPI: XSDT 0x00000000428B5728 00010C (v01 ALASKA A M I    01072009 AMI  01000013) 
 +[     1.000004] ACPI: FACP 0x0000000042829000 000114 (v06 ALASKA A M I    01072009 AMI  01000013) 
 +[     1.000004] ACPI: DSDT 0x0000000042795000 093BF8 (v02 ALASKA A M I    01072009 INTL 20200717) 
 +[     1.000004] ACPI: FACS 0x0000000042959000 000040 
 +[     1.000004] ACPI: FIDT 0x0000000042794000 00009C (v01 ALASKA A M I    01072009 AMI  00010013) 
 +[     1.000004] ACPI: SSDT 0x000000004282B000 00038C (v02 PmaxDv Pmax_Dev 00000001 INTL 20200717) 
 +[     1.000004] ACPI: SSDT 0x000000004278E000 005D34 (v02 CpuRef CpuSsdt  00003000 INTL 20200717) 
 +[     1.000004] ACPI: SSDT 0x000000004278B000 002935 (v02 SaSsdt SaSsdt   00003000 INTL 20200717) 
 +[     1.000004] ACPI: SSDT 0x0000000042787000 0033E9 (v02 INTEL  IgfxSsdt 00003000 INTL 20200717) 
 +[     1.000004] ACPI: SSDT 0x0000000042779000 00D487 (v02 INTEL  TcssSsdt 00001000 INTL 20200717) 
 +[     1.000004] ACPI: HPET 0x000000004282A000 000038 (v01 ALASKA A M I    01072009 AMI  01000013) 
 +[     1.000004] ACPI: APIC 0x0000000042778000 0001DC (v05 ALASKA A M I    01072009 AMI  01000013) 
 +[     1.000004] ACPI: MCFG 0x0000000042777000 00003C (v01 ALASKA A M I    01072009 AMI  01000013) 
 +[     1.000004] ACPI: SSDT 0x0000000042775000 001F1A (v02 ALASKA Ther_Rvp 00001000 INTL 20200717) 
 +[     1.000004] ACPI: UEFI 0x000000004286B000 000048 (v01 ALASKA A M I    01072009 AMI  01000013) 
 +[     1.000004] ACPI: NHLT 0x0000000042774000 00002D (v00 ALASKA A M I    01072009 AMI  01000013) 
 +[     1.000004] ACPI: LPIT 0x0000000042773000 0000CC (v01 ALASKA A M I    01072009 AMI  01000013) 
 +[     1.000004] ACPI: SSDT 0x000000004276F000 002A83 (v02 ALASKA PtidDevc 00001000 INTL 20200717) 
 +[     1.000004] ACPI: SSDT 0x000000004276C000 002357 (v02 ALASKA TbtTypeC 00000000 INTL 20200717) 
 +[     1.000004] ACPI: DBGP 0x000000004276B000 000034 (v01 ALASKA A M I    01072009 AMI  01000013) 
 +[     1.000004] ACPI: DBG2 0x000000004276A000 000054 (v00 ALASKA A M I    01072009 AMI  01000013) 
 +[     1.000004] ACPI: SSDT 0x0000000042768000 00190A (v02 ALASKA UsbCTabl 00001000 INTL 20200717) 
 +[     1.000004] ACPI: DMAR 0x0000000042767000 000088 (v02 INTEL  EDK2     00000002      01000013) 
 +[     1.000004] ACPI: FPDT 0x0000000042766000 000044 (v01 ALASKA A M I    01072009 AMI  01000013) 
 +[     1.000004] ACPI: SSDT 0x0000000042765000 000C0C (v02 INTEL  xh_adlLP 00000000 INTL 20200717) 
 +[     1.000004] ACPI: SSDT 0x0000000042761000 003AEA (v02 SocGpe SocGpe   00003000 INTL 20200717) 
 +[     1.000004] ACPI: SSDT 0x000000004275D000 0039DA (v02 SocCmn SocCmn   00003000 INTL 20200717) 
 +[     1.000004] ACPI: SSDT 0x000000004275C000 000144 (v02 Intel  ADebTabl 00001000 INTL 20200717) 
 +[     1.000004] ACPI: TPM2 0x000000004275B000 00004C (v04 ALASKA A M I    00000001 AMI  00000000) 
 +[     1.000004] ACPI: PHAT 0x0000000042759000 0005F1 (v01 ALASKA A M I    00000005 MSFT 0100000D) 
 +[     1.000004] ACPI: ASF! 0x000000004275A000 000074 (v32 ALASKA A M I    01072009 AMI  01000013) 
 +[     1.000004] ACPI: WSMT 0x0000000042772000 000028 (v01 ALASKA A M I    01072009 AMI  00010013) 
 +[     1.000004] ACPI: 14 ACPI AML tables successfully acquired and loaded 
 +[     1.000004] ioapic0 at mainbus0 apid 2: pa 0xfec00000, version 0x20, 120 pins 
 +[     1.000004] cpu0 at mainbus0 apid 0 
 +[     1.000004] cpu0: Use lfence to serialize rdtsc 
 +[     1.000004] cpu0: CPU base freq 2900000000 Hz 
 +[     1.000004] cpu0: CPU max freq 5000000000 Hz 
 +[     1.000004] cpu0: TSC freq CPUID 2918400000 Hz 
 +[     1.000004] cpu0: 12th Gen Intel(R) Core(TM) i9-12900H, id 0x906a3 
 +[     1.000004] cpu0: node 0, package 0, core 0, smt 0 
 +[     1.000004] cpu1 at mainbus0 apid 1 
 +[     1.000004] cpu1: 12th Gen Intel(R) Core(TM) i9-12900H, id 0x906a3 
 +[     1.000004] cpu1: node 0, package 0, core 0, smt 1 
 +[     1.000004] cpu2 at mainbus0 apid 8 
 +[     1.000004] cpu2: 12th Gen Intel(R) Core(TM) i9-12900H, id 0x906a3 
 +[     1.000004] cpu2: node 0, package 0, core 4, smt 0 
 +[     1.000004] cpu3 at mainbus0 apid 9 
 +[     1.000004] cpu3: 12th Gen Intel(R) Core(TM) i9-12900H, id 0x906a3 
 +[     1.000004] cpu3: node 0, package 0, core 4, smt 1 
 +[     1.000004] cpu4 at mainbus0 apid 16 
 +[     1.000004] cpu4: 12th Gen Intel(R) Core(TM) i9-12900H, id 0x906a3 
 +[     1.000004] cpu4: node 0, package 0, core 8, smt 0 
 +[     1.000004] cpu5 at mainbus0 apid 17 
 +[     1.000004] cpu5: 12th Gen Intel(R) Core(TM) i9-12900H, id 0x906a3 
 +[     1.000004] cpu5: node 0, package 0, core 8, smt 1 
 +[     1.000004] cpu6 at mainbus0 apid 24 
 +[     1.000004] cpu6: 12th Gen Intel(R) Core(TM) i9-12900H, id 0x906a3 
 +[     1.000004] cpu6: node 0, package 0, core 12, smt 0 
 +[     1.000004] cpu7 at mainbus0 apid 25 
 +[     1.000004] cpu7: 12th Gen Intel(R) Core(TM) i9-12900H, id 0x906a3 
 +[     1.000004] cpu7: node 0, package 0, core 12, smt 1 
 +[     1.000004] cpu8 at mainbus0 apid 32 
 +[     1.000004] cpu8: 12th Gen Intel(R) Core(TM) i9-12900H, id 0x906a3 
 +[     1.000004] cpu8: node 0, package 0, core 16, smt 0 
 +[     1.000004] cpu9 at mainbus0 apid 33 
 +[     1.000004] cpu9: 12th Gen Intel(R) Core(TM) i9-12900H, id 0x906a3 
 +[     1.000004] cpu9: node 0, package 0, core 16, smt 1 
 +[     1.000004] cpu10 at mainbus0 apid 40 
 +[     1.000004] cpu10: 12th Gen Intel(R) Core(TM) i9-12900H, id 0x906a3 
 +[     1.000004] cpu10: node 0, package 0, core 20, smt 0 
 +[     1.000004] cpu11 at mainbus0 apid 41 
 +[     1.000004] cpu11: 12th Gen Intel(R) Core(TM) i9-12900H, id 0x906a3 
 +[     1.000004] cpu11: node 0, package 0, core 20, smt 1 
 +[     1.000004] cpu12 at mainbus0 apid 48 
 +[     1.000004] cpu12: 12th Gen Intel(R) Core(TM) i9-12900H, id 0x906a3 
 +[     1.000004] cpu12: node 0, package 0, core 24, smt 0 
 +[     1.000004] cpu13 at mainbus0 apid 50 
 +[     1.000004] cpu13: 12th Gen Intel(R) Core(TM) i9-12900H, id 0x906a3 
 +[     1.000004] cpu13: node 0, package 0, core 25, smt 0 
 +[     1.000004] cpu14 at mainbus0 apid 52 
 +[     1.000004] cpu14: 12th Gen Intel(R) Core(TM) i9-12900H, id 0x906a3 
 +[     1.000004] cpu14: node 0, package 0, core 26, smt 0 
 +[     1.000004] cpu15 at mainbus0 apid 54 
 +[     1.000004] cpu15: 12th Gen Intel(R) Core(TM) i9-12900H, id 0x906a3 
 +[     1.000004] cpu15: node 0, package 0, core 27, smt 0 
 +[     1.000004] cpu16 at mainbus0 apid 56 
 +[     1.000004] cpu16: 12th Gen Intel(R) Core(TM) i9-12900H, id 0x906a3 
 +[     1.000004] cpu16: node 0, package 0, core 28, smt 0 
 +[     1.000004] cpu17 at mainbus0 apid 58 
 +[     1.000004] cpu17: 12th Gen Intel(R) Core(TM) i9-12900H, id 0x906a3 
 +[     1.000004] cpu17: node 0, package 0, core 29, smt 0 
 +[     1.000004] cpu18 at mainbus0 apid 60 
 +[     1.000004] cpu18: 12th Gen Intel(R) Core(TM) i9-12900H, id 0x906a3 
 +[     1.000004] cpu18: node 0, package 0, core 30, smt 0 
 +[     1.000004] cpu19 at mainbus0 apid 62 
 +[     1.000004] cpu19: 12th Gen Intel(R) Core(TM) i9-12900H, id 0x906a3 
 +[     1.000004] cpu19: node 0, package 0, core 31, smt 0 
 +[     1.000004] acpi0 at mainbus0: Intel ACPICA 20221020 
 +[     1.000004] acpi0: X/RSDT: OemId <ALASKA,  A M I ,01072009>, AslId <AMI ,01000013> 
 +[     1.000004] acpi0: MCFG: segment 0, bus 0-255, address 0x00000000c0000000 
 +[     1.000004] ACPI: Dynamic OEM Table Load: 
 +[     1.000004] ACPI: SSDT 0xFFFF899831CED808 000668 (v02 PmRef  Cpu0Ist  00003000 INTL 20200717) 
 +[     1.000004] ACPI: Dynamic OEM Table Load: 
 +[     1.000004] ACPI: SSDT 0xFFFF899831EDE908 0001AB (v02 PmRef  Cpu0Psd  00003000 INTL 20200717) 
 +[     1.000004] ACPI: Dynamic OEM Table Load: 
 +[     1.000004] ACPI: SSDT 0xFFFF9B807BBF6000 001BAF (v02 PmRef  ApIst    00003000 INTL 20200717) 
 +[     1.000004] ACPI: Dynamic OEM Table Load: 
 +[     1.000004] ACPI: SSDT 0xFFFF9B807BBF9000 001349 (v02 PmRef  ApPsd    00003000 INTL 20200717) 
 +[     1.000004] acpi0: SCI interrupting at int 9 
 +[     1.000004] acpi0: fixed power button present 
 +[     1.000004] timecounter: Timecounter "ACPI-Fast" frequency 3579545 Hz quality 1000 
 +[     1.054918] hpet0 at acpi0: high precision event timer (mem 0xfed00000-0xfed00400) 
 +[     1.054918] timecounter: Timecounter "hpet0" frequency 19200000 Hz quality 2000 
 +[     1.055664] acpiec0 at acpi0 (H_EC, PNP0C09-1): not present 
 +[     1.055664] com0 at acpi0 (UAR1, PNP0501-0): io 0x3f8-0x3ff irq 4 
 +[     1.055664] com0: ns16550a, 16-byte FIFO 
 +[     1.055664] attimer1 at acpi0 (TIMR, PNP0100): io 0x40-0x43,0x50-0x53 irq 0 
 +[     1.055664] acpivga0 at acpi0 (GFX0): ACPI Display Adapter 
 +[     1.055664] acpiout0 at acpivga0 (DD01, 0x0001): ACPI Display Output Device 
 +[     1.055664] acpiout1 at acpivga0 (DD02, 0x0002): ACPI Display Output Device 
 +[     1.055664] acpiout2 at acpivga0 (DD03, 0x0003): ACPI Display Output Device 
 +[     1.055664] acpiout3 at acpivga0 (DD04, 0x0004): ACPI Display Output Device 
 +[     1.055664] acpiout4 at acpivga0 (DD05, 0x0005): ACPI Display Output Device 
 +[     1.055664] acpiout5 at acpivga0 (DD06, 0x0006): ACPI Display Output Device 
 +[     1.055664] acpiout6 at acpivga0 (DD07, 0x0007): ACPI Display Output Device 
 +[     1.055664] acpiout7 at acpivga0 (DD08, 0x0008): ACPI Display Output Device 
 +[     1.055664] acpiout8 at acpivga0 (DD09, 0x0009): ACPI Display Output Device 
 +[     1.055664] acpiout9 at acpivga0 (DD0A, 0x000a): ACPI Display Output Device 
 +[     1.055664] acpiout10 at acpivga0 (DD0B, 0x000b): ACPI Display Output Device 
 +[     1.055664] acpiout11 at acpivga0 (DD0C, 0x000c): ACPI Display Output Device 
 +[     1.055664] acpiout12 at acpivga0 (DD0D, 0x000d): ACPI Display Output Device 
 +[     1.055664] acpiout13 at acpivga0 (DD0E, 0x000e): ACPI Display Output Device 
 +[     1.055664] acpiout14 at acpivga0 (DD0F, 0x000f): ACPI Display Output Device 
 +[     1.055664] acpiout15 at acpivga0 (DD1F, 0x001f): ACPI Display Output Device 
 +[     1.055664] acpiout15: brightness levels: [0-100] 
 +[     1.055664] acpiout16 at acpivga0 (DD2F, 0x001f): ACPI Display Output Device 
 +[     1.055664] acpiout16: brightness levels: [0-100] 
 +[     1.055664] acpivga0: connected output devices: 
 +[     1.055664] acpivga0:   0x0000: Unknown Output Device, head 0, bios detect 
 +[     1.055664] acpivga0:   0x0000: Unknown Output Device, head 0, bios detect 
 +[     1.055664] AWAC (ACPI000E) at acpi0 not configured 
 +[     1.055664] igpio0 at acpi0 (GPI0, INTC1055): mem 0xfd6e0000-0xfd6effff,0xfd6d0000-0xfd6dffff,0xfd6a0000-0xfd6affff,0xfd690000-0xfd69ffff irq 14 
 +[     1.055664] gpio0 at igpio0: 277 pins 
 +[     1.055664] acpibut0 at acpi0 (SLPB, PNP0C0E): ACPI Sleep Button 
 +[     1.055664] acpiwmi0 at acpi0 (WFDE, PNP0C14-DSarDev): ACPI WMI Interface 
 +[     1.055664] acpiwmibus at acpiwmi0 not configured 
 +[     1.055664] acpiwmi1 at acpi0 (WFTE, PNP0C14-TestDev): ACPI WMI Interface 
 +[     1.055664] acpiwmibus at acpiwmi1 not configured 
 +[     1.055664] PEPD (INT33A1) at acpi0 not configured 
 +[     1.055664] acpibut1 at acpi0 (PWRB, PNP0C0C): ACPI Power Button 
 +[     1.055664] TPM (MSFT0101) at acpi0 not configured 
 +[     1.055664] acpifan0 at acpi0 (FAN0, PNP0C0B-0): ACPI Fan 
 +[     1.055664] acpifan1 at acpi0 (FAN1, PNP0C0B-1): ACPI Fan 
 +[     1.055664] acpifan2 at acpi0 (FAN2, PNP0C0B-2): ACPI Fan 
 +[     1.055664] acpifan3 at acpi0 (FAN3, PNP0C0B-3): ACPI Fan 
 +[     1.055664] acpifan4 at acpi0 (FAN4, PNP0C0B-4): ACPI Fan 
 +[     1.055664] acpitz0 at acpi0 (TZ00): cpu0 cpu1 cpu2 cpu3 cpu4 cpu5 cpu6 cpu7 cpu8 cpu9 cpu10 cpu11 cpu12 cpu13 cpu14 cpu15 cpu16 cpu17 cpu18 cpu19 
 +[     1.055664] acpitz0: active cooling level 0: 100.0C 
 +[     1.055664] acpitz0: active cooling level 1: 55.0C 
 +[     1.055664] acpitz0: active cooling level 2: 50.0C 
 +[     1.055664] acpitz0: active cooling level 3: 45.0C 
 +[     1.055664] acpitz0: active cooling level 4: 40.0C 
 +[     1.055664] acpitz0: levels: critical 105.0 C 
 +[     1.055664] ACPI: Enabled 4 GPEs in block 00 to 7F 
 +[     1.055664] pci0 at mainbus0 bus 0: configuration mode 1 
 +[     1.055664] pci0: i/o space, memory space enabled, rd/line, rd/mult, wr/inv ok 
 +[     1.055664] pchb0 at pci0 dev 0 function 0: Intel Alder Lake (H,6+8) Host (rev. 0x02) 
 +[     1.055664] genfb0 at pci0 dev 2 function 0: Intel Alder Lake Graphics (rev. 0x0c) 
 +[     1.055664] genfb0: framebuffer at 0x4000000000, size 1024x768, depth 32, stride 4096 
 +[     1.055664] genfb0: shadow framebuffer enabled, size 3072 KB 
 +[     1.055664] wsdisplay0 at genfb0 kbdmux 1: console (default, vt100 emulation) 
 +[     1.055664] wsmux1: connecting to wsdisplay0 
 +[     1.055664] drm at genfb0 not configured 
 +[     1.055664] ppb0 at pci0 dev 6 function 0: Intel Alder Lake PCIe G4 Root Port 2 (x4) (rev. 0x02) 
 +[     1.055664] ppb0: PCI Express capability version 2 <Root Port of PCI-E Root Complex> x4 @ 16.0GT/s 
 +[     1.055664] pci1 at ppb0 bus 1 
 +[     1.055664] pci1: i/o space, memory space enabled, rd/line, wr/inv ok 
 +[     1.055664] ppb1 at pci0 dev 6 function 2: Intel Alder Lake PCIe G4 Root Port 3 (x4) (rev. 0x02) 
 +[     1.055664] ppb1: PCI Express capability version 2 <Root Port of PCI-E Root Complex> x4 @ 16.0GT/s 
 +[     1.055664] ppb1: link is x4 @ 8.0GT/s 
 +[     1.055664] pci2 at ppb1 bus 2 
 +[     1.055664] pci2: i/o space, memory space enabled, rd/line, wr/inv ok 
 +[     1.055664] ixl0 at pci2 dev 0 function 0: Intel XL710 SFP+ Ethernet (SFI) (rev. 0x02) 
 +[     1.055664] ixl0: port 1, FW 9.120.73026 API 1.15 nvm 9.20 etid 8000d8c5 oem 0.0.0 
 +[     1.055664] ixl0: Ethernet address 58:47:ca:76:6d:3f 
 +[     1.055664] ixl0: other interrupt at msix0 vec 0, affinity to 0 
 +[     1.055664] ixl0: for TXRX0 interrupt at msix0 vec 1, affinity to 0 
 +[     1.055664] ixl0: for TXRX1 interrupt at msix0 vec 2, affinity to 1 
 +[     1.055664] ixl0: for TXRX2 interrupt at msix0 vec 3, affinity to 2 
 +[     1.055664] ixl0: for TXRX3 interrupt at msix0 vec 4, affinity to 3 
 +[     1.055664] ixl0: for TXRX4 interrupt at msix0 vec 5, affinity to 4 
 +[     1.055664] ixl0: for TXRX5 interrupt at msix0 vec 6, affinity to 5 
 +[     1.055664] ixl0: for TXRX6 interrupt at msix0 vec 7, affinity to 6 
 +[     1.055664] ixl0: for TXRX7 interrupt at msix0 vec 8, affinity to 7 
 +[     1.055664] ixl0: for TXRX8 interrupt at msix0 vec 9, affinity to 8 
 +[     1.055664] ixl0: for TXRX9 interrupt at msix0 vec 10, affinity to 9 
 +[     1.055664] ixl0: for TXRX10 interrupt at msix0 vec 11, affinity to 10 
 +[     1.055664] ixl0: for TXRX11 interrupt at msix0 vec 12, affinity to 11 
 +[     1.055664] ixl0: for TXRX12 interrupt at msix0 vec 13, affinity to 12 
 +[     1.055664] ixl0: for TXRX13 interrupt at msix0 vec 14, affinity to 13 
 +[     1.055664] ixl0: for TXRX14 interrupt at msix0 vec 15, affinity to 14 
 +[     1.055664] ixl0: for TXRX15 interrupt at msix0 vec 16, affinity to 15 
 +[     1.055664] ixl0: for TXRX16 interrupt at msix0 vec 17, affinity to 16 
 +[     1.055664] ixl0: for TXRX17 interrupt at msix0 vec 18, affinity to 17 
 +[     1.055664] ixl0: for TXRX18 interrupt at msix0 vec 19, affinity to 18 
 +[     1.055664] ixl0: for TXRX19 interrupt at msix0 vec 20, affinity to 19 
 +[     1.055664] ixl1 at pci2 dev 0 function 1: Intel XL710 SFP+ Ethernet (SFI) (rev. 0x02) 
 +[     1.055664] ixl1: port 0, FW 9.120.73026 API 1.15 nvm 9.20 etid 8000d8c5 oem 0.0.0 
 +[     1.055664] ixl1: Ethernet address 58:47:ca:76:6d:40 
 +[     1.055664] ixl1: other interrupt at msix1 vec 0, affinity to 0 
 +[     1.055664] ixl1: for TXRX0 interrupt at msix1 vec 1, affinity to 0 
 +[     1.055664] ixl1: for TXRX1 interrupt at msix1 vec 2, affinity to 1 
 +[     1.055664] ixl1: for TXRX2 interrupt at msix1 vec 3, affinity to 2 
 +[     1.055664] ixl1: for TXRX3 interrupt at msix1 vec 4, affinity to 3 
 +[     1.055664] ixl1: for TXRX4 interrupt at msix1 vec 5, affinity to 4 
 +[     1.055664] ixl1: for TXRX5 interrupt at msix1 vec 6, affinity to 5 
 +[     1.055664] ixl1: for TXRX6 interrupt at msix1 vec 7, affinity to 6 
 +[     1.055664] ixl1: for TXRX7 interrupt at msix1 vec 8, affinity to 7 
 +[     1.055664] ixl1: for TXRX8 interrupt at msix1 vec 9, affinity to 8 
 +[     1.055664] ixl1: for TXRX9 interrupt at msix1 vec 10, affinity to 9 
 +[     1.055664] ixl1: for TXRX10 interrupt at msix1 vec 11, affinity to 10 
 +[     1.055664] ixl1: for TXRX11 interrupt at msix1 vec 12, affinity to 11 
 +[     1.055664] ixl1: for TXRX12 interrupt at msix1 vec 13, affinity to 12 
 +[     1.055664] ixl1: for TXRX13 interrupt at msix1 vec 14, affinity to 13 
 +[     1.055664] ixl1: for TXRX14 interrupt at msix1 vec 15, affinity to 14 
 +[     1.055664] ixl1: for TXRX15 interrupt at msix1 vec 16, affinity to 15 
 +[     1.055664] ixl1: for TXRX16 interrupt at msix1 vec 17, affinity to 16 
 +[     1.055664] ixl1: for TXRX17 interrupt at msix1 vec 18, affinity to 17 
 +[     1.055664] ixl1: for TXRX18 interrupt at msix1 vec 19, affinity to 18 
 +[     1.055664] ixl1: for TXRX19 interrupt at msix1 vec 20, affinity to 19 
 +[     1.055664] ppb2 at pci0 dev 7 function 0: Intel Alder Lake Thunderbolt PCIe 0 (rev. 0x02) 
 +[     1.055664] ppb2: PCI Express capability version 2 <Root Port of PCI-E Root Complex> x4 @ 2.5GT/s 
 +[     1.055664] pci3 at ppb2 bus 3 
 +[     1.055664] pci3: i/o space, memory space enabled, rd/line, wr/inv ok 
 +[     1.055664] ppb3 at pci0 dev 7 function 2: Intel Alder Lake Thunderbolt PCIe 2 (rev. 0x02) 
 +[     1.055664] ppb3: PCI Express capability version 2 <Root Port of PCI-E Root Complex> x4 @ 2.5GT/s 
 +[     1.055664] pci4 at ppb3 bus 45 
 +[     1.055664] pci4: i/o space, memory space enabled, rd/line, wr/inv ok 
 +[     1.055664] xhci0 at pci0 dev 13 function 0: Intel Alder Lake USB-C Host (xHCI) (rev. 0x02) 
 +[     1.055664] xhci0: 64-bit DMA 
 +[     1.055664] xhci0: interrupting at msi2 vec 0 
 +[     1.055664] xhci0: Unknown revision (32). Set to 3.1. 
 +[     1.055664] xhci0: xHCI version 1.20 
 +[     1.055664] usb0 at xhci0: USB revision 3.1 
 +[     1.055664] usb1 at xhci0: USB revision 2.0 
 +[     1.055664] Intel Alder Lake Thunderbolt DMA 0 (USB serial bus, USB4 HCI, revision 0x02) at pci0 dev 13 function 2 not configured 
 +[     1.055664] Intel Alder Lake Thunderbolt DMA 1 (USB serial bus, USB4 HCI, revision 0x02) at pci0 dev 13 function 3 not configured 
 +[     1.055664] xhci1 at pci0 dev 20 function 0: Intel 600 Series PCH-LP USB 3.2 Gen 2x1 xHCI (rev. 0x01) 
 +[     1.055664] xhci1: 64-bit DMA 
 +[     1.055664] xhci1: interrupting at msi3 vec 0 
 +[     1.055664] xhci1: xHCI version 1.20 
 +[     1.055664] usb2 at xhci1: USB revision 3.1 
 +[     1.055664] usb3 at xhci1: USB revision 2.0 
 +[     1.055664] Intel 600 Series PCH-LP Shared SRAM (RAM memory, revision 0x01) at pci0 dev 20 function 2 not configured 
 +[     1.055664] Intel 600 Series PCH-LP HECI 1 (miscellaneous communications, revision 0x01) at pci0 dev 22 function 0 not configured 
 +[     1.055664] Intel 600 Series PCH-LP KT (serial communications, 16550-compat, revision 0x01) at pci0 dev 22 function 3 not configured 
 +[     1.055664] ppb4 at pci0 dev 28 function 0: Intel 600 Series PCH-LP PCIe RP 4 (rev. 0x01) 
 +[     1.055664] ppb4: PCI Express capability version 2 <Root Port of PCI-E Root Complex> x1 @ 8.0GT/s 
 +[     1.055664] ppb4: link is x1 @ 5.0GT/s 
 +[     1.055664] pci5 at ppb4 bus 87 
 +[     1.055664] pci5: i/o space, memory space enabled, rd/line, wr/inv ok 
 +[     1.055664] igc0 at pci5 dev 0 function 0: Intel(R) Ethernet Controller I226-V (rev. 0x04) 
 +[     1.055664] igc0: txrx interrupting at msix4 vec 0 
 +[     1.055664] igc0: txrx interrupting at msix4 vec 1 
 +[     1.055664] igc0: txrx interrupting at msix4 vec 2 
 +[     1.055664] igc0: txrx interrupting at msix4 vec 3 
 +[     1.055664] igc0: link interrupting at msix4 vec 4 
 +[     1.055664] igc0: PHY: OUI 0x984fee model 0x0005, rev. 8, PHY FW version 0x888d 
 +[     1.055664] igc0: NVM image version 2.17, EtrackID 80000303 
 +[     1.055664] igc0: Ethernet address 58:47:ca:76:6d:41 
 +[     1.055664] ppb5 at pci0 dev 29 function 0: Intel 600 Series PCH-LP PCIe RP 9 (rev. 0x01) 
 +[     1.055664] ppb5: PCI Express capability version 2 <Root Port of PCI-E Root Complex> x2 @ 8.0GT/s 
 +[     1.055664] pci6 at ppb5 bus 88 
 +[     1.055664] pci6: i/o space, memory space enabled, rd/line, wr/inv ok 
 +[     1.055664] nvme0 at pci6 dev 0 function 0: Phison product 5013 (rev. 0x01) 
 +[     1.055664] nvme0: NVMe 1.3 
 +[     1.055664] nvme0: for admin queue interrupting at msix5 vec 0 
 +[     1.055664] nvme0: SPCC M.2 PCIe SSD, firmware EDFM21.0, serial E14C073C14D200073219 
 +[     1.055664] nvme0: for io queue 1 interrupting at msix5 vec 1 affinity to cpu0 
 +[     1.055664] nvme0: for io queue 2 interrupting at msix5 vec 2 affinity to cpu1 
 +[     1.055664] nvme0: for io queue 3 interrupting at msix5 vec 3 affinity to cpu2 
 +[     1.055664] nvme0: for io queue 4 interrupting at msix5 vec 4 affinity to cpu3 
 +[     1.055664] nvme0: for io queue 5 interrupting at msix5 vec 5 affinity to cpu4 
 +[     1.055664] nvme0: for io queue 6 interrupting at msix5 vec 6 affinity to cpu5 
 +[     1.055664] nvme0: for io queue 7 interrupting at msix5 vec 7 affinity to cpu6 
 +[     1.055664] nvme0: for io queue 8 interrupting at msix5 vec 8 affinity to cpu7 
 +[     1.055664] ld0 at nvme0 nsid 1 
 +[     1.055664] ld0: 119 GB, 15566 cyl, 255 head, 63 sec, 512 bytes/sect x 250069680 sectors 
 +[     1.055664] ppb6 at pci0 dev 29 function 2: Intel 600 Series PCH-LP PCIe RP 11 (rev. 0x01) 
 +[     1.055664] ppb6: PCI Express capability version 2 <Root Port of PCI-E Root Complex> x1 @ 8.0GT/s 
 +[     1.055664] ppb6: link is x1 @ 5.0GT/s 
 +[     1.055664] pci7 at ppb6 bus 89 
 +[     1.055664] pci7: i/o space, memory space enabled, rd/line, wr/inv ok 
 +[     1.055664] igc1 at pci7 dev 0 function 0: Intel(R) Ethernet Controller I226-LM (rev. 0x04) 
 +[     1.055664] igc1: txrx interrupting at msix6 vec 0 
 +[     1.055664] igc1: txrx interrupting at msix6 vec 1 
 +[     1.055664] igc1: txrx interrupting at msix6 vec 2 
 +[     1.055664] igc1: txrx interrupting at msix6 vec 3 
 +[     1.055664] igc1: link interrupting at msix6 vec 4 
 +[     1.055664] igc1: PHY: OUI 0x984fee model 0x0001, rev. 8, PHY FW version 0x888d 
 +[     1.055664] igc1: NVM image version 2.17, EtrackID 80000307 
 +[     1.055664] igc1: Ethernet address 58:47:ca:76:6d:42 
 +[     1.055664] ppb7 at pci0 dev 29 function 3: Intel 600 Series PCH-LP PCIe RP 12 (rev. 0x01) 
 +[     1.055664] ppb7: PCI Express capability version 2 <Root Port of PCI-E Root Complex> x1 @ 8.0GT/s 
 +[     1.055664] ppb7: link is x1 @ 5.0GT/s 
 +[     1.055664] pci8 at ppb7 bus 90 
 +[     1.055664] pci8: i/o space, memory space enabled, rd/line, wr/inv ok 
 +[     1.055664] vendor 14c3 product 0616 (miscellaneous network) at pci8 dev 0 function 0 not configured 
 +[     1.055664] pcib0 at pci0 dev 31 function 0: Intel 600 Series PCH-LP eSPI (rev. 0x01) 
 +[     1.055664] hdaudio0 at pci0 dev 31 function 3: HD Audio Controller 
 +[     1.055664] hdaudio0: interrupting at msi7 vec 0 
 +[     1.055664] hdaudio0: HDA ver. 1.0, OSS 9, ISS 7, BSS 0, SDO 1, 64-bit 
 +[     1.055664] hdafg0 at hdaudio0: Realtek ALC269 
 +[     1.055664] hdafg0: DAC00 2ch: HP Out [Jack] 
 +[     1.055664] hdafg0: ADC01 2ch: Mic In [Jack] 
 +[     1.055664] hdafg0: 2ch/2ch 32000Hz 44100Hz 48000Hz 88200Hz 96000Hz 192000Hz PCM16 PCM20 PCM24 AC3 
 +[     1.055664] audio0 at hdafg0: playback, capture, full duplex, independent 
 +[     1.055664] audio0: slinear_le:16 2ch 48000Hz, blk 1920 bytes (10ms) for playback 
 +[     1.055664] audio0: slinear_le:16 2ch 48000Hz, blk 1920 bytes (10ms) for recording 
 +[     1.055664] spkr0 at audio0: PC Speaker (synthesized) 
 +[     1.055664] wsbell at spkr0 not configured 
 +[     1.055664] ichsmb0 at pci0 dev 31 function 4: Intel 600 Series PCH-LP SMBus (rev. 0x01) 
 +[     1.055664] ichsmb0: interrupting at ioapic0 pin 16 
 +[     1.055664] iic0 at ichsmb0: I2C bus 
 +[     1.055664] Intel 600 Series PCH-LP SPI (FLASH) (miscellaneous serial bus, revision 0x01) at pci0 dev 31 function 5 not configured 
 +[     1.055664] isa0 at pcib0 
 +[     1.055664] com1 at isa0 port 0x2f8-0x2ff irq 3: ns16550a, 16-byte FIFO 
 +[     1.055664] pcppi0 at isa0 port 0x61 
 +[     1.055664] spkr1 at pcppi0: PC Speaker 
 +[     1.055664] wsbell at spkr1 not configured 
 +[     1.055664] midi0 at pcppi0: PC speaker 
 +[     1.055664] sysbeep0 at pcppi0 
 +[     1.055664] attimer1: attached to pcppi0 
 +[     1.055664] acpicpu0 at cpu0: ACPI CPU 
 +[     1.055664] acpicpu0: C1: HLT, lat   0 us, pow     0 mW 
 +[     1.055664] acpicpu0: P0: FFH, lat  10 us, pow 45000 mW, 2901 MHz, turbo boost 
 +[     1.055664] acpicpu0: P1: FFH, lat  10 us, pow 45000 mW, 2900 MHz 
 +[     1.055664] acpicpu0: P2: FFH, lat  10 us, pow 40901 mW, 2700 MHz 
 +[     1.055664] acpicpu0: P3: FFH, lat  10 us, pow 36955 mW, 2500 MHz 
 +[     1.055664] acpicpu0: P4: FFH, lat  10 us, pow 34826 mW, 2400 MHz 
 +[     1.055664] acpicpu0: P5: FFH, lat  10 us, pow 31116 mW, 2200 MHz 
 +[     1.055664] acpicpu0: P6: FFH, lat  10 us, pow 26016 mW, 1900 MHz 
 +[     1.055664] acpicpu0: P7: FFH, lat  10 us, pow 24521 mW, 1800 MHz 
 +[     1.055664] acpicpu0: P8: FFH, lat  10 us, pow 21227 mW, 1600 MHz 
 +[     1.055664] acpicpu0: P9: FFH, lat  10 us, pow 19441 mW, 1500 MHz 
 +[     1.055664] acpicpu0: P10: FFH, lat  10 us, pow 16360 mW, 1300 MHz 
 +[     1.055664] acpicpu0: P11: FFH, lat  10 us, pow 13417 mW, 1100 MHz 
 +[     1.055664] acpicpu0: P12: FFH, lat  10 us, pow 10958 mW,  900 MHz 
 +[     1.055664] acpicpu0: P13: FFH, lat  10 us, pow  9421 mW,  800 MHz 
 +[     1.055664] acpicpu0: P14: FFH, lat  10 us, pow  6801 mW,  600 MHz 
 +[     1.055664] acpicpu0: P15: FFH, lat  10 us, pow  4305 mW,  400 MHz 
 +[     1.055664] coretemp0 at cpu0: thermal sensor, 1 C resolution, Tjmax=100 
 +[     1.055664] acpicpu1 at cpu1: ACPI CPU 
 +[     1.055664] acpicpu2 at cpu2: ACPI CPU 
 +[     1.055664] coretemp1 at cpu2: thermal sensor, 1 C resolution, Tjmax=100 
 +[     1.055664] acpicpu3 at cpu3: ACPI CPU 
 +[     1.055664] acpicpu4 at cpu4: ACPI CPU 
 +[     1.055664] coretemp2 at cpu4: thermal sensor, 1 C resolution, Tjmax=100 
 +[     1.055664] acpicpu5 at cpu5: ACPI CPU 
 +[     1.055664] acpicpu6 at cpu6: ACPI CPU 
 +[     1.055664] coretemp3 at cpu6: thermal sensor, 1 C resolution, Tjmax=100 
 +[     1.055664] acpicpu7 at cpu7: ACPI CPU 
 +[     1.055664] acpicpu8 at cpu8: ACPI CPU 
 +[     1.055664] coretemp4 at cpu8: thermal sensor, 1 C resolution, Tjmax=100 
 +[     1.055664] acpicpu9 at cpu9: ACPI CPU 
 +[     1.055664] acpicpu10 at cpu10: ACPI CPU 
 +[     1.055664] coretemp5 at cpu10: thermal sensor, 1 C resolution, Tjmax=100 
 +[     1.055664] acpicpu11 at cpu11: ACPI CPU 
 +[     1.055664] acpicpu12 at cpu12: ACPI CPU 
 +[     1.055664] coretemp6 at cpu12: thermal sensor, 1 C resolution, Tjmax=100 
 +[     1.055664] acpicpu13 at cpu13: ACPI CPU 
 +[     1.055664] coretemp7 at cpu13: thermal sensor, 1 C resolution, Tjmax=100 
 +[     1.055664] acpicpu14 at cpu14: ACPI CPU 
 +[     1.055664] coretemp8 at cpu14: thermal sensor, 1 C resolution, Tjmax=100 
 +[     1.055664] acpicpu15 at cpu15: ACPI CPU 
 +[     1.055664] coretemp9 at cpu15: thermal sensor, 1 C resolution, Tjmax=100 
 +[     1.055664] acpicpu16 at cpu16: ACPI CPU 
 +[     1.055664] coretemp10 at cpu16: thermal sensor, 1 C resolution, Tjmax=100 
 +[     1.055664] acpicpu17 at cpu17: ACPI CPU 
 +[     1.055664] coretemp11 at cpu17: thermal sensor, 1 C resolution, Tjmax=100 
 +[     1.055664] acpicpu18 at cpu18: ACPI CPU 
 +[     1.055664] coretemp12 at cpu18: thermal sensor, 1 C resolution, Tjmax=100 
 +[     1.055664] acpicpu19 at cpu19: ACPI CPU 
 +[     1.055664] coretemp13 at cpu19: thermal sensor, 1 C resolution, Tjmax=100 
 +[     1.055664] cpu0: CPU base freq 2900000000 Hz 
 +[     1.055664] cpu0: CPU max freq 5000000000 Hz 
 +[     1.055664] cpu0: TSC freq CPUID 2918400000 Hz 
 +[     1.055664] cpu0: TSC freq calibrated 2918405000 Hz 
 +[     1.055664] timecounter: Timecounter "clockinterrupt" frequency 100 Hz quality 0 
 +[     1.592442] timecounter: Timecounter "TSC" frequency 2918405000 Hz quality 3000 
 +[     1.599548] uhub0 at usb0: NetBSD (0x0000) xHCI root hub (0x0000), class 9/0, rev 3.00/1.00, addr 0 
 +[     1.612427] uhub0: 3 ports with 3 removable, self powered 
 +[     1.612427] uhub1 at usb1: NetBSD (0x0000) xHCI root hub (0x0000), class 9/0, rev 2.00/1.00, addr 0 
 +[     1.622427] uhub1: 1 port with 1 removable, self powered 
 +[     1.622427] uhub2 at usb2: NetBSD (0x0000) xHCI root hub (0x0000), class 9/0, rev 3.00/1.00, addr 0 
 +[     1.642427] uhub2: 4 ports with 4 removable, self powered 
 +[     1.642427] uhub3 at usb3: NetBSD (0x0000) xHCI root hub (0x0000), class 9/0, rev 2.00/1.00, addr 0 
 +[     1.662427] uhub3: 12 ports with 12 removable, self powered 
 +[     1.662427] ld0: GPT GUID: 7aa2fffd-0471-11ef-9264-5847ca766d3f 
 +[     1.662427] dk0 at ld0: "7aa35e45-0471-11ef-9264-5847ca766d3f", 532480 blocks at 40, type: msdos 
 +[     1.662427] dk1 at ld0: "7aa3c7fb-0471-11ef-9264-5847ca766d3f", 240640000 blocks at 532520, type: ffs 
 +[     1.662427] dk2 at ld0: "7aa431c1-0471-11ef-9264-5847ca766d3f", 8388608 blocks at 241172520, type: swap 
 +[     1.672428] IPsec: Initialized Security Association Processing. 
 +[     2.132426] uhub4 at uhub3 port 1: GenesysLogic (0x05e3) USB2.1 Hub (0x0610), class 9/0, rev 2.10/6.63, addr 1 
 +[     2.132426] uhub4: single transaction translator 
 +[     2.132426] uhub4: 4 ports with 4 removable, self powered 
 +[     2.162426] uhub5 at uhub2 port 1: GenesysLogic (0x05e3) USB3.1 Hub (0x0626), class 9/0, rev 3.20/6.63, addr 2 
 +[     2.162426] uhub5: 4 ports with 4 removable, self powered 
 +[     2.912425] uhidev0 at uhub4 port 3 configuration 1 interface 0 
 +[     2.912425] uhidev0: Logitech (0x046d) USB Receiver (0xc52f), rev 2.00/30.00, addr 3, iclass 3/1 
 +[     2.912425] ums0 at uhidev0: 16 buttons, W and Z dirs 
 +[     2.912425] wsmouse0 at ums0 mux 0 
 +[     2.912425] uhidev1 at uhub4 port 3 configuration 1 interface 1 
 +[     2.912425] uhidev1: Logitech (0x046d) USB Receiver (0xc52f), rev 2.00/30.00, addr 3, iclass 3/0 
 +[     2.912425] uhidev1: 17 report ids 
 +[     2.912425] uhid0 at uhidev1 reportid 3: input=4, output=0, feature=0 
 +[     2.912425] uhid1 at uhidev1 reportid 16: input=6, output=6, feature=0 
 +[     2.912425] uhid2 at uhidev1 reportid 17: input=19, output=19, feature=0 
 +[     2.952425] umass0 at uhub2 port 2 configuration 1 interface 0 
 +[     2.952425] umass0: SanDisk (0x0781) Ultra Fit (0x5583), rev 3.00/1.00, addr 4 
 +[     2.952425] umass0: using SCSI over Bulk-Only 
 +[     2.952425] scsibus0 at umass0: 2 targets, 1 lun per target 
 +[     2.962425] sd0 at scsibus0 target 0 lun 0: <SanDisk, Ultra Fit, 1.00> disk removable 
 +[     2.962425] sd0: 14664 MB, 29793 cyl, 16 head, 63 sec, 512 bytes/sect x 30031872 sectors 
 +[     2.972425] sd0: GPT GUID: 6a26851d-8ddf-454a-92b7-d765c85aa069 
 +[     2.972425] dk3 at sd0: "EFI system", 262144 blocks at 2048, type: msdos 
 +[     2.972425] dk4 at sd0: "30c4cc4e-5369-449c-8994-a4b1ea665b4b", 4853760 blocks at 264192, type: ffs 
 +[     3.352424] uhub6 at uhub4 port 4: Chicony (0x0472) Generic USB Hub (0x0065), class 9/0, rev 1.10/1.00, addr 5 
 +[     3.352424] uhub6: 3 ports with 2 removable, bus powered 
 +[     4.112423] uhidev2 at uhub6 port 1 configuration 1 interface 0 
 +[     4.112423] uhidev2: Chicony (0x0472) PFU-65 USB Keyboard (0x0065), rev 1.10/1.00, addr 6, iclass 3/1 
 +[     4.112423] ukbd0 at uhidev2 
 +[     4.112423] wskbd0 at ukbd0: console keyboard, using wsdisplay0 
 +[     4.592422] ugen0 at uhub3 port 10 
 +[     4.592422] ugen0: MediaTek Inc. (0x0e8d) Wireless_Device (0xc616), rev 2.10/1.00, addr 7 
 +[     4.592422] swwdog0: software watchdog initialized 
 +[     4.712422] boot device: sd0 
 +[     4.712422] root on dk4 dumps on dk2 
 +[     4.732421] root file system type: ffs 
 +[     4.732421] kern.module.path=/stand/amd64/10.0/modules 
 +[     4.732421] WARNING: clock gained 63 days 
 +
 +</code> 
 + 
 +==== FreeBSD sysctl Loader Tunables (Pcores only) ==== 
 + 
 +<code - t1-sysctl-Ta>
 t1$ sysctl -Ta t1$ sysctl -Ta
 kern.maxproc: 70612 kern.maxproc: 70612
行 1996: 行 2604:
 compat.linuxkpi.debug: 0 compat.linuxkpi.debug: 0
 </code> </code>
 +
 +==== FreeBSD sysctl Loader Tunables (All cores) ====
  
 <code - t1:sysctl -Ta> <code - t1:sysctl -Ta>
行 3230: 行 3840:
 </code> </code>
  
-=== sysctl Tunables ===+==== FreeBSD sysctl Tunables (Pcores only) ==== 
 <code - t1:sysctl -Wa> <code - t1:sysctl -Wa>
 t1$ sysctl -Wa t1$ sysctl -Wa
行 4990: 行 5601:
 compat.linuxkpi.debug: 0 compat.linuxkpi.debug: 0
 </code> </code>
 +
 +==== FreeBSD sysctl Tunables (All cores) ====
  
 <code - t2:sysctl -Wa> <code - t2:sysctl -Wa>
行 6783: 行 7396:
 </code> </code>
  
 +==== NetBSD sysctl ====
 +
 +<code>
 +# sysctl -a
 +kern.ostype = NetBSD
 +kern.osrelease = 10.0
 +kern.osrevision = 1000000000
 +kern.version = NetBSD 10.0 (GENERIC) #0: Thu Mar 28 08:33:33 UTC 2024
 +        mkrepro@mkrepro.NetBSD.org:/usr/src/sys/arch/amd64/compile/GENERIC
 +
 +kern.maxvnodes = 3341606
 +kern.maxproc = 1044
 +kern.maxfiles = 20000
 +kern.argmax = 262144
 +kern.securelevel = -1
 +kern.hostname =
 +kern.hostid = 0
 +kern.clockrate: tick = 10000, tickadj = 40, hz = 100, profhz = 100, stathz = 100
 +kern.posix1version = 200112
 +kern.ngroups = 16
 +kern.job_control = 1
 +kern.saved_ids = 0
 +kern.domainname =
 +kern.maxpartitions = 16
 +kern.rawpartition = 3
 +kern.rtc_offset = 0
 +kern.root_device = dk4
 +kern.msgbufsize = 65504
 +kern.fsync = 1
 +kern.synchronized_io = 1
 +kern.iov_max = 1024
 +kern.mbuf.msize = 512
 +kern.mbuf.mclbytes = 2048
 +kern.mbuf.nmbclusters = 2088504
 +kern.mbuf.mblowat = 16
 +kern.mbuf.mcllowat = 8
 +kern.mbuf.nmbclusters_limit = 8354016
 +kern.mapped_files = 1
 +kern.memlock = 1
 +kern.memlock_range = 1
 +kern.memory_protection = 1
 +kern.login_name_max = 17
 +kern.defcorename = %n.core
 +kern.logsigexit = 0
 +kern.fscale = 2048
 +kern.ccpu = 1948
 +kern.cp_time: user = 290, nice = 0, sys = 171, intr = 98, idle = 177172365
 +kern.consdev = ttyE0
 +kern.maxptys = 992
 +kern.pipe.maxbigpipes = 32
 +kern.pipe.nbigpipes = 0
 +kern.pipe.kvasize = 524288
 +kern.maxphys = 65536
 +kern.sbmax = 262144
 +kern.tkstat.nin = 1049
 +kern.tkstat.nout = 543185
 +kern.tkstat.cancc = 1
 +kern.tkstat.rawcc = 1048
 +kern.monotonic_clock = 200112
 +kern.urandom = -1863677389
 +kern.labelsector = 1
 +kern.labeloffset = 0
 +kern.forkfsleep = 0
 +kern.posix_threads = 200112
 +kern.posix_semaphores = 200112
 +kern.posix_barriers = 200112
 +kern.posix_timers = 200112
 +kern.posix_spin_locks = 200112
 +kern.posix_reader_writer_locks = 200112
 +kern.dump_on_panic = 1
 +kern.somaxkva = 16777216
 +kern.root_partition = 4
 +kern.drivers = [160 -1 crypto], [161 -1 pf], [163 163 fss], [164 -1 pps], [165 -1 ptm], [166 -1 atabus], [167 -1 drvctl], [168 168 dk], [169 -1 tap], [170 -1 veriexec], [171 -1 fw], [172 -1 ucycom], [173 -1 gpio], [174 -1 utoppy], [175 -1 bthub], [176 -1 amr], [177 -1 lockstat], [178 -1 putter], [179 -1 srt], [180 -1 drm], [181 -1 bio], [182 182 altmem], [187 -1 twa], [188 -1 cpuctl], [189 -1 pad], [190 190 zfs], [191 -1 tprof], [192 -1 isv], [193 -1 video], [194 169 dm], [195 -1 hdaudio], [196 -1 uhso], [197 197 rumpblk], [198 -1 npf], [199 199 flash], [200 -1 dtv], [201 -1 iic], [203 -1 iscsi], [204 -1 tpm], [205 -1 mfi], [206 -1 seeprom], [207 -1 dtrace], [208 208 spiflash], [209 -1 lua], [240 -1 spkr], [340 -1 hdmicec], [341 -1 nvme], [342 -1 qemufwcfg], [343 -1 autofs], [344 -1 gpiopps], [345 -1 nvmm], [346 -1 kcov], [347 -1 spi], [354 -1 ipmi], [355 -1 vhci], [356 -1 vio9p], [357 -1 fault], [358 -1 wwanc], [359 -1 acpi], [360 -1 smbios], [361 -1 efi], [362 -1 sht3xtemp], [363 -1 scmd], [364 -1 viocon], [365 -1 gpioirq], [0 -1 cons], [1 -1 ctty], [2 -1 mem], [3 0 wd], [4 1 swap], [5 -1 pts], [6 -1 ptc], [7 -1 log], [8 -1 com], [9 2 fd], [10 3 wt], [12 -1 pc], [13 4 sd], [14 5 st], [15 6 cd], [16 -1 lpt], [17 -1 ch], [18 16 ccd], [19 -1 ss], [20 -1 uk], [22 -1 filedesc], [23 -1 bpf], [24 17 md], [38 -1 cy], [39 7 mcd], [40 -1 tun], [41 14 vnd], [42 -1 audio], [44 -1 ipl], [46 -1 rnd], [47 -1 wsdisplay], [48 -1 wskbd], [49 -1 wsmouse], [55 -1 usb], [56 -1 uhid], [57 -1 ulpt], [58 -1 midi], [59 -1 sequencer], [60 -1 vcoda], [61 -1 scsibus], [62 18 raid], [63 -1 esh], [64 -1 ugen], [65 -1 wsmux], [66 -1 ucom], [67 -1 sysmon], [69 19 ld], [71 -1 bktr], [73 -1 cz], [74 -1 ses], [76 -1 iop], [77 -1 altq], [78 -1 mlx], [79 -1 clockctl], [81 20 cgd], [82 -1 agp], [83 -1 pci], [84 -1 irframe], [85 -1 ksyms], [86 -1 wsfont], [87 -1 mly], [88 -1 dpti], [89 -1 joy], [90 -1 cir], [91 -1 radio], [92 -1 kttcp], [96 -1 dpt], [97 -1 twe], [109 -1 vboxguest], [141 -1 xenevt], [142 142 xbd], [143 -1 xencons]
 +kern.cp_id: 0 = 0, 1 = 1, 2 = 2, 3 = 3, 4 = 4, 5 = 5, 6 = 6, 7 = 7, 8 = 8, 9 = 9, 10 = 10, 11 = 11, 12 = 12, 13 = 13, 14 = 14, 15 = 15, 16 = 16, 17 = 17, 18 = 18, 19 = 19
 +kern.hardclock_ticks = 8858651
 +kern.arandom = -1301246027
 +kern.ipc.sysvmsg = 1
 +kern.ipc.sysvsem = 1
 +kern.ipc.sysvshm = 1
 +kern.ipc.shmmax = 17109024768
 +kern.ipc.shmmni = 128
 +kern.ipc.shmseg = 128
 +kern.ipc.shmmaxpgs = 4177008
 +kern.ipc.shm_use_phys = 0
 +kern.ipc.msgmni = 40
 +kern.ipc.msgseg = 2048
 +kern.ipc.semmni = 10
 +kern.ipc.semmns = 60
 +kern.ipc.semmnu = 30
 +kern.boottime = Thu May 30 17:37:14 2024
 +kern.sofixedbuf = 1
 +kern.veriexec.verbose = 0
 +kern.veriexec.strict = 0
 +kern.veriexec.algorithms = SHA256 SHA384 SHA512
 +kern.crypto.aes.selected = Intel AES-NI
 +kern.crypto.chacha.selected = x86 SSE2 ChaCha
 +kern.boothowto = 0
 +kern.labelusesmbr = 1
 +kern.coredump.setid.dump = 0
 +kern.coredump.setid.path = /var/crash/%n.core
 +kern.coredump.setid.owner = 0
 +kern.coredump.setid.group = 0
 +kern.coredump.setid.mode = 0600 (rw------- )
 +kern.no_sa_support = 1
 +kern.configname = GENERIC
 +kern.buildinfo =
 +kern.messages = 2
 +kern.pmf.debug.event = 0
 +kern.pmf.debug.suspend = 0
 +kern.pmf.debug.suspensor = 0
 +kern.pmf.debug.idle = 0
 +kern.pmf.debug.transition = 0
 +kern.sched.cacheht_time = 10
 +kern.sched.skim_interval = 10
 +kern.sched.min_catch = 1
 +kern.sched.timesoftints = 0
 +kern.sched.kpreempt_pri = 128
 +kern.sched.name = 4.4BSD
 +kern.sched.rtts = 100
 +kern.sched.pri_min = 0
 +kern.sched.pri_max = 63
 +kern.timecounter.choice = TSC(q=3000, f=2918405000 Hz) clockinterrupt(q=0, f=100 Hz) lapic(q=-100, f=38400000 Hz) hpet0(q=2000, f=19200000 Hz) ACPI-Fast(q=1000, f=3579545 Hz) i8254(q=100, f=1193182 Hz) dummy(q=-1000000, f=1000000 Hz)
 +kern.timecounter.hardware = TSC
 +kern.timecounter.timestepwarnings = 0
 +kern.threadpool.idle_ms = 30000
 +kern.posix_aio = 200112
 +kern.aio_listio_max = 512
 +kern.aio_max = 8192
 +kern.posix_msg = 200112
 +kern.mqueue.mq_open_max = 512
 +kern.mqueue.mq_prio_max = 32
 +kern.mqueue.mq_max_msgsize = 16384
 +kern.mqueue.mq_def_maxmsg = 32
 +kern.mqueue.mq_max_maxmsg = 512
 +kern.pset.psets_max = 256
 +kern.pset.list = 0:1
 +kern.direct_select = 0
 +kern.module.autoload = 1
 +kern.module.autounload_unsafe = 0
 +kern.module.verbose = 0
 +kern.module.path = /stand/amd64/10.0/modules
 +kern.module.autotime = 10
 +kern.sooptions = 0
 +kern.entropy.collection = 1
 +kern.entropy.depletion = 0
 +kern.entropy.consolidate = 0
 +kern.entropy.gather = 0
 +kern.entropy.needed = 0
 +kern.entropy.pending = 0
 +kern.entropy.samplesneeded = 0
 +kern.entropy.samplespending = 512
 +kern.entropy.epoch = 42
 +kern.maxlwp = 65265
 +kern.uidinfo.proccnt = 10
 +kern.uidinfo.lwpcnt = 0
 +kern.uidinfo.lockcnt = 1
 +kern.uidinfo.semcnt = 0
 +kern.uidinfo.sbsize = 3109735
 +kern.posix_sched = 200112
 +kern.detachall = 0
 +kern.tty.qsize = 1024
 +kern.bufq.strategies = priocscan fcfs disksort
 +kern.expose_address = 1
 +kern.posix.semmax = 128
 +kern.posix.semcnt = 0
 +kern.usercrypto = 1
 +kern.userasymcrypto = 1
 +kern.cryptodevallowsoft = 1
 +vm.loadavg: 0.00 0.00 0.00
 +vm.maxslp = 20
 +vm.uspace = 24576
 +vm.minaddress = 0
 +vm.maxaddress = 140462072524800
 +vm.guard_size = 1048576
 +vm.thread_guard_size = 65536
 +vm.user_va0_disable = 1
 +vm.anonmin = 10
 +vm.filemin = 10
 +vm.execmin = 5
 +vm.anonmax = 80
 +vm.filemax = 50
 +vm.execmax = 30
 +vm.inactivepct = 33
 +vm.swap_encrypt = 1
 +vm.bufcache = 15
 +vm.bufmem = 1700864
 +vm.bufmem_lowater = 1283176960
 +vm.bufmem_hiwater = 10265415680
 +vfs.generic.maxtypenum = 10
 +vfs.generic.usermount = 0
 +vfs.generic.magiclinks = 0
 +vfs.generic.timestamp_precision = 3
 +vfs.generic.fstypes = mfs lfs ffs ext2fs nfs umap procfs overlay null kernfs fdesc union tmpfs puffs ptyfs ntfs msdos efs cd9660 coda
 +vfs.generic.dirhash.memused = 0
 +vfs.generic.dirhash.maxmem = 1048576
 +vfs.ffs.log_changeopt = 0
 +vfs.ffs.extattr_autocreate = 1024
 +vfs.nfs.iothreads = -1
 +vfs.lfs.flushindir = 1
 +vfs.lfs.clean_vnhead = 0
 +vfs.lfs.dostats = 1
 +vfs.lfs.pagetrip = 0
 +vfs.lfs.stats.segsused = 0
 +vfs.lfs.stats.psegwrites = 0
 +vfs.lfs.stats.psyncwrites = 0
 +vfs.lfs.stats.pcleanwrites = 0
 +vfs.lfs.stats.blocktot = 0
 +vfs.lfs.stats.cleanblocks = 0
 +vfs.lfs.stats.ncheckpoints = 0
 +vfs.lfs.stats.nwrites = 0
 +vfs.lfs.stats.nsync_writes = 0
 +vfs.lfs.stats.wait_exceeded = 0
 +vfs.lfs.stats.write_exceeded = 0
 +vfs.lfs.stats.flush_invoked = 0
 +vfs.lfs.stats.vflush_invoked = 0
 +vfs.lfs.stats.clean_inlocked = 0
 +vfs.lfs.stats.clean_vnlocked = 0
 +vfs.lfs.stats.segs_reclaimed = 0
 +vfs.lfs.ignore_lazy_sync = 1
 +vfs.cd9660.utf8_joliet = 1
 +vfs.ufs.dirhash.minblocks = 5
 +vfs.ufs.dirhash.maxmem = 33554432
 +vfs.ufs.dirhash.memused = 53781
 +vfs.ufs.dirhash.docheck = 0
 +vfs.wapbl.flush_disk_cache = 1
 +vfs.wapbl.verbose_commit = 0
 +vfs.wapbl.allow_dpofua = 0
 +vfs.wapbl.journal_iobufs = 4
 +vfs.sync.delay = 30
 +vfs.sync.filedelay = 30
 +vfs.sync.dirdelay = 15
 +vfs.sync.metadelay = 10
 +vfs.ulfs.dirhash.minblocks = 5
 +vfs.ulfs.dirhash.maxmem = 33554432
 +vfs.ulfs.dirhash.memused = 0
 +vfs.ulfs.dirhash.docheck = 0
 +net.local.stream.sendspace = 8192
 +net.local.stream.recvspace = 8192
 +net.local.dgram.sendspace = 2048
 +net.local.dgram.recvspace = 16384
 +net.local.inflight = 0
 +net.local.deferred = 0
 +net.inet.ip.forwarding = 0
 +net.inet.ip.redirect = 1
 +net.inet.ip.ttl = 64
 +net.inet.ip.forwsrcrt = 0
 +net.inet.ip.directed-broadcast = 0
 +net.inet.ip.allowsrcrt = 0
 +net.inet.ip.subnetsarelocal = 1
 +net.inet.ip.mtudisc = 1
 +net.inet.ip.anonportmin = 49152
 +net.inet.ip.anonportmax = 65535
 +net.inet.ip.mtudisctimeout = 600
 +net.inet.ip.hostzerobroadcast = 0
 +net.inet.ip.gifttl = 30
 +net.inet.ip.lowportmin = 600
 +net.inet.ip.lowportmax = 1023
 +net.inet.ip.maxfragpackets = 200
 +net.inet.ip.grettl = 30
 +net.inet.ip.checkinterface = 0
 +net.inet.ip.ifq.len = 0
 +net.inet.ip.ifq.maxlen = 256
 +net.inet.ip.ifq.drops = 0
 +net.inet.ip.random_id = 1
 +net.inet.ip.do_loopback_cksum = 0
 +net.inet.ip.dad_count = 3
 +net.inet.ip.anonportalgo.available = bsd random_start random_pick hash doublehash randinc
 +net.inet.ip.anonportalgo.selected = bsd
 +net.inet.ip.anonportalgo.reserve =
 +net.inet.icmp.maskrepl = 0
 +net.inet.icmp.returndatabytes = 8
 +net.inet.icmp.errppslimit = 100
 +net.inet.icmp.rediraccept = 1
 +net.inet.icmp.redirtimeout = 600
 +net.inet.icmp.bmcastecho = 0
 +net.inet.icmp.dynamic_rt_msg = 0
 +net.inet.tcp.rfc1323 = 1
 +net.inet.tcp.sendspace = 32768
 +net.inet.tcp.recvspace = 32768
 +net.inet.tcp.mssdflt = 536
 +net.inet.tcp.syn_cache_limit = 10255
 +net.inet.tcp.syn_bucket_limit = 105
 +net.inet.tcp.init_win = 4
 +net.inet.tcp.mss_ifmtu = 0
 +net.inet.tcp.sack.enable = 1
 +net.inet.tcp.sack.maxholes = 32
 +net.inet.tcp.sack.globalmaxholes = 1024
 +net.inet.tcp.sack.globalholes = 0
 +net.inet.tcp.win_scale = 1
 +net.inet.tcp.timestamps = 1
 +net.inet.tcp.cwm = 0
 +net.inet.tcp.cwm_burstsize = 4
 +net.inet.tcp.ack_on_push = 0
 +net.inet.tcp.keepidle = 14400
 +net.inet.tcp.keepintvl = 150
 +net.inet.tcp.keepcnt = 8
 +net.inet.tcp.slowhz = 2
 +net.inet.tcp.log_refused = 0
 +net.inet.tcp.rstppslimit = 100
 +net.inet.tcp.delack_ticks = 20
 +net.inet.tcp.init_win_local = 4
 +net.inet.tcp.do_loopback_cksum = 0
 +net.inet.tcp.msl = 30
 +net.inet.tcp.minmss = 216
 +net.inet.tcp.congctl.available = reno newreno cubic
 +net.inet.tcp.congctl.selected = newreno
 +net.inet.tcp.keepinit = 150
 +net.inet.tcp.recvbuf_auto = 1
 +net.inet.tcp.recvbuf_inc = 16384
 +net.inet.tcp.recvbuf_max = 262144
 +net.inet.tcp.sendbuf_auto = 1
 +net.inet.tcp.sendbuf_inc = 8192
 +net.inet.tcp.sendbuf_max = 262144
 +net.inet.tcp.ecn.enable = 0
 +net.inet.tcp.ecn.maxretries = 1
 +net.inet.tcp.local_by_rtt = 0
 +net.inet.tcp.iss_hash = 0
 +net.inet.tcp.abc.enable = 1
 +net.inet.tcp.abc.aggressive = 1
 +net.inet.tcp.mslt.enable = 1
 +net.inet.tcp.mslt.loopback = 2
 +net.inet.tcp.mslt.local = 10
 +net.inet.tcp.mslt.remote = 60
 +net.inet.tcp.mslt.remote_threshold = 6
 +net.inet.tcp.vtw.enable = 0
 +net.inet.tcp.vtw.entries = 16
 +net.inet.udp.checksum = 1
 +net.inet.udp.sendspace = 9216
 +net.inet.udp.recvspace = 41600
 +net.inet.udp.do_loopback_cksum = 0
 +net.inet.carp.preempt = 0
 +net.inet.carp.arpbalance = 0
 +net.inet.carp.allow = 1
 +net.inet.carp.log = 0
 +net.inet.ipsec.def_policy = 1
 +net.inet.ipsec.esp_trans_deflev = 1
 +net.inet.ipsec.esp_net_deflev = 1
 +net.inet.ipsec.ah_trans_deflev = 1
 +net.inet.ipsec.ah_net_deflev = 1
 +net.inet.ipsec.ah_cleartos = 1
 +net.inet.ipsec.ah_offsetmask = 0
 +net.inet.ipsec.dfbit = 2
 +net.inet.ipsec.ecn = 0
 +net.inet.ipsec.debug = 0
 +net.inet.ipsec.ipip_spoofcheck = 1
 +net.inet.ipsec.enabled = 1
 +net.inet.ipsec.used = 0
 +net.inet.ipsec.ah_enable = 1
 +net.inet.ipsec.esp_enable = 1
 +net.inet.ipsec.ipcomp_enable = 1
 +net.inet.ipsec.crypto_support = 0
 +net.inet.arp.nd_delay = 5
 +net.inet.arp.nd_bmaxtries = 3
 +net.inet.arp.nd_umaxtries = 3
 +net.inet.arp.nd_reachable = 30000
 +net.inet.arp.nd_retrans = 1000
 +net.inet.arp.nd_nud = 1
 +net.inet.arp.nd_maxnudhint = 0
 +net.inet.arp.maxqueuelen = 1
 +net.inet.arp.log_movements = 0
 +net.inet.arp.log_permanent_modify = 1
 +net.inet.arp.log_wrong_iface = 1
 +net.inet.arp.debug = 0
 +net.inet.accf.http.parsehttpversion = 1
 +net.inet6.tcp6.rfc1323 = 1
 +net.inet6.tcp6.sendspace = 32768
 +net.inet6.tcp6.recvspace = 32768
 +net.inet6.tcp6.mssdflt = 536
 +net.inet6.tcp6.syn_cache_limit = 10255
 +net.inet6.tcp6.syn_bucket_limit = 105
 +net.inet6.tcp6.init_win = 4
 +net.inet6.tcp6.mss_ifmtu = 0
 +net.inet6.tcp6.sack.enable = 1
 +net.inet6.tcp6.sack.maxholes = 32
 +net.inet6.tcp6.sack.globalmaxholes = 1024
 +net.inet6.tcp6.sack.globalholes = 0
 +net.inet6.tcp6.win_scale = 1
 +net.inet6.tcp6.timestamps = 1
 +net.inet6.tcp6.cwm = 0
 +net.inet6.tcp6.cwm_burstsize = 4
 +net.inet6.tcp6.ack_on_push = 0
 +net.inet6.tcp6.keepidle = 14400
 +net.inet6.tcp6.keepintvl = 150
 +net.inet6.tcp6.keepcnt = 8
 +net.inet6.tcp6.slowhz = 2
 +net.inet6.tcp6.log_refused = 0
 +net.inet6.tcp6.rstppslimit = 100
 +net.inet6.tcp6.delack_ticks = 20
 +net.inet6.tcp6.init_win_local = 4
 +net.inet6.tcp6.do_loopback_cksum = 0
 +net.inet6.tcp6.msl = 30
 +net.inet6.tcp6.minmss = 216
 +net.inet6.tcp6.congctl.available = reno newreno cubic
 +net.inet6.tcp6.congctl.selected = newreno
 +net.inet6.tcp6.keepinit = 150
 +net.inet6.tcp6.recvbuf_auto = 1
 +net.inet6.tcp6.recvbuf_inc = 16384
 +net.inet6.tcp6.recvbuf_max = 262144
 +net.inet6.tcp6.sendbuf_auto = 1
 +net.inet6.tcp6.sendbuf_inc = 8192
 +net.inet6.tcp6.sendbuf_max = 262144
 +net.inet6.tcp6.ecn.enable = 0
 +net.inet6.tcp6.ecn.maxretries = 1
 +net.inet6.tcp6.local_by_rtt = 0
 +net.inet6.tcp6.iss_hash = 0
 +net.inet6.tcp6.abc.enable = 1
 +net.inet6.tcp6.abc.aggressive = 1
 +net.inet6.tcp6.mslt.enable = 1
 +net.inet6.tcp6.mslt.loopback = 2
 +net.inet6.tcp6.mslt.local = 10
 +net.inet6.tcp6.mslt.remote = 60
 +net.inet6.tcp6.mslt.remote_threshold = 6
 +net.inet6.tcp6.vtw.enable = 0
 +net.inet6.tcp6.vtw.entries = 16
 +net.inet6.udp6.sendspace = 9216
 +net.inet6.udp6.recvspace = 42080
 +net.inet6.udp6.do_loopback_cksum = 0
 +net.inet6.ip6.forwarding = 0
 +net.inet6.ip6.redirect = 1
 +net.inet6.ip6.hlim = 64
 +net.inet6.ip6.maxfragpackets = 200
 +net.inet6.ip6.keepfaith = 0
 +net.inet6.ip6.log_interval = 5
 +net.inet6.ip6.hdrnestlimit = 15
 +net.inet6.ip6.dad_count = 1
 +net.inet6.ip6.auto_flowlabel = 1
 +net.inet6.ip6.defmcasthlim = 1
 +net.inet6.ip6.gifhlim = 30
 +net.inet6.ip6.kame_version = NetBSD-current
 +net.inet6.ip6.use_deprecated = 1
 +net.inet6.ip6.v6only = 1
 +net.inet6.ip6.anonportmin = 49152
 +net.inet6.ip6.anonportmax = 65535
 +net.inet6.ip6.lowportmin = 600
 +net.inet6.ip6.lowportmax = 1023
 +net.inet6.ip6.auto_linklocal = 1
 +net.inet6.ip6.use_defaultzone = 0
 +net.inet6.ip6.maxfrags = 200
 +net.inet6.ip6.ifq.len = 0
 +net.inet6.ip6.ifq.maxlen = 256
 +net.inet6.ip6.ifq.drops = 0
 +net.inet6.ip6.gifpmtu = 0
 +net.inet6.ip6.ipsecifhlim = 64
 +net.inet6.ip6.ipsecifpmtu = 0
 +net.inet6.ip6.prefer_tempaddr = 0
 +net.inet6.ip6.mcast_pmtu = 0
 +net.inet6.ip6.anonportalgo.available = bsd random_start random_pick hash doublehash randinc
 +net.inet6.ip6.anonportalgo.selected = bsd
 +net.inet6.ip6.anonportalgo.reserve =
 +net.inet6.ip6.neighborgcthresh = 2048
 +net.inet6.ip6.maxdynroutes = 4096
 +net.inet6.ip6.param_rt_msg = 1
 +net.inet6.ipsec6.def_policy = 1
 +net.inet6.ipsec6.esp_trans_deflev = 1
 +net.inet6.ipsec6.esp_net_deflev = 1
 +net.inet6.ipsec6.ah_trans_deflev = 1
 +net.inet6.ipsec6.ah_net_deflev = 1
 +net.inet6.ipsec6.ecn = 0
 +net.inet6.ipsec6.debug = 0
 +net.inet6.ipsec6.enabled = 1
 +net.inet6.ipsec6.used = 0
 +net.inet6.icmp6.rediraccept = 1
 +net.inet6.icmp6.redirtimeout = 600
 +net.inet6.icmp6.nd6_prune = 1
 +net.inet6.icmp6.nd6_delay = 5
 +net.inet6.icmp6.nd6_umaxtries = 3
 +net.inet6.icmp6.nd6_mmaxtries = 3
 +net.inet6.icmp6.nd6_useloopback = 1
 +net.inet6.icmp6.nodeinfo = 1
 +net.inet6.icmp6.errppslimit = 100
 +net.inet6.icmp6.nd6_maxnudhint = 0
 +net.inet6.icmp6.mtudisc_hiwat = 1280
 +net.inet6.icmp6.mtudisc_lowat = 256
 +net.inet6.icmp6.nd6_debug = 0
 +net.inet6.icmp6.maxqueuelen = 1
 +net.inet6.icmp6.reflect_pmtu = 0
 +net.inet6.icmp6.dynamic_rt_msg = 0
 +net.key.debug = 0
 +net.key.spi_try = 1000
 +net.key.spi_min_value = 256
 +net.key.spi_max_value = 268435455
 +net.key.random_int = 60
 +net.key.larval_lifetime = 30
 +net.key.blockacq_count = 10
 +net.key.blockacq_lifetime = 20
 +net.key.esp_keymin = 256
 +net.key.esp_auth = 0
 +net.key.ah_keymin = 128
 +net.key.prefered_oldsa = 0
 +net.key.allow_different_idtype = 0
 +net.bluetooth.hci.sendspace = 259
 +net.bluetooth.hci.recvspace = 4096
 +net.bluetooth.hci.acl_expiry = 10
 +net.bluetooth.hci.memo_expiry = 600
 +net.bluetooth.hci.eventq_max = 20
 +net.bluetooth.hci.aclrxq_max = 50
 +net.bluetooth.hci.scorxq_max = 50
 +net.bluetooth.l2cap.sendspace = 4096
 +net.bluetooth.l2cap.recvspace = 4096
 +net.bluetooth.l2cap.rtx = 30
 +net.bluetooth.l2cap.ertx = 180
 +net.bluetooth.rfcomm.sendspace = 4096
 +net.bluetooth.rfcomm.recvspace = 4096
 +net.bluetooth.rfcomm.mtu_default = 127
 +net.bluetooth.rfcomm.ack_timeout = 20
 +net.bluetooth.rfcomm.mcc_timeout = 20
 +net.bluetooth.sco.sendspace = 4096
 +net.bluetooth.sco.recvspace = 4096
 +net.bpf.jit = 0
 +net.bpf.maxbufsize = 1048576
 +net.ether.rps_hash = zero
 +net.gif.rps_hash = zero
 +net.pppoe.term_unknown = 0
 +net.pppoe.rps_hash = zero
 +net.interfaces.ixl0.rcvq.drops = 0
 +net.interfaces.ixl0.sndq.len = 0
 +net.interfaces.ixl0.sndq.maxlen = 512
 +net.interfaces.ixl0.sndq.drops = 0
 +net.interfaces.ixl1.rcvq.drops = 0
 +net.interfaces.ixl1.sndq.len = 0
 +net.interfaces.ixl1.sndq.maxlen = 512
 +net.interfaces.ixl1.sndq.drops = 0
 +net.interfaces.igc0.rcvq.drops = 0
 +net.interfaces.igc0.sndq.len = 0
 +net.interfaces.igc0.sndq.maxlen = 1023
 +net.interfaces.igc0.sndq.drops = 0
 +net.interfaces.igc0.watchdog.trigger = 0
 +net.interfaces.igc1.rcvq.drops = 0
 +net.interfaces.igc1.sndq.len = 0
 +net.interfaces.igc1.sndq.maxlen = 1023
 +net.interfaces.igc1.sndq.drops = 0
 +net.interfaces.igc1.watchdog.trigger = 0
 +net.interfaces.lo0.sndq.len = 0
 +net.interfaces.lo0.sndq.maxlen = 256
 +net.interfaces.lo0.sndq.drops = 0
 +net.wqinput.icmp.inputq.drops = 0
 +net.wqinput.carp.inputq.drops = 0
 +net.wqinput.carp6.inputq.drops = 0
 +net.wqinput.icmp6.inputq.drops = 0
 +net.ipsecif.rps_hash = zero
 +net.ipsecif.use_fixed_reqid = 0
 +net.ipsecif.reqid_base = 8192
 +net.ipsecif.reqid_last = 12287
 +debug.crashme.panic = 0
 +debug.crashme.null_deref = 0
 +debug.crashme.null_jump = 0
 +debug.crashme.ddb = 0
 +debug.crashme.mutex_recursion = 0
 +debug.crashme_enable = 0
 +hw.machine = amd64
 +hw.model = Intel 686-class
 +hw.ncpu = 20
 +hw.byteorder = 1234
 +hw.physmem = -1
 +hw.usermem = -1
 +hw.pagesize = 4096
 +hw.disknames = ld0 dk0 dk1 dk2 sd0 dk3 dk4
 +hw.machine_arch = x86_64
 +hw.alignbytes = 7
 +hw.cnmagic =
 +hw.physmem64 = 68436111360
 +hw.usermem64 = 68436111360
 +hw.iostatnames = ld0 dk0 dk1 dk2 sd0 dk3 dk4
 +hw.ncpuonline = 20
 +hw.ubsec.maxbatch = 1
 +hw.ubsec.maxaggr = 1
 +hw.ipw.accept_eula = 0
 +hw.iwi.accept_eula = 0
 +hw.uhso.autoswitch = 1
 +hw.fwohci.nocyclemaster = 0
 +hw.fwohci.phydma_enable = 1
 +hw.ieee1394if.try_bmr = 1
 +hw.ieee1394if.hold_count = 0
 +hw.ieee1394if.ieee1394_debug = 0
 +hw.fwmem.eui64_hi = 0
 +hw.fwmem.eui64_lo = 0
 +hw.fwmem.speed = 2
 +hw.fwmem.fwmem_debug = 0
 +hw.fwip.rx_queue_len = 256
 +hw.fwip.if_fwip_debug = 0
 +hw.sbp.auto_login = 1
 +hw.sbp.max_speed = -1
 +hw.sbp.exclusive_login = 1
 +hw.sbp.login_delay = 1000
 +hw.sbp.scan_delay = 500
 +hw.sbp.use_doorbell = 0
 +hw.sbp.tags = 0
 +hw.sbp.sbp_debug = 0
 +hw.acpi.root = 1116430356
 +hw.acpi.sleep.state = 0
 +hw.acpi.sleep.states = S0 S3 S4 S5
 +hw.acpi.sleep.beep = 0
 +hw.acpi.sleep.vbios = 2
 +hw.acpi.stat.gpe = 0
 +hw.acpi.stat.sci = 0
 +hw.acpi.stat.fixed = 0
 +hw.acpi.stat.method = 6662
 +hw.acpi.power.xhci0 = D0
 +hw.acpi.power.ppb2 = D0
 +hw.acpi.power.ppb3 = D0
 +hw.acpi.power.acpifan0 = D3
 +hw.acpi.power.acpifan1 = D3
 +hw.acpi.power.acpifan2 = D3
 +hw.acpi.power.acpifan3 = D3
 +hw.acpi.power.acpifan4 = D3
 +hw.acpi.wake.ppb1 = 0
 +hw.acpi.wake.ixl0 = 0
 +hw.acpi.wake.ppb0 = 0
 +hw.acpi.wake.ppb5 = 0
 +hw.acpi.wake.nvme0 = 0
 +hw.acpi.wake.ppb6 = 0
 +hw.acpi.wake.igc1 = 0
 +hw.acpi.wake.ppb7 = 0
 +hw.acpi.wake.ppb4 = 0
 +hw.acpi.wake.igc0 = 0
 +hw.acpi.wake.xhci1 = 0
 +hw.acpi.wake.hdaudio0 = 0
 +hw.acpi.wake.xhci0 = 0
 +hw.acpi.wake.ppb2 = 0
 +hw.acpi.wake.ppb3 = 0
 +hw.acpi.cpu.dynamic = 1
 +hw.acpi.cpu.passive = 1
 +hw.acpi.acpiout15.brightness = 100
 +hw.acpi.acpiout16.brightness = 100
 +hw.acpi.acpivga0.bios_switch = 1
 +hw.hvn.udp_csum_fixup_mtu = 1420
 +hw.hvn.chimney_size = 0
 +hw.hvn.channel_count = 0
 +hw.hvn.tx_ring_count = 0
 +hw.ath.dwell = 200
 +hw.ath.calibrate = 30
 +hw.ath.outdoor = 1
 +hw.ath.countrycode = 0
 +hw.ath.regdomain = 0
 +hw.ath.debug = 0
 +hw.ath.rxbuf = 40
 +hw.ath.txbuf = 200
 +hw.ath.hal.dma_brt = 2
 +hw.ath.hal.sw_brt = 10
 +hw.ath.hal.swba_backoff = 0
 +hw.rtw.rfprog_fallback = 0
 +hw.rtw.host_rfio = 0
 +hw.swwdog.reboot = 0
 +hw.wsevent.default_version = 1
 +hw.firmware.path = /libdata/firmware:/usr/libdata/firmware:/usr/pkg/libdata/firmware:/usr/pkg/libdata
 +hw.drm2.i915_modparams.enable_dpcd_backlight = 0
 +hw.drm2.i915_modparams.inject_probe_failure = 0
 +hw.drm2.i915_modparams.enable_dp_mst = 1
 +hw.drm2.i915_modparams.dmc_firmware_path =
 +hw.drm2.i915_modparams.huc_firmware_path =
 +hw.drm2.i915_modparams.guc_firmware_path =
 +hw.drm2.i915_modparams.guc_log_level = -1
 +hw.drm2.i915_modparams.enable_guc = 0
 +hw.drm2.i915_modparams.edp_vswing = 0
 +hw.drm2.i915_modparams.nuclear_pageflip = 0
 +hw.drm2.i915_modparams.verbose_state_checks = 1
 +hw.drm2.i915_modparams.mmio_debug = -1
 +hw.drm2.i915_modparams.disable_display = 0
 +hw.drm2.i915_modparams.invert_brightness = 0
 +hw.drm2.i915_modparams.force_reset_modeset_test = 0
 +hw.drm2.i915_modparams.load_detect_test = 0
 +hw.drm2.i915_modparams.prefault_disable = 0
 +hw.drm2.i915_modparams.fastboot = -1
 +hw.drm2.i915_modparams.enable_ips = 1
 +hw.drm2.i915_modparams.disable_power_well = -1
 +hw.drm2.i915_modparams.alpha_support = 0
 +hw.drm2.i915_modparams.force_probe =
 +hw.drm2.i915_modparams.enable_psr = -1
 +hw.drm2.i915_modparams.enable_hangcheck = 1
 +hw.drm2.i915_modparams.vbt_firmware =
 +hw.drm2.i915_modparams.reset = 3
 +hw.drm2.i915_modparams.vbt_sdvo_panel_type = -1
 +hw.drm2.i915_modparams.panel_use_ssc = -1
 +hw.drm2.i915_modparams.lvds_channel_mode = 0
 +hw.drm2.i915_modparams.enable_fbc = -1
 +hw.drm2.i915_modparams.enable_dc = -1
 +hw.drm2.i915_modparams.modeset = -1
 +hw.drm2.radeon_cik_support = 1
 +hw.drm2.radeon_si_support = 1
 +hw.drm2.radeon_vce = 1
 +hw.drm2.radeon_uvd = 1
 +hw.drm2.radeon_mst = 0
 +hw.drm2.radeon_auxch = -1
 +hw.drm2.radeon_backlight = -1
 +hw.drm2.radeon_bapm = -1
 +hw.drm2.radeon_use_pflipirq = 2
 +hw.drm2.radeon_deep_color = 0
 +hw.drm2.radeon_vm_block_size = -1
 +hw.drm2.radeon_vm_size = 8
 +hw.drm2.radeon_hard_reset = 0
 +hw.drm2.radeon_runtime_pm = -1
 +hw.drm2.radeon_aspm = -1
 +hw.drm2.radeon_dpm = -1
 +hw.drm2.radeon_fastfb = 0
 +hw.drm2.radeon_lockup_timeout = 10000
 +hw.drm2.radeon_msi = -1
 +hw.drm2.radeon_pcie_gen2 = -1
 +hw.drm2.radeon_hw_i2c = 0
 +hw.drm2.radeon_disp_priority = 0
 +hw.drm2.radeon_audio = -1
 +hw.drm2.radeon_tv = 1
 +hw.drm2.radeon_connector_table = 0
 +hw.drm2.radeon_testing = 0
 +hw.drm2.radeon_benchmarking = 0
 +hw.drm2.radeon_gart_size = -1
 +hw.drm2.radeon_agpmode = 0
 +hw.drm2.radeon_vram_limit = 0
 +hw.drm2.radeon_r4xx_atom = 0
 +hw.drm2.radeon_dynclks = -1
 +hw.drm2.radeon_modeset = -1
 +hw.drm2.radeon_no_wb = 0
 +hw.drm2.nouveau_tv_norm =
 +hw.drm2.nouveau_vram_pushbuf = 0
 +hw.drm2.nouveau_hdmimhz = 0
 +hw.drm2.nouveau_duallink = 1
 +hw.drm2.nouveau_tv_disable = 0
 +hw.drm2.nouveau_mst = 1
 +hw.drm2.nouveau_runtime_pm = -1
 +hw.drm2.nouveau_atomic = 0
 +hw.drm2.nouveau_modeset = -1
 +hw.drm2.nouveau_noaccel = 0
 +hw.drm2.nouveau_debug =
 +hw.drm2.nouveau_config =
 +hw.drm2.nouveau_fbcon_bpp = 0
 +hw.drm2.dp_aux_i2c_transfer_size = 16
 +hw.drm2.dp_aux_i2c_speed_khz = 10
 +hw.drm2.edid_fixup = 6
 +hw.drm2.drm_fbdev_overalloc = 100
 +hw.drm2.drm_fbdev_emulation = 1
 +hw.drm2.__drm_debug = 0
 +hw.drm2.drm_kms_helper_poll = 1
 +hw.drm2.drm_timestamp_precision = 20
 +hw.drm2.drm_vblank_offdelay = 5000
 +hw.ixl0.txrx_workqueue = 1
 +hw.ixl0.stats_interval = 10000
 +hw.ixl0.rx.itr = 122
 +hw.ixl0.rx.descriptor_num = 512
 +hw.ixl0.rx.intr_process_limit = 0
 +hw.ixl0.rx.process_limit = 256
 +hw.ixl0.tx.itr = 122
 +hw.ixl0.tx.descriptor_num = 512
 +hw.ixl0.tx.intr_process_limit = 256
 +hw.ixl0.tx.process_limit = 256
 +hw.ixl1.txrx_workqueue = 1
 +hw.ixl1.stats_interval = 10000
 +hw.ixl1.rx.itr = 122
 +hw.ixl1.rx.descriptor_num = 512
 +hw.ixl1.rx.intr_process_limit = 0
 +hw.ixl1.rx.process_limit = 256
 +hw.ixl1.tx.itr = 122
 +hw.ixl1.tx.descriptor_num = 512
 +hw.ixl1.tx.intr_process_limit = 256
 +hw.ixl1.tx.process_limit = 256
 +hw.audio0.blk_ms = 10
 +hw.audio0.multiuser = 0
 +machdep.biosbasemem = 632
 +machdep.biosextmem = 1053836
 +machdep.booted_kernel = netbsd
 +machdep.diskinfo: 80:0(0/0/0),1 81:0(0/0/0), dk0 dk1 dk2 dk3 dk4 ld0 sd0
 +machdep.fpu_present = 1
 +machdep.osfxsr = 1
 +machdep.sse = 1
 +machdep.sse2 = 1
 +machdep.fpu_save = 3
 +machdep.fpu_save_size = 2696
 +machdep.xsave_features = 519
 +machdep.dmi.system-vendor = Micro Computer (HK) Tech Limited
 +machdep.dmi.system-product = Venus Series
 +machdep.dmi.system-version = Default string
 +machdep.dmi.system-serial = MD126US129QQMQG00049
 +machdep.dmi.system-uuid = 57178b00-df81-11ee-bc60-b550600d7e00
 +machdep.dmi.bios-vendor = American Megatrends International, LLC.
 +machdep.dmi.bios-version = AHWSA.1.17
 +machdep.dmi.bios-date = 20231214
 +machdep.dmi.board-vendor = Shenzhen Meigao Electronic Equipment Co.,Ltd
 +machdep.dmi.board-product = AHWSA
 +machdep.dmi.board-version = Default string
 +machdep.dmi.board-serial = FHWSA129009B1020623
 +machdep.dmi.board-asset-tag = Default string
 +machdep.dmi.chassis-vendor = Default string
 +machdep.dmi.chassis-type = Default string
 +machdep.dmi.chassis-version = Default string
 +machdep.dmi.chassis-serial = Default string
 +machdep.dmi.chassis-asset-tag = Default string
 +machdep.dmi.processor-vendor = Intel(R) Corporation
 +machdep.dmi.processor-version = 12th Gen Intel(R) Core(TM) i9-12900H
 +machdep.dmi.processor-frequency = 4257 MHz
 +machdep.bootmethod = UEFI
 +machdep.cpu_brand = 12th Gen Intel(R) Core(TM) i9-12900H
 +machdep.sparse_dump = 1
 +machdep.tsc_freq = 2918405000
 +machdep.pae = 1
 +machdep.tsc_user_enable = 1
 +machdep.hypervisor = none
 +machdep.svs.enabled = 0
 +machdep.svs.pcid = 0
 +machdep.user_ldt = 0
 +machdep.spectre_v1.mitigated = 0
 +machdep.spectre_v2.hwmitigated = 1
 +machdep.spectre_v2.swmitigated = 1
 +machdep.spectre_v2.method = [GCC retpoline] + [Intel Enhanced IBRS]
 +machdep.spectre_v4.mitigated = 0
 +machdep.spectre_v4.method = (none)
 +machdep.mds.mitigated = 1
 +machdep.mds.method = [MDS_NO]
 +machdep.taa.mitigated = 1
 +machdep.taa.method = [TAA_NO]
 +machdep.idle-mechanism = acpi
 +machdep.smbios = 0x43b90000
 +machdep.cpu.frequency.target = 2901
 +machdep.cpu.frequency.current = 2901
 +machdep.cpu.frequency.available = 2901 2900 2700 2500 2400 2200 1900 1800 1600 1500 1300 1100 900 800 600 400
 +user.cs_path = /usr/bin:/bin:/usr/sbin:/sbin:/usr/pkg/bin:/usr/pkg/sbin:/usr/local/bin:/usr/local/sbin
 +user.bc_base_max = 2147483647
 +user.bc_dim_max = 65535
 +user.bc_scale_max = 2147483647
 +user.bc_string_max = 2147483647
 +user.coll_weights_max = 2
 +user.expr_nest_max = 32
 +user.line_max = 2048
 +user.re_dup_max = 255
 +user.posix2_version = 200112
 +user.posix2_c_bind = 1
 +user.posix2_c_dev = 0
 +user.posix2_char_term = 0
 +user.posix2_fort_dev = 0
 +user.posix2_fort_run = 0
 +user.posix2_localedef = 0
 +user.posix2_sw_dev = 0
 +user.posix2_upe = 0
 +user.stream_max = 20
 +user.tzname_max = 511
 +user.atexit_max = -1
 +ddb.radix = 16
 +ddb.maxoff = 1048576
 +ddb.maxwidth = 80
 +ddb.lines = 24
 +ddb.tabstops = 8
 +ddb.onpanic = 1
 +ddb.fromconsole = 1
 +ddb.tee_msgbuf = 0
 +ddb.commandonenter = trace;show registers
 +ddb.panicstackframes = 65535
 +ddb.dumpstack = 1
 +proc.curproc.corename = %n.core
 +proc.curproc.rlimit.cputime.soft = unlimited
 +proc.curproc.rlimit.cputime.hard = unlimited
 +proc.curproc.rlimit.filesize.soft = unlimited
 +proc.curproc.rlimit.filesize.hard = unlimited
 +proc.curproc.rlimit.datasize.soft = 268435456
 +proc.curproc.rlimit.datasize.hard = 8589934592
 +proc.curproc.rlimit.stacksize.soft = 4194304
 +proc.curproc.rlimit.stacksize.hard = 134217728
 +proc.curproc.rlimit.coredumpsize.soft = unlimited
 +proc.curproc.rlimit.coredumpsize.hard = unlimited
 +proc.curproc.rlimit.memoryuse.soft = 66157260800
 +proc.curproc.rlimit.memoryuse.hard = 66157260800
 +proc.curproc.rlimit.memorylocked.soft = 22052420266
 +proc.curproc.rlimit.memorylocked.hard = 66157260800
 +proc.curproc.rlimit.maxproc.soft = 1024
 +proc.curproc.rlimit.maxproc.hard = 1044
 +proc.curproc.rlimit.descriptors.soft = 1024
 +proc.curproc.rlimit.descriptors.hard = 3404
 +proc.curproc.rlimit.sbsize.soft = unlimited
 +proc.curproc.rlimit.sbsize.hard = unlimited
 +proc.curproc.rlimit.vmemoryuse.soft = unlimited
 +proc.curproc.rlimit.vmemoryuse.hard = unlimited
 +proc.curproc.rlimit.maxlwp.soft = 32632
 +proc.curproc.rlimit.maxlwp.hard = 65265
 +proc.curproc.stopfork = 0
 +proc.curproc.stopexec = 0
 +proc.curproc.stopexit = 0
 +proc.curproc.paxflags = 3
 +security.pax.mprotect.enabled = 1
 +security.pax.mprotect.global = 1
 +security.pax.mprotect.ptrace = 1
 +security.pax.mprotect.debug = 0
 +security.pax.segvguard.enabled = 1
 +security.pax.segvguard.global = 0
 +security.pax.segvguard.expiry_timeout = 120
 +security.pax.segvguard.suspend_timeout = 600
 +security.pax.segvguard.max_crashes = 5
 +security.pax.aslr.enabled = 1
 +security.pax.aslr.global = 1
 +security.pax.aslr.debug = 0
 +security.pax.aslr.flags = 0
 +security.pax.aslr.rand = 0
 +security.pax.aslr.mmap_len = 32
 +security.pax.aslr.stack_len = 16
 +security.pax.aslr.exec_len = 12
 +security.models.suser.name = Traditional NetBSD: Superuser
 +security.models.bsd44.securelevel = -1
 +security.models.bsd44.curtain = 0
 +security.models.bsd44.name = Traditional NetBSD: 4.4BSD
 +security.models.securelevel.name = Traditional NetBSD: Securelevel
 +security.models.securelevel.securelevel = -1
 +security.models.extensions.name = Traditional NetBSD: Extensions
 +security.models.extensions.usermount = 0
 +security.models.extensions.curtain = 0
 +security.models.extensions.user_set_cpu_affinity = 0
 +security.models.extensions.user_set_dbregs = 0
 +security.models.extensions.hardlink_check_uid = 0
 +security.models.extensions.hardlink_check_gid = 0
 +security.curtain = 0
 +opencrypto.crypto_ret_q.len = 0
 +opencrypto.crypto_ret_q.drops = 0
 +opencrypto.crypto_ret_q.maxlen = 0
 +opencrypto.crypto_ret_kq.len = 0
 +opencrypto.crypto_ret_kq.drops = 0
 +opencrypto.crypto_ret_kq.maxlen = 0
 +init.root = /
 +#
 +</code>
tech/benchmark/ms-01.1715705051.txt.gz · 最終更新: 2024/05/15 01:44 by seirios

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki