Warning: Undefined array key "REMOTE_USER" in /usr/home/www/www.seirios.org/seirios/dokuwiki/lib/plugins/googleanalytics/action.php on line 55
Minisforum MS-01 [ほほほのほ]
転載・引用について

ユーザ用ツール

サイト用ツール


tech:benchmark:ms-01

Minisforum MS-01

Minisforumが販売している Work Station 向けPC

諸元

Vendor
Minisforum
Hardware
MS-01
CPU
Intel Core-i9 12900H
Graphics
S1290 Intel® Iris® Xe Graphics eligible
Memory
64GiB(Max) DDR5-5200MHz Dual Channel (SODIMM slots x2)
Storage
128GB M.2 SSD x1 (M.2 2280 x3slot)
Wireless
M.2 2230 x1sloot / MediaTek MT7922 WiFi6/BT5.2
Intel AX210NGWに換装
Ethernet
Intel X710 10G SFP+ x2slot
Intel I226-V/I226-LM 2.5G RJ45 x2port
Video Output
HDMI 2.0 (4K@60Hz)
USB4 (8K@30Hz) x2port
Power Supply
DC 19V
Size
196x189x48mm
Interface
10G SFP+ ports x2
RJ45 2.5G Ethernet ports x2
USB3.2 Gen2 Type-A ports x2
USB3.2 Gen1 Type-A ports x1
USB2.0 Type-A ports x2
USB4 ports x2 (Alt PD)
HDMI x1
3.5mm combo jack x1

FreeBSDで利用する場合、2024/04/30時点では MediaTek MT7922のDevice Driverがまだうまく動かないので、WiFiを利用するなら、別のFreeBSDで動作するWiFi/BTボードに換装する必要がある。

UEFI BIOS Configuration

大項目 中項目 小項目 細目 t1 t2 備考
Main BIOS Version 1.17 1.17
Advanced Trusted Computing Firmware Version 600.18 600.18
Vendor INTC INTC
Security Device Support Enabled Enabled
SHA256 PCR Bank Enabled Enabled
SHA384 PCR Bank Disabled Disabled
SM3_256 PCR Bank Disabled Disabled
Pending operation None None
Platform Hierarchy Enabled Enabled
Storage Hierarchy Enabled Enabled
Endorsement Hierarchy Enabled Enabled
Physical Presence Spec Version 1.3 1.3
Device Select Auto Auto
CPU Configuration VT-d Enabled Enabled
Intel(VMX) Virtualization Technology Enabled Enabled
Hyper-Threading Enabled Enabled
Boot performance mode Turbo Performance Turbo Performance
Intel(R) SpeedStep Enabled Enabled
Intel(R) Speed Shift Technology Enabled Enabled
Race To Halt(RTH) Enabled Enabled
C states Disabled Enabled
Turbo Mode Enabled Enabled
Active Performance-cores All All
Active Efficient-cores 0 All
TCC Activation Offset 10 10
Power Limit 1 55000 55000
Power Limit 2 80000 80000
Onboard Device settings Primary Display Auto Auto
Internal Graphics Auto Auto
DVMT Pre-Allocated 60M 60M
Aperture Size 256MB 256MB
VMD Setup menu Enable VMD controller Disabled Disabled
HD Audio Enabled Enabled
Deep S5 Disabled Disabled
SA-PCIE PORT PCIE4.0x4 SSD ASPM LOsL1 LOsL1
PCIE SLOT Enabled Enabled
X710 10G NIC Enabled Enabled
PCH-PCIE PORT I226-V NIC Enabled Enabled
I226-V NIC ASPM Auto Auto
PCIE3.0x4 SSD Enabled Enabled
PCIE3.0x4 SSD ASPM Disabled Disabled
PCIE3.0x2 SSD Enabled Enabled
PCIE3.0x2 SSD ASPM Disabled Disabled
I226-LM Enabled Enabled
I226-LM ASPM Auto Auto
WIFI Enabled Enabled
WIFI ASPM Auto Auto
SR-IOV Support Enabled Enabled
Above 4G Decoding Enabled Enabled
Re-Size BAR Support Enabled Enabled
DMA Control Guarantee Enabled Enabled
ACPI settings Restory On AC Power Loss Always On Always On
Wake Up On LAN no no Clear Checkbox
RTC Wake Disabled Disabled
HM monitor & Smart fan CPU fan Smart Mode Automatic Mode Automatic Mode
Temperature 1 40 40
Temperature 2 50 50
Temperature 3 65 65
Temperature 4 85 85
PWM 1 50 50
PWM 2 70 70
PWM 3 100 100
PWM 4 150 150
M.2 fan1 Smart Mode Automatic Mode Automatic Mode
Temperature 1 45 45
Temperature 2 60 60
Temperature 3 75 75
Temperature 4 85 85
PWM 1 70 70
PWM 2 100 100
PWM 3 120 120
PWM 4 150 150
M.2 fan2 Smart Mode Automatic Mode Automatic Mode
Temperature 1 45 45
Temperature 2 60 60
Temperature 3 75 75
Temperature 4 85 85
PWM 1 70 70
PWM 2 100 100
PWM 3 120 120
PWM 4 150 150
Network Stack Configuration Network Stack Enabled Enabled
IPv4 PXE Support Disabled Disabled
IPv6 PXE Support Disabled Disabled
Addons NIC Configurations at UEFI
Security Administrator Password NOT INSTALLED NOT INSTALLED
User Password NOT INSTALLED NOT INSTALLED
Secure Boot Secure Boot Disabled Disabled
Secure Boot Mode Standard Standard
Boot Bootup NumLock State On On
Quiet Boot no no Clear Checkbox
MEBx Not set Not set

準備

  • Mediatek MT7922をIntel AX210NGWと交換
  • OSとして、FreeBSD14.0-RELEASEをinstall
    • freebsd-updateを実行し、試験時点での最新の状況にする
  • Toolとして以下をinstall
    • 負荷試験関係
      • iperf3
      • netperf
      • pkt-gen
      • git, gmake, perl5, libevent
    • X710関係
      • intel-epct(今回は使わなかった)
    • Web Browser
      • w3m
    • IPMI 関係
      • ipmitool(今回は使わなかった)
  • 設定
    • ここにあるようにiwlwifi0を設定
      • 各種制御はwlan0経由でssh loginして実行する

pkt-genを構築

pkt-genは、FreeBSD上にnetmapを実装したLuigi氏が作成した、Netmap APIを利用したパケット生成ソフトウェアである。

pkt-genを利用することで、NICを直接制御してkernel I/Fを解さずにNICからパケットを送信したり受信したりすることができる。

  1. FreeBSDのsource codeを取得する
    1. git clone -b releng/12.1 –depth 1 https://git.freebsd.org/src.git /[some]/[where]/src
  2. Toolを作成する
    1. cd /[some]/[where]/src/tools/tools/netmap
    2. make
  3. Installする
    1. doas install -m 644 *.8 /usr/local/share/man/man8/
    2. doas install -m 755 bridge lb nmreplay pkt-gen /usr/local/share/man/man8/
  • 各コマンドの説明(READMEより)
    • 以下のコマンドは、netmap APIを用いたApplicationである
      • pkt-gen : a multi-function packet generator and traffic sink
      • bridge : a two-port jumper wire, also using the netmap API
      • lb : an L3/L4 load balancer
      • nmreplay: a tool to playback a pcap file to a netmap port
  • 使い方の詳細は、man 8 (pkt-gen|bridge|lb|nmreplay) を参照のこと

ipgenを構築

ipgenはIIJで開発された「簡易」パケット生成ソフトウェアである。

ipgenは、NetmapがサポートされているNICでのみ利用できる。したがって、FreeBSDので利用できる高速NICに対応している。(Linuxでも利用できるが詳細は割愛する。Linux使わないし)

IIJで試験されているのは、em,igb,ixg,ixlの4種類のデバイスドライバーのみ。(cxgbeやmxgbeは明示されていない)

また、一部のNIC(em/e1000, に関してはIPG(Inter Packet Gap)制御などを行えるようにFreeBSD kernel(device driver)に対するpatchが提供されている。

ipgenは、ManualやDocumentを見る限り、痩身と受信が同一Hardwareであることを仮定しているように見える。したがって、1台のHardwareで入出力を閉じることができるだけの性能を持つハードウェアが必要となる。 (pkt-genやiperfなどの負荷試験ソフトウェアの場合、senderとreceiverを分離することが可能)

  1. ipgenのsource codeを取得する
    1. git clone https://github.com/iij/ipgen.git /[some]/[where]/ipgen
  2. 作成準備
    1. pkg install gmake perl5 libevent
  3. Toolを作成する
    1. cd /[some]/[where]/ipgen - gmake depend - gmake - gmake install''
  4. Installされたもの
    • /usr/local/bin
      • ipgen, ipgen_log2graph
    • /usr/local/share/ipgen/script
      • pktsize(46|66|100|200|300|400|500|600|700|800|900|1000|1100|1200|1280|1300|1400||1500|All).script
    • /usr/local/share/ipgen/htdocs
      • default.css index.html pkt-gen.js dygraph-combined.js jquery-1.11.1.min.js

試験内容

今回は、以下の3点を試験する

    • i9-12900Hは内部に Performance Core (Pcore)が6つ(6core 12thread)と Efficient Core (Ecore )が8つ(8core 8thread)を持ち、最大で14core 20Threadある
    • ただし、Pcoreは最大Turbo Freqが5GHzに対し、Ecoreは最大Turbo Freqが3.8GHzであるなど、PcoreとEcoreの性能に大きな差が存在する
    • 以上の理由により、以下の試験を実施する
      • CPUの全coreを用いた FreeBSD14.0のUserland全ての作成及びkernelの作成試験
      • CPUのうちPcoreのみを用いた FreeBSD14.0のUserland全ての作成及びkernelの作成試験
    • iperf3及びpkt-gen/ipgenを用いたInterface-to-Interface通信負荷試験
      • 10G試験: 同一マシン内I/F間試験、MS-01を2台用いた対向試験
      • 2.5G試験: 同一マシン内I/F間試験、MS-01を2台用いた対向試験
    • Traffic Generatorを用いた Packet転送試験 (Collaborate with tomocha)

FreeBSD Build試験

機器全体の大雑把な性能を把握する方法の一つとして、OSのBuild時間を測定する。

  • 記録媒体の違いによる性能差の発生を極力抑えるため、Source codeやObjectを配置するFileSystemをtmpfsを利用してメモリー内に置き、記録媒体の差による測定誤差を最小に抑える。
  • HyperThreadingはOnのまま実行する

試験手順

試験は以下のようにして実施する

  • 以下のscriptを作成
    • 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
      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
      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
  • 上記scriptを実行する
  • 出力された時間を比較する
  • 消費電力測定にはRATOK RS-BTWATTCH2を用い、Realtime計測を利用して消費電力を測定した
    • 消費電力測定において、消費電力量1W未満は参考値
    • Realtime計測は1秒単位で計測する
  • データ解析は、RS-BTWATTCH2で取得したRealtime計測値をCSVで出力し、CSVデータの正規化を行なった上で、Rでグラフ化する
    • R scriptと処理用shell scriptは以下の通り
    • 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'
    • 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,"W  ,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()
    • 上記scriptを利用して、以下の手順でgraph化する
    • 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

試験データ CPU


表1: Build試験
項目
t1 : P cores only (6C/12T) t2 : All cores (14C/20T)
-jなし -j12 -jなし 14C/20T -j20
real user system real user system real user system real user system
make buildworld 18863.60 18348.20 525.76 3012.40 34271.21 801.15 28714.43 27962.41 763.83 2432.88 44077.35 1060.36
(user+system)/real
Time Start: 2024-05-14 16:01:12
End: 2024-05-14 21:15:35
Start:: 2024-05-14 21:34:11
End: 2024-05-14 22:24:24
Start: 2024-05-14 16:01:12
End: 2024-05-14 23:59:46
Start: 2024-05-15 00:26:36
End: 2024-05-15 01:07:09
make buildkernel 1054.89 1000.79 67.53 164.31 1784.04 92.30 1549.15 1475.88 90.11 129.09 2237.05 115.00
(user+system)/real
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
(user+system)/real
  • t1 : P-cores Only
    • 11.64 / 12 = 97.0% buildworld
    • 11.42 / 12 = 95.2% buildkernel
    • 11.63 / 12 = 96.9% total
  • t2 : All cores
    • 18.55 / 20 = 92.8% buildworld
    • 18.22 / 20 = 91.1% buildkernel
    • 18.54 / 20 = 92.7% total

試験データ 電源

  • 電力測定には、RATOK RS-BTWATTCH2 を使用し、Realtime計測データを取得した
    • グラフ作成には、Rを用いた。
  • 標準状態(特に何も動いていない状態)での消費電力は20-26W程度

Network試験

Network試験として、

  • MS-01がNodeとしてパケットを生成・受信する場合(単体試験)
  • MS-01がNodeとしてパケットを生成し、別のMS-01がパケットを受信する場合(対向試験)

の2パターンを、iperf3、pkt-gen/ipgen(netmapを利用する)場合に分けて実施し、

  • MS-01がRouterとして動作する場合(Router試験)

VeEX Tx340sを利用して実施する。

単体試験

単体試験

  • 10G試験: iperf3による負荷試験(kernel処理)
  • 10G試験: pkt-gen/ipgenによる負荷試験(netmap)

対向試験

対向試験

  • 10G試験: iperf3による負荷試験(kernel処理)
  • 10G試験: pkt-gen/ipgenによる負荷試験(netmap)

Router試験

Router試験

  • 10G試験: Router試験(kernel処理)

考察

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
  • 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を割り当てる」などの対策が必要

謝辞

本試験は以下の方々のご協力によって実施しました。

  • MS-01を見つけ、筆者に紹介し、MS-01を1台貸与してくれた林さん
  • 負荷試験のためのツールを指南したり、kernelやdevice driver等FreeBSD関連の情報を教えてくださった佐藤先生
  • 同じくFreeBSD関係で情報や助言をくださった内藤さん
  • 負荷試験気の手配や操作、情報収集を手伝ってくれたtomochaさん
  • 試験結果をまとめて公開する気にさせていただいた上原先生

以上の方々に深く感謝いたします。

Appendix

Boot時 dmesg

dmesg.t1
---<<BOOT>>---
Copyright (c) 1992-2023 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
        The Regents of the University of California. All rights reserved.
FreeBSD is a registered trademark of The FreeBSD Foundation.
FreeBSD 14.0-RELEASE #0 releng/14.0-n265380-f9716eee8ab4: Fri Nov 10 05:57:23 UTC 2023
    root@releng1.nyi.freebsd.org:/usr/obj/usr/src/amd64.amd64/sys/GENERIC amd64
FreeBSD clang version 16.0.6 (https://github.com/llvm/llvm-project.git llvmorg-16.0.6-0-g7cbf1a259152)
VT(efifb): resolution 800x600
module_register: cannot register tmpfs from kernel; already loaded from tmpfs.ko
Module tmpfs failed to register: 17
CPU: 12th Gen Intel(R) Core(TM) i9-12900H (2918.40-MHz K8-class CPU)
  Origin="GenuineIntel"  Id=0x906a3  Family=0x6  Model=0x9a  Stepping=3
  Features=0xbfebfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE>
  Features2=0x7ffafbff<SSE3,PCLMULQDQ,DTES64,MON,DS_CPL,VMX,SMX,EST,TM2,SSSE3,SDBG,FMA,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,TSCDLT,AESNI,XSAVE,OSXSAVE,AVX,F16C,RDRAND>
  AMD Features=0x2c100800<SYSCALL,NX,Page1GB,RDTSCP,LM>
  AMD Features2=0x121<LAHF,ABM,Prefetch>
  Structured Extended Features=0x239c27eb<FSGSBASE,TSCADJ,BMI1,AVX2,FDPEXC,SMEP,BMI2,ERMS,INVPCID,NFPUSG,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,PROCTRACE,SHA>
  Structured Extended Features2=0x98c027bc<UMIP,PKU,OSPKE,WAITPKG,GFNI,VAES,VPCLMULQDQ,TME,RDPID,MOVDIRI,MOVDIR64B>
  Structured Extended Features3=0xfc1cc410<FSRM,MD_CLEAR,PCONFIG,IBT,IBPB,STIBP,L1DFL,ARCH_CAP,CORE_CAP,SSBD>
  XSAVE Features=0xf<XSAVEOPT,XSAVEC,XINUSE,XSAVES>
  IA32_ARCH_CAPS=0x88fd6b<RDCL_NO,IBRS_ALL,SKIP_L1DFL_VME,MDS_NO,TAA_NO>
  VT-x: PAT,HLT,MTF,PAUSE,EPT,UG,VPID,VID,PostIntr
  TSC: P-state invariant, performance statistics
real memory  = 68717379584 (65534 MB)
avail memory = 66505461760 (63424 MB)
Event timer "LAPIC" quality 600
ACPI APIC Table: <ALASKA A M I >
FreeBSD/SMP: Multiprocessor System Detected: 12 CPUs
FreeBSD/SMP: 1 package(s) x 6 core(s) x 2 hardware threads
random: registering fast source Intel Secure Key RNG
random: fast provider: "Intel Secure Key RNG"
random: unblocking device.
ioapic0 <Version 2.0> irqs 0-119
Launching APs: 1 3 9 11 8 2 10 5 4 7 6
random: entropy device external interface
kbd0 at kbdmux0
efirtc0: <EFI Realtime Clock>
efirtc0: registered as a time-of-day clock, resolution 1.000000s
smbios0: <System Management BIOS> at iomem 0x43b90000-0x43b9001e
smbios0: Version: 3.5, BCD Revision: 3.5
aesni0: <AES-CBC,AES-CCM,AES-GCM,AES-ICM,AES-XTS,SHA1,SHA256>
acpi0: <ALASKA A M I >
acpi0: Power Button (fixed)
hpet0: <High Precision Event Timer> iomem 0xfed00000-0xfed003ff on acpi0
Timecounter "HPET" frequency 19200000 Hz quality 950
Event timer "HPET" frequency 19200000 Hz quality 350
Event timer "HPET1" frequency 19200000 Hz quality 340
Event timer "HPET2" frequency 19200000 Hz quality 340
Event timer "HPET3" frequency 19200000 Hz quality 340
Event timer "HPET4" frequency 19200000 Hz quality 340
Event timer "HPET5" frequency 19200000 Hz quality 340
Event timer "HPET6" frequency 19200000 Hz quality 340
Event timer "HPET7" frequency 19200000 Hz quality 340
atrtc1: <AT realtime clock> on acpi0
atrtc1: Warning: Couldn't map I/O.
atrtc1: registered as a time-of-day clock, resolution 1.000000s
Event timer "RTC" frequency 32768 Hz quality 0
attimer0: <AT timer> port 0x40-0x43,0x50-0x53 irq 0 on acpi0
Timecounter "i8254" frequency 1193182 Hz quality 0
Event timer "i8254" frequency 1193182 Hz quality 100
Timecounter "ACPI-fast" frequency 3579545 Hz quality 900
acpi_timer0: <24-bit timer at 3.579545MHz> port 0x1808-0x180b on acpi0
pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff on acpi0
pci0: <ACPI PCI bus> on pcib0
vgapci0: <VGA-compatible display> port 0x3000-0x303f mem 0x6126000000-0x6126ffffff,0x4000000000-0x400fffffff at device 2.0 on pci0
vgapci0: Boot video device
pcib1: <ACPI PCI-PCI bridge> at device 6.0 on pci0
pci1: <ACPI PCI bus> on pcib1
pcib2: <ACPI PCI-PCI bridge> at device 6.2 on pci0
pci2: <ACPI PCI bus> on pcib2
ixl0: <Intel(R) Ethernet Controller X710 for 10GbE SFP+ - 2.3.3-k> mem 0x611d000000-0x611d7fffff,0x611e008000-0x611e00ffff at device 0.0 on pci2
ixl0: fw 9.120.73026 api 1.15 nvm 9.20 etid 8000d8c5 oem 0.0.0
ixl0: PF-ID[0]: VFs 64, MSI-X 129, VF MSI-X 5, QPs 768, I2C
ixl0: Using 1024 TX descriptors and 1024 RX descriptors
ixl0: Using 6 RX queues 6 TX queues
ixl0: Using MSI-X interrupts with 7 vectors
ixl0: Ethernet address: 58:47:ca:76:6d:13
ixl0: Allocating 8 queues for PF LAN VSI; 6 queues active
ixl0: PCI Express Bus: Speed 8.0GT/s Width x4
ixl0: SR-IOV ready
ixl0: netmap queues/slots: TX 6/1024, RX 6/1024
ixl1: <Intel(R) Ethernet Controller X710 for 10GbE SFP+ - 2.3.3-k> mem 0x611c800000-0x611cffffff,0x611e000000-0x611e007fff at device 0.1 on pci2
ixl1: fw 9.120.73026 api 1.15 nvm 9.20 etid 8000d8c5 oem 0.0.0
ixl1: PF-ID[1]: VFs 64, MSI-X 129, VF MSI-X 5, QPs 768, I2C
ixl1: Using 1024 TX descriptors and 1024 RX descriptors
ixl1: Using 6 RX queues 6 TX queues
ixl1: Using MSI-X interrupts with 7 vectors
ixl1: Ethernet address: 58:47:ca:76:6d:14
ixl1: Allocating 8 queues for PF LAN VSI; 6 queues active
ixl1: PCI Express Bus: Speed 8.0GT/s Width x4
ixl1: SR-IOV ready
ixl1: netmap queues/slots: TX 6/1024, RX 6/1024
pcib3: <ACPI PCI-PCI bridge> at device 7.0 on pci0
pcib4: <ACPI PCI-PCI bridge> at device 7.2 on pci0
xhci0: <Intel Alder Lake-P Thunderbolt 4 USB controller> mem 0x6127190000-0x612719ffff at device 13.0 on pci0
xhci0: 32 bytes context size, 64-bit DMA
usbus0 on xhci0
usbus0: 5.0Gbps Super Speed USB v3.0
pci0: <serial bus, USB> at device 13.2 (no driver attached)
pci0: <serial bus, USB> at device 13.3 (no driver attached)
xhci1: <Intel Alder Lake USB 3.2 controller> mem 0x6127180000-0x612718ffff at device 20.0 on pci0
xhci1: 32 bytes context size, 64-bit DMA
usbus1 on xhci1
usbus1: 5.0Gbps Super Speed USB v3.0
pci0: <memory, RAM> at device 20.2 (no driver attached)
pci0: <simple comms> at device 22.0 (no driver attached)
pci0: <simple comms, UART> at device 22.3 (no driver attached)
pcib5: <ACPI PCI-PCI bridge> at device 28.0 on pci0
pci3: <ACPI PCI bus> on pcib5
igc0: <Intel(R) Ethernet Controller I226-V> mem 0x6c300000-0x6c3fffff,0x6c400000-0x6c403fff at device 0.0 on pci3
igc0: Using 1024 TX descriptors and 1024 RX descriptors
igc0: Using 4 RX queues 4 TX queues
igc0: Using MSI-X interrupts with 5 vectors
igc0: Ethernet address: 58:47:ca:76:6d:15
igc0: netmap queues/slots: TX 4/1024, RX 4/1024
pcib6: <ACPI PCI-PCI bridge> at device 29.0 on pci0
pci4: <ACPI PCI bus> on pcib6
nvme0: <Generic NVMe Device> mem 0x6c850000-0x6c853fff at device 0.0 on pci4
pcib7: <ACPI PCI-PCI bridge> at device 29.2 on pci0
pci5: <ACPI PCI bus> on pcib7
igc1: <Intel(R) Ethernet Controller I226-LM> mem 0x6c500000-0x6c5fffff,0x6c600000-0x6c603fff at device 0.0 on pci5
igc1: Using 1024 TX descriptors and 1024 RX descriptors
igc1: Using 4 RX queues 4 TX queues
igc1: Using MSI-X interrupts with 5 vectors
igc1: Ethernet address: 58:47:ca:76:6d:16
igc1: netmap queues/slots: TX 4/1024, RX 4/1024
pcib8: <ACPI PCI-PCI bridge> at device 29.3 on pci0
pci6: <ACPI PCI bus> on pcib8
pci6: <network> at device 0.0 (no driver attached)
isab0: <PCI-ISA bridge> at device 31.0 on pci0
isa0: <ISA bus> on isab0
hdac0: <Intel Alder Lake-P HDA Controller> mem 0x61271a0000-0x61271a3fff,0x6127000000-0x61270fffff at device 31.3 on pci0
pci0: <serial bus> at device 31.5 (no driver attached)
acpi_button0: <Sleep Button> on acpi0
cpu0: <ACPI CPU> on acpi0
acpi_button1: <Power Button> on acpi0
acpi_tz0: <Thermal Zone> on acpi0
ns8250: UART FCR is broken
ns8250: UART FCR is broken
uart0: <16550 or compatible> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0
acpi_syscontainer0: <System Container> on acpi0
atrtc0: <AT realtime clock> at port 0x70 irq 8 on isa0
atrtc0: Warning: Couldn't map I/O.
atrtc0: registered as a time-of-day clock, resolution 1.000000s
atrtc0: Can't map interrupt.
atrtc0: non-PNP ISA device will be removed from GENERIC in FreeBSD 15.
ns8250: UART FCR is broken
ns8250: UART FCR is broken
uart1: <16550 or compatible> at port 0x2f8 irq 3 on isa0
uart1: non-PNP ISA device will be removed from GENERIC in FreeBSD 15.
coretemp0: <CPU On-Die Thermal Sensors> on cpu0
hwpstate_intel0: <Intel Speed Shift> on cpu0
hwpstate_intel1: <Intel Speed Shift> on cpu1
hwpstate_intel2: <Intel Speed Shift> on cpu2
hwpstate_intel3: <Intel Speed Shift> on cpu3
hwpstate_intel4: <Intel Speed Shift> on cpu4
hwpstate_intel5: <Intel Speed Shift> on cpu5
hwpstate_intel6: <Intel Speed Shift> on cpu6
hwpstate_intel7: <Intel Speed Shift> on cpu7
hwpstate_intel8: <Intel Speed Shift> on cpu8
hwpstate_intel9: <Intel Speed Shift> on cpu9
hwpstate_intel10: <Intel Speed Shift> on cpu10
hwpstate_intel11: <Intel Speed Shift> on cpu11
module_register_init: MOD_LOAD (tmpfs, 0xffffffff80c16760, 0xffffffff81f3fc90) error 17
Timecounter "TSC-low" frequency 1459208291 Hz quality 1000
Timecounters tick every 1.000 msec
ZFS filesystem version: 5
ZFS storage pool version: features support (5000)
WARNING: Adding ifaddrs to all fibs has been turned off by default. Consider tuning net.add_addr_allfibs if needed
ugen0.1: <Intel XHCI root HUB> at usbus0
ugen1.1: <Intel XHCI root HUB> at usbus1
uhub0 on usbus0
uhub0: <Intel XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1> on usbus0
uhub1 on usbus1
uhub1: <Intel XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1> on usbus1
nvme0: Allocated 127MB host memory buffer
hdacc0: <Realtek ALC269 HDA CODEC> at cad 0 on hdac0
hdaa0: <Realtek ALC269 Audio Function Group> at nid 1 on hdacc0
pcm0: <Realtek ALC269 (Right Analog)> at nid 21 and 24 on hdaa0
nda0 at nvme0 bus 0 scbus0 target 0 lun 1
nda0: <Patriot M.2 P300 128GB APF1M3R1 P300HHBB240118000515>
nda0: Serial Number P300HHBB240118000515
nda0: nvme version 1.3
nda0: 122104MB (250069680 512 byte sectors)
sysctl_unregister_oid: failed(22) to unregister sysctl(tmpfs)
Trying to mount root from zfs:zroot/ROOT/default []...
uhub0: 4 ports with 4 removable, self powered
uhub1: 16 ports with 16 removable, self powered
ugen1.2: <GenesysLogic USB2.1 Hub> at usbus1
uhub2 on uhub1
uhub2: <GenesysLogic USB2.1 Hub, class 9/0, rev 2.10/6.63, addr 1> on usbus1
Root mount waiting for: usbus1
uhub2: 4 ports with 4 removable, self powered
Root mount waiting for: usbus1
ugen1.3: <Chicony Generic USB Hub> at usbus1
uhub3 on uhub2
uhub3: <Chicony Generic USB Hub, class 9/0, rev 1.10/1.00, addr 2> on usbus1
uhub3: 3 ports with 2 removable, bus powered
Root mount waiting for: usbus1
ugen1.4: <Chicony PFU-65 USB Keyboard> at usbus1
ukbd0 on uhub3
ukbd0: <Chicony PFU-65 USB Keyboard, class 0/0, rev 1.10/1.00, addr 3> on usbus1
kbd1 at ukbd0
ugen1.5: <Logitech USB Receiver> at usbus1
ugen1.6: <vendor 0x8087 product 0x0032> at usbus1
Root mount waiting for: usbus1
ugen1.7: <GenesysLogic USB3.1 Hub> at usbus1
uhub4 on uhub1
uhub4: <GenesysLogic> on usbus1
uhub4: 4 ports with 4 removable, self powered
Intel(R) Wireless WiFi based driver for FreeBSD
ichsmb0: <Intel Alder Lake SMBus controller> port 0xefa0-0xefbf mem 0x61271a8000-0x61271a80ff at device 31.4 on pci0
smbus0: <System Management Bus> on ichsmb0
iwlwifi0: <iwlwifi> mem 0x6c700000-0x6c703fff at device 0.0 on pci6
iwlwifi0: Detected crf-id 0x400410, cnv-id 0x400410 wfpm id 0x80000000
iwlwifi0: PCI dev 2725/0024, rev=0x420, rfid=0x10d000
iwlwifi0: successfully loaded firmware image 'iwlwifi-ty-a0-gf-a0-83.ucode'
iwlwifi0: api flags index 2 larger than supported by driver
iwlwifi0: TLV_FW_FSEQ_VERSION: FSEQ Version: 0.0.2.41
iwlwifi0: loaded firmware version 83.e8f84e98.0 ty-a0-gf-a0-83.ucode op_mode iwlmvm
iwlwifi0: Detected Intel(R) Wi-Fi 6 AX210 160MHz, REV=0x420
iwlwifi0: WRT: Invalid buffer destination
iwlwifi0: WFPM_UMAC_PD_NOTIFICATION: 0x20
iwlwifi0: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
iwlwifi0: WFPM_AUTH_KEY_0: 0x90
iwlwifi0: CNVI_SCU_SEQ_DATA_DW9: 0x0
iwlwifi0: successfully loaded firmware image 'iwlwifi-ty-a0-gf-a0.pnvm'
iwlwifi0: loaded PNVM version 181407b3
iwlwifi0: Detected RF GF, rfid=0x10d000
iwlwifi0: base HW address: 4c:49:6c:4a:92:64
acpi_wmi0: <ACPI-WMI mapping> on acpi0
acpi_wmi0: cannot find EC device
acpi_wmi0: Embedded MOF found
ACPI: \134_SB.WFDE.WQCC: 1 arguments were passed to a non-method ACPI object (Buffer) (20221020/nsarguments-361)
acpi_wmi1: <ACPI-WMI mapping> on acpi0
acpi_wmi1: cannot find EC device
acpi_wmi1: Embedded MOF found
ACPI: \134_SB.WFTE.WQCC: 1 arguments were passed to a non-method ACPI object (Buffer) (20221020/nsarguments-361)
igc0: link state changed to UP
lo0: link state changed to UP
ixl0: Disabled multicast promiscuous mode
ixl1: Disabled multicast promiscuous mode
igc0: link state changed to DOWN
ums0 on uhub2
ums0: <Logitech USB Receiver, class 0/0, rev 2.00/30.00, addr 4> on usbus1
ums0: 16 buttons and [XYZT] coordinates ID=0
uhid0 on uhub2
uhid0: <Logitech USB Receiver, class 0/0, rev 2.00/30.00, addr 4> on usbus1
igc0: link state changed to UP
[fib_algo] inet.0 (bsearch4#18) rebuild_fd_flm: switching algo to radix4_lockless
Security policy loaded: MAC/ntpd (mac_ntpd)
dmesg.t2
---<<BOOT>>---
Copyright (c) 1992-2023 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
        The Regents of the University of California. All rights reserved.
FreeBSD is a registered trademark of The FreeBSD Foundation.
FreeBSD 14.0-RELEASE #0 releng/14.0-n265380-f9716eee8ab4: Fri Nov 10 05:57:23 UTC 2023
    root@releng1.nyi.freebsd.org:/usr/obj/usr/src/amd64.amd64/sys/GENERIC amd64
FreeBSD clang version 16.0.6 (https://github.com/llvm/llvm-project.git llvmorg-16.0.6-0-g7cbf1a259152)
VT(efifb): resolution 800x600
module_register: cannot register tmpfs from kernel; already loaded from tmpfs.ko
Module tmpfs failed to register: 17
CPU: 12th Gen Intel(R) Core(TM) i9-12900H (2918.40-MHz K8-class CPU)
  Origin="GenuineIntel"  Id=0x906a3  Family=0x6  Model=0x9a  Stepping=3
  Features=0xbfebfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE>
  Features2=0x7ffafbff<SSE3,PCLMULQDQ,DTES64,MON,DS_CPL,VMX,SMX,EST,TM2,SSSE3,SDBG,FMA,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,TSCDLT,AESNI,XSAVE,OSXSAVE,AVX,F16C,RDRAND>
  AMD Features=0x2c100800<SYSCALL,NX,Page1GB,RDTSCP,LM>
  AMD Features2=0x121<LAHF,ABM,Prefetch>
  Structured Extended Features=0x239c27eb<FSGSBASE,TSCADJ,BMI1,AVX2,FDPEXC,SMEP,BMI2,ERMS,INVPCID,NFPUSG,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,PROCTRACE,SHA>
  Structured Extended Features2=0x98c027bc<UMIP,PKU,OSPKE,WAITPKG,GFNI,VAES,VPCLMULQDQ,TME,RDPID,MOVDIRI,MOVDIR64B>
  Structured Extended Features3=0xfc1cc410<FSRM,MD_CLEAR,PCONFIG,IBT,IBPB,STIBP,L1DFL,ARCH_CAP,CORE_CAP,SSBD>
  XSAVE Features=0xf<XSAVEOPT,XSAVEC,XINUSE,XSAVES>
  IA32_ARCH_CAPS=0x88fd6b<RDCL_NO,IBRS_ALL,SKIP_L1DFL_VME,MDS_NO,TAA_NO>
  VT-x: PAT,HLT,MTF,PAUSE,EPT,UG,VPID,VID,PostIntr
  TSC: P-state invariant, performance statistics
real memory  = 68717379584 (65534 MB)
avail memory = 66504757248 (63423 MB)
Event timer "LAPIC" quality 600
ACPI APIC Table: <ALASKA A M I >
FreeBSD/SMP: Multiprocessor System Detected: 20 CPUs
FreeBSD/SMP: Non-uniform topology
random: registering fast source Intel Secure Key RNG
random: fast provider: "Intel Secure Key RNG"
random: unblocking device.
ioapic0 <Version 2.0> irqs 0-119
Launching APs: 1 8 19 18 12 13 15 16 17 14 2 11 3 5 9 10 7 4 6
random: entropy device external interface
kbd0 at kbdmux0
efirtc0: <EFI Realtime Clock>
efirtc0: registered as a time-of-day clock, resolution 1.000000s
smbios0: <System Management BIOS> at iomem 0x43b90000-0x43b9001e
smbios0: Version: 3.5, BCD Revision: 3.5
aesni0: <AES-CBC,AES-CCM,AES-GCM,AES-ICM,AES-XTS,SHA1,SHA256>
acpi0: <ALASKA A M I >
acpi0: Power Button (fixed)
hpet0: <High Precision Event Timer> iomem 0xfed00000-0xfed003ff on acpi0
Timecounter "HPET" frequency 19200000 Hz quality 950
Event timer "HPET" frequency 19200000 Hz quality 350
Event timer "HPET1" frequency 19200000 Hz quality 340
Event timer "HPET2" frequency 19200000 Hz quality 340
Event timer "HPET3" frequency 19200000 Hz quality 340
Event timer "HPET4" frequency 19200000 Hz quality 340
Event timer "HPET5" frequency 19200000 Hz quality 340
Event timer "HPET6" frequency 19200000 Hz quality 340
Event timer "HPET7" frequency 19200000 Hz quality 340
atrtc1: <AT realtime clock> on acpi0
atrtc1: Warning: Couldn't map I/O.
atrtc1: registered as a time-of-day clock, resolution 1.000000s
Event timer "RTC" frequency 32768 Hz quality 0
attimer0: <AT timer> port 0x40-0x43,0x50-0x53 irq 0 on acpi0
Timecounter "i8254" frequency 1193182 Hz quality 0
Event timer "i8254" frequency 1193182 Hz quality 100
Timecounter "ACPI-fast" frequency 3579545 Hz quality 900
acpi_timer0: <24-bit timer at 3.579545MHz> port 0x1808-0x180b on acpi0
pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff on acpi0
pci0: <ACPI PCI bus> on pcib0
vgapci0: <VGA-compatible display> port 0x3000-0x303f mem 0x6126000000-0x6126ffffff,0x4000000000-0x400fffffff at device 2.0 on pci0
vgapci0: Boot video device
pcib1: <ACPI PCI-PCI bridge> at device 6.0 on pci0
pci1: <ACPI PCI bus> on pcib1
pcib2: <ACPI PCI-PCI bridge> at device 6.2 on pci0
pci2: <ACPI PCI bus> on pcib2
ixl0: <Intel(R) Ethernet Controller X710 for 10GbE SFP+ - 2.3.3-k> mem 0x611d000000-0x611d7fffff,0x611e008000-0x611e00ffff at device 0.0 on pci2
ixl0: fw 9.120.73026 api 1.15 nvm 9.20 etid 8000d8c5 oem 0.0.0
ixl0: PF-ID[0]: VFs 64, MSI-X 129, VF MSI-X 5, QPs 768, I2C
ixl0: Using 1024 TX descriptors and 1024 RX descriptors
ixl0: Using 14 RX queues 14 TX queues
ixl0: Using MSI-X interrupts with 15 vectors
ixl0: Ethernet address: 58:47:ca:76:7a:ff
ixl0: Allocating 16 queues for PF LAN VSI; 14 queues active
ixl0: PCI Express Bus: Speed 8.0GT/s Width x4
ixl0: SR-IOV ready
ixl0: netmap queues/slots: TX 14/1024, RX 14/1024
ixl1: <Intel(R) Ethernet Controller X710 for 10GbE SFP+ - 2.3.3-k> mem 0x611c800000-0x611cffffff,0x611e000000-0x611e007fff at device 0.1 on pci2
ixl1: fw 9.120.73026 api 1.15 nvm 9.20 etid 8000d8c5 oem 0.0.0
ixl1: PF-ID[1]: VFs 64, MSI-X 129, VF MSI-X 5, QPs 768, I2C
ixl1: Using 1024 TX descriptors and 1024 RX descriptors
ixl1: Using 14 RX queues 14 TX queues
ixl1: Using MSI-X interrupts with 15 vectors
ixl1: Ethernet address: 58:47:ca:76:7b:00
ixl1: Allocating 16 queues for PF LAN VSI; 14 queues active
ixl1: PCI Express Bus: Speed 8.0GT/s Width x4
ixl1: SR-IOV ready
ixl1: netmap queues/slots: TX 14/1024, RX 14/1024
pcib3: <ACPI PCI-PCI bridge> at device 7.0 on pci0
pcib4: <ACPI PCI-PCI bridge> at device 7.2 on pci0
xhci0: <Intel Alder Lake-P Thunderbolt 4 USB controller> mem 0x6127190000-0x612719ffff at device 13.0 on pci0
xhci0: 32 bytes context size, 64-bit DMA
usbus0 on xhci0
usbus0: 5.0Gbps Super Speed USB v3.0
pci0: <serial bus, USB> at device 13.2 (no driver attached)
pci0: <serial bus, USB> at device 13.3 (no driver attached)
xhci1: <Intel Alder Lake USB 3.2 controller> mem 0x6127180000-0x612718ffff at device 20.0 on pci0
xhci1: 32 bytes context size, 64-bit DMA
usbus1 on xhci1
usbus1: 5.0Gbps Super Speed USB v3.0
pci0: <memory, RAM> at device 20.2 (no driver attached)
pci0: <simple comms> at device 22.0 (no driver attached)
pci0: <simple comms, UART> at device 22.3 (no driver attached)
pcib5: <ACPI PCI-PCI bridge> at device 28.0 on pci0
pci3: <ACPI PCI bus> on pcib5
igc0: <Intel(R) Ethernet Controller I226-V> mem 0x6c300000-0x6c3fffff,0x6c400000-0x6c403fff at device 0.0 on pci3
igc0: Using 1024 TX descriptors and 1024 RX descriptors
igc0: Using 4 RX queues 4 TX queues
igc0: Using MSI-X interrupts with 5 vectors
igc0: Ethernet address: 58:47:ca:76:7b:01
igc0: netmap queues/slots: TX 4/1024, RX 4/1024
pcib6: <ACPI PCI-PCI bridge> at device 29.0 on pci0
pci4: <ACPI PCI bus> on pcib6
nvme0: <Generic NVMe Device> mem 0x6c850000-0x6c853fff at device 0.0 on pci4
pcib7: <ACPI PCI-PCI bridge> at device 29.2 on pci0
pci5: <ACPI PCI bus> on pcib7
igc1: <Intel(R) Ethernet Controller I226-LM> mem 0x6c500000-0x6c5fffff,0x6c600000-0x6c603fff at device 0.0 on pci5
igc1: Using 1024 TX descriptors and 1024 RX descriptors
igc1: Using 4 RX queues 4 TX queues
igc1: Using MSI-X interrupts with 5 vectors
igc1: Ethernet address: 58:47:ca:76:7b:02
igc1: netmap queues/slots: TX 4/1024, RX 4/1024
pcib8: <ACPI PCI-PCI bridge> at device 29.3 on pci0
pci6: <ACPI PCI bus> on pcib8
pci6: <network> at device 0.0 (no driver attached)
isab0: <PCI-ISA bridge> at device 31.0 on pci0
isa0: <ISA bus> on isab0
hdac0: <Intel Alder Lake-P HDA Controller> mem 0x61271a0000-0x61271a3fff,0x6127000000-0x61270fffff at device 31.3 on pci0
pci0: <serial bus> at device 31.5 (no driver attached)
acpi_button0: <Sleep Button> on acpi0
cpu0: <ACPI CPU> on acpi0
acpi_button1: <Power Button> on acpi0
acpi_tz0: <Thermal Zone> on acpi0
ns8250: UART FCR is broken
ns8250: UART FCR is broken
uart0: <16550 or compatible> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0
acpi_syscontainer0: <System Container> on acpi0
atrtc0: <AT realtime clock> at port 0x70 irq 8 on isa0
atrtc0: Warning: Couldn't map I/O.
atrtc0: registered as a time-of-day clock, resolution 1.000000s
atrtc0: Can't map interrupt.
atrtc0: non-PNP ISA device will be removed from GENERIC in FreeBSD 15.
ns8250: UART FCR is broken
ns8250: UART FCR is broken
uart1: <16550 or compatible> at port 0x2f8 irq 3 on isa0
uart1: non-PNP ISA device will be removed from GENERIC in FreeBSD 15.
coretemp0: <CPU On-Die Thermal Sensors> on cpu0
hwpstate_intel0: <Intel Speed Shift> on cpu0
hwpstate_intel1: <Intel Speed Shift> on cpu1
hwpstate_intel2: <Intel Speed Shift> on cpu2
hwpstate_intel3: <Intel Speed Shift> on cpu3
hwpstate_intel4: <Intel Speed Shift> on cpu4
hwpstate_intel5: <Intel Speed Shift> on cpu5
hwpstate_intel6: <Intel Speed Shift> on cpu6
hwpstate_intel7: <Intel Speed Shift> on cpu7
hwpstate_intel8: <Intel Speed Shift> on cpu8
hwpstate_intel9: <Intel Speed Shift> on cpu9
hwpstate_intel10: <Intel Speed Shift> on cpu10
hwpstate_intel11: <Intel Speed Shift> on cpu11
hwpstate_intel12: <Intel Speed Shift> on cpu12
hwpstate_intel13: <Intel Speed Shift> on cpu13
hwpstate_intel14: <Intel Speed Shift> on cpu14
hwpstate_intel15: <Intel Speed Shift> on cpu15
hwpstate_intel16: <Intel Speed Shift> on cpu16
hwpstate_intel17: <Intel Speed Shift> on cpu17
hwpstate_intel18: <Intel Speed Shift> on cpu18
hwpstate_intel19: <Intel Speed Shift> on cpu19
module_register_init: MOD_LOAD (tmpfs, 0xffffffff80c16760, 0xffffffff82138c90) error 17
Timecounter "TSC-low" frequency 1459201661 Hz quality 1000
Timecounters tick every 1.000 msec
ZFS filesystem version: 5
ZFS storage pool version: features support (5000)
WARNING: Adding ifaddrs to all fibs has been turned off by default. Consider tuning net.add_addr_allfibs if needed
ugen0.1: <Intel XHCI root HUB> at usbus0
ugen1.1: <Intel XHCI root HUB> at usbus1
uhub0 on usbus0
uhub0: <Intel XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1> on usbus0
nvme0: Allocated 127MB host memory buffer
uhub1 on usbus1
uhub1: <Intel XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1> on usbus1
hdacc0: <Realtek ALC269 HDA CODEC> at cad 0 on hdac0
hdaa0: <Realtek ALC269 Audio Function Group> at nid 1 on hdacc0
pcm0: <Realtek ALC269 (Right Analog)> at nid 21 and 24 on hdaa0
nda0 at nvme0 bus 0 scbus0 target 0 lun 1
nda0: <Patriot M.2 P300 128GB APF1M3R1 P300HHBB240118000993>
nda0: Serial Number P300HHBB240118000993
nda0: nvme version 1.3
nda0: 122104MB (250069680 512 byte sectors)
sysctl_unregister_oid: failed(22) to unregister sysctl(tmpfs)
Trying to mount root from zfs:zroot/ROOT/default []...
uhub0: 4 ports with 4 removable, self powered
uhub1: 16 ports with 16 removable, self powered
ugen1.2: <vendor 0x8087 product 0x0032> at usbus1
Intel(R) Wireless WiFi based driver for FreeBSD
ichsmb0: <Intel Alder Lake SMBus controller> port 0xefa0-0xefbf mem 0x61271a8000-0x61271a80ff at device 31.4 on pci0
smbus0: <System Management Bus> on ichsmb0
iwlwifi0: <iwlwifi> mem 0x6c700000-0x6c703fff at device 0.0 on pci6
iwlwifi0: Detected crf-id 0x400410, cnv-id 0x400410 wfpm id 0x80000000
iwlwifi0: PCI dev 2725/0024, rev=0x420, rfid=0x10d000
iwlwifi0: successfully loaded firmware image 'iwlwifi-ty-a0-gf-a0-83.ucode'
iwlwifi0: api flags index 2 larger than supported by driver
iwlwifi0: TLV_FW_FSEQ_VERSION: FSEQ Version: 0.0.2.41
iwlwifi0: loaded firmware version 83.e8f84e98.0 ty-a0-gf-a0-83.ucode op_mode iwlmvm
iwlwifi0: Detected Intel(R) Wi-Fi 6 AX210 160MHz, REV=0x420
iwlwifi0: WRT: Invalid buffer destination
iwlwifi0: WFPM_UMAC_PD_NOTIFICATION: 0x20
iwlwifi0: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
iwlwifi0: WFPM_AUTH_KEY_0: 0x90
iwlwifi0: CNVI_SCU_SEQ_DATA_DW9: 0x0
iwlwifi0: successfully loaded firmware image 'iwlwifi-ty-a0-gf-a0.pnvm'
iwlwifi0: loaded PNVM version 181407b3
iwlwifi0: Detected RF GF, rfid=0x10d000
iwlwifi0: base HW address: 4c:49:6c:4a:92:f5
acpi_wmi0: <ACPI-WMI mapping> on acpi0
acpi_wmi0: cannot find EC device
acpi_wmi0: Embedded MOF found
ACPI: \134_SB.WFDE.WQCC: 1 arguments were passed to a non-method ACPI object (Buffer) (20221020/nsarguments-361)
acpi_wmi1: <ACPI-WMI mapping> on acpi0
acpi_wmi1: cannot find EC device
acpi_wmi1: Embedded MOF found
ACPI: \134_SB.WFTE.WQCC: 1 arguments were passed to a non-method ACPI object (Buffer) (20221020/nsarguments-361)
igc0: link state changed to UP
lo0: link state changed to UP
ixl0: Disabled multicast promiscuous mode
ixl1: Disabled multicast promiscuous mode
igc0: link state changed to DOWN
igc0: link state changed to UP
[fib_algo] inet.0 (bsearch4#18) rebuild_fd_flm: switching algo to radix4_lockless
Security policy loaded: MAC/ntpd (mac_ntpd)

sysctl 実行結果

Loader Tunables

t1:sysctl -Ta
t1$ sysctl -Ta
kern.maxproc: 70612
kern.maxfiles: 409600
kern.ngroups: 1023
kern.maxfilesperproc: 204800
kern.ipc.maxsockets: 2087222
kern.ipc.tls.ifnet.permitted: 0
kern.ipc.tls.max_reclaim: 1024
kern.ipc.tls.sw_buffer_cache: 1
kern.ipc.tls.cbc_enable: 1
kern.ipc.tls.enable: 1
kern.ipc.tls.ifnet_max_rexmit_pct: 2
kern.ipc.tls.maxlen: 16384
kern.ipc.tls.bind_threads: 0
kern.ipc.shm_allow_removed: 1
kern.ipc.shm_use_phys: 0
kern.ipc.shmall: 131072
kern.ipc.shmseg: 128
kern.ipc.shmmni: 192
kern.ipc.shmmin: 1
kern.ipc.shmmax: 536870912
kern.ipc.semaem: 16384
kern.ipc.semvmx: 32767
kern.ipc.semume: 50
kern.ipc.semopm: 100
kern.ipc.semmsl: 340
kern.ipc.semmnu: 150
kern.ipc.semmns: 340
kern.ipc.semmni: 50
kern.ipc.msgseg: 2048
kern.ipc.msgssz: 8
kern.ipc.msgtql: 40
kern.ipc.msgmnb: 2048
kern.ipc.msgmni: 40
kern.ipc.maxpipekva: 1068654592
kern.ipc.umtx_max_robust: 1000
kern.ipc.umtx_vnode_persistent: 0
kern.ipc.nmbufs: 26002385
kern.ipc.nmbjumbo16: 338572
kern.ipc.nmbjumbo9: 601907
kern.ipc.nmbjumbop: 2031436
kern.ipc.nmbclusters: 4062872
kern.ipc.maxmbufmem: 33283053568
kern.ipc.mb_use_ext_pgs: 1
kern.maxphys: 1048576
kern.cryptodevallowsoft: 0
kern.crypto_workers_num: 12
kern.crypto.allow_soft: 0
kern.crypto.num_workers: 12
kern.tty_info_kstacks: 0
kern.tty_drainwait: 300
kern.trap_enotcap: 0
kern.smp.topology: 0
kern.smp.disabled: 0
kern.always_console_output: 0
kern.log_console_add_linefeed: 0
kern.log_console_output: 1
kern.boot_tag: ---<<BOOT>>---
kern.sgrowsiz: 131072
kern.maxssiz: 536870912
kern.dflssiz: 8388608
kern.maxdsiz: 34359738368
kern.dfldsiz: 34359738368
kern.maxtsiz: 34359738368
kern.bio_transient_maxcnt: 1024
kern.maxbcache: 0
kern.maxswzone: 0
kern.msgbufsize: 98304
kern.nswbuf: 384
kern.nbuf: 105931
kern.hz: 1000
kern.msgbuf_show_timestamp: 0
kern.pin_pcpu_swi: 0
kern.pin_default_swi: 0
kern.ncallout: 18508
kern.maxthread: 1000000
kern.timecounter.tsc_shift: 1
kern.timecounter.smp_tsc_adjust: 0
kern.timecounter.smp_tsc: 1
kern.timecounter.invariant_tsc: 1
kern.timecounter.hardware: TSC-low
kern.timecounter.alloweddeviation: 5
kern.timecounter.timehands_count: 2
kern.timecounter.stepwarnings: 0
kern.compress_user_cores_level: 6
kern.compress_user_cores: 0
kern.capmode_coredump: 0
kern.sugid_coredump: 0
kern.sig_discard_ign: 1
kern.sigfastblock_fetch_always: 0
kern.lognosys: 0
kern.sigqueue.preallocate: 1024
kern.kerneldump_gzlevel: 6
kern.powercycle_on_panic: 0
kern.poweroff_on_panic: 0
kern.sync_on_panic: 0
kern.reboot_wait_time: 0
kern.panic_reboot_wait_time: 15
kern.racct.rctl.throttle_pct2: 4294967295
kern.racct.rctl.throttle_pct: 4294967295
kern.racct.rctl.throttle_max: 4294967295
kern.racct.rctl.throttle_min: 4294967295
kern.racct.rctl.devctl_rate_limit: 10
kern.racct.rctl.maxbufsize: 16777216
kern.racct.enable: 0
kern.kstack_pages: 4
kern.hwpmc.softevents: 16
kern.pid_max: 99999
kern.maxusers: 4412
kern.module_path: /boot/kernel;/boot/modules;/boot/dtb;/boot/dtb/overlays
kern.ktrace.filesize_limit_signal: 0
kern.ktrace.genio_size: 4096
kern.wait_dequeue_sigchld: 1
kern.kill_on_debugger_exit: 1
kern.core_dump_can_intr: 1
kern.coredump_pack_vmmapinfo: 1
kern.coredump_pack_fileinfo: 1
kern.eventtimer.idletick: 0
kern.eventtimer.singlemul: 2
kern.vty: vt
kern.consmsgbuf_size: 65536
kern.boottrace.table_size: 0
kern.boottrace.shutdown_trace_threshold: 0
kern.boottrace.shutdown_trace: 0
kern.boottrace.enabled: 0
kern.elf32.allow_wx: 1
kern.elf32.sigfastblock: 1
kern.elf32.aslr.shared_page: 0
kern.elf32.aslr.stack: 1
kern.elf32.aslr.pie_enable: 0
kern.elf32.aslr.enable: 0
kern.elf32.vdso: 1
kern.elf32.fallback_brand: -1
kern.elf64.allow_wx: 1
kern.elf64.sigfastblock: 1
kern.elf64.aslr.shared_page: 1
kern.elf64.aslr.stack: 1
kern.elf64.aslr.pie_enable: 1
kern.elf64.aslr.enable: 1
kern.elf64.vdso: 1
kern.elf64.fallback_brand: -1
kern.geom.raid.raid5.enable: 1
kern.geom.raid.raid1e.enable: 1
kern.geom.raid.raid1e.rebuild_meta_update: 1024
kern.geom.raid.raid1e.rebuild_cluster_idle: 100
kern.geom.raid.raid1e.rebuild_fair_io: 20
kern.geom.raid.raid1e.rebuild_slab_size: 1048576
kern.geom.raid.raid1.enable: 1
kern.geom.raid.raid1.rebuild_meta_update: 1024
kern.geom.raid.raid1.rebuild_cluster_idle: 100
kern.geom.raid.raid1.rebuild_fair_io: 20
kern.geom.raid.raid1.rebuild_slab_size: 1048576
kern.geom.raid.raid0.enable: 1
kern.geom.raid.concat.enable: 1
kern.geom.raid.sii.enable: 1
kern.geom.raid.promise.enable: 1
kern.geom.raid.nvidia.enable: 1
kern.geom.raid.jmicron.enable: 1
kern.geom.raid.intel.enable: 1
kern.geom.raid.ddf.enable: 1
kern.geom.raid.idle_threshold: 1000000
kern.geom.raid.name_format: 0
kern.geom.raid.disconnect_on_failure: 1
kern.geom.raid.clean_time: 5
kern.geom.raid.start_timeout: 30
kern.geom.raid.read_err_thresh: 10
kern.geom.raid.debug: 0
kern.geom.raid.aggressive_spare: 0
kern.geom.raid.enable: 1
kern.geom.part.mbr.enforce_chs: 0
kern.geom.part.gpt.allow_nesting: 0
kern.geom.part.separator:
kern.geom.part.allow_nesting: 0
kern.geom.part.auto_resize: 1
kern.geom.part.check_integrity: 1
kern.geom.label.disk_ident.enable: 1
kern.geom.label.gptid.enable: 1
kern.geom.label.gpt.enable: 1
kern.geom.label.ufs.enable: 1
kern.geom.label.ufsid.enable: 1
kern.geom.label.reiserfs.enable: 1
kern.geom.label.ntfs.enable: 1
kern.geom.label.msdosfs.enable: 1
kern.geom.label.iso9660.enable: 1
kern.geom.label.flashmap.enable: 1
kern.geom.label.ext2fs.enable: 1
kern.geom.label.debug: 0
kern.geom.debugflags: 0
kern.geom.disk.nda0.flush_notsup_succeed: 0
kern.geom.disk.nda0.led:
kern.vt.splash_cpu_duration: 10
kern.vt.splash_cpu_style: 2
kern.vt.splash_ncpu: 0
kern.vt.splash_cpu: 0
kern.vt.kbd_panic: 0
kern.vt.kbd_debug: 1
kern.vt.kbd_reboot: 1
kern.vt.kbd_poweroff: 1
kern.vt.kbd_halt: 1
kern.vt.suspendswitch: 1
kern.vt.deadtimer: 15
kern.vt.debug: 0
kern.vt.enable_bell: 0
kern.vt.enable_altgr: 1
kern.random.fortuna.concurrent_read: 1
kern.random.fortuna.minpoolsize: 64
kern.random.rdrand.rdrand_independent_seed: 0
kern.random.use_chacha20_cipher: 1
kern.random.block_seeded_status: 0
kern.random.initial_seeding.disable_bypass_warnings: 0
kern.random.initial_seeding.bypass_before_seeding: 1
kern.evdev.sysmouse_t_axis: 0
kern.evdev.rcpt_mask: 12
kern.cam.enc.emulate_array_devices: 1
kern.cam.enc.search_globally: 0
kern.cam.enc.verbose: 0
kern.cam.sa.allow_io_split: 0
kern.cam.da.enable_uma_ccbs: 1
kern.cam.da.enable_biospeedup: 1
kern.cam.da.disable_wp_detection: 0
kern.cam.da.send_ordered: 1
kern.cam.da.default_timeout: 60
kern.cam.da.retry_count: 4
kern.cam.da.poll_period: 3
kern.cam.ada.enable_uma_ccbs: 1
kern.cam.ada.enable_biospeedup: 1
kern.cam.ada.write_cache: 1
kern.cam.ada.read_ahead: 1
kern.cam.ada.spindown_suspend: 1
kern.cam.ada.spindown_shutdown: 1
kern.cam.ada.send_ordered: 1
kern.cam.ada.default_timeout: 30
kern.cam.ada.retry_count: 4
kern.cam.cd.timeout: 30000
kern.cam.cd.retry_count: 4
kern.cam.cd.poll_period: 3
kern.cam.scsi_delay: 5000
kern.cam.cam_srch_hi: 0
kern.cam.nda.nvd_compat: 1
kern.cam.nda.enable_biospeedup: 1
kern.cam.nda.max_trim: 256
kern.cam.pmp.hide_special: 1
kern.cam.pmp.default_timeout: 30
kern.cam.pmp.retry_count: 1
kern.cam.debug_delay: 0
kern.cam.dflags: 0
kern.cam.num_doneqs: 3
kern.cam.boot_delay: 0
kern.cam.mapmem_thresh: 65536
kern.cam.sort_io_queues: 1
vm.pmap.large_map_pml4_entries: 8
vm.pmap.allow_2m_x_ept: 0
vm.pmap.di_locked: 0
vm.pmap.pti: 0
vm.pmap.pcid_invlpg_workaround: 0
vm.pmap.pcid_enabled: 1
vm.pmap.la57: 0
vm.pmap.pg_ps_enabled: 1
vm.vnode_pbufs: 768
vm.numa.disabled: 0
vm.oom_pf_secs: 10
vm.background_launder_max: 20480
vm.background_launder_rate: 4096
vm.act_scan_laundry_weight: 3
vm.pageout_oom_seq: 12
vm.disable_swapspace_pageouts: 0
vm.lowmem_period: 10
vm.pageout_cpus_per_thread: 12
vm.pageout_update_period: 600
vm.panic_on_oom: 0
vm.pgcache_zone_max_pcpu: 0
vm.imply_prot_max: 0
vm.mincore_mapped: 1
vm.old_mlock: 0
vm.pfault_oom_wait: 10
vm.pfault_oom_attempts: 3
vm.zone_warnings: 1
vm.debug.uma_multipage_slabs: 1
vm.phys_pager_cluster: 1024
vm.largepages.reclaim_tries: 1
vm.kmem_size_scale: 1
vm.kmem_size_max: 1319413950874
vm.kmem_size_min: 0
vm.kmem_zmax: 65536
vm.kmem_size: 66566107136
vfs.msdosfs.use_buf_pager: 1
vfs.nfs.iodmin: 0
vfs.nfs.use_buf_pager: 1
vfs.nfs.fileid_maxwarnings: 10
vfs.nfs.userhashsize: 100
vfs.cd9660.use_buf_pager: 1
vfs.zfs.abort_size: 131072
vfs.zfs.earlyabort_pass: 1
vfs.zfs.sync_pass_rewrite: 2
vfs.zfs.sync_pass_dont_compress: 8
vfs.zfs.sync_pass_deferred_free: 2
vfs.zfs.commit_timeout_pct: 5
vfs.zfs.zil_saxattr: 1
vfs.zfs.immediate_write_sz: 32768
vfs.zfs.history_output_max: 1048576
vfs.zfs.max_nvlist_src_size: 0
vfs.zfs.zap_micro_max_size: 131072
vfs.zfs.zap_iterate_prefetch: 1
vfs.zfs.rebuild_scrub_enabled: 1
vfs.zfs.rebuild_vdev_limit: 67108864
vfs.zfs.rebuild_max_segment: 1048576
vfs.zfs.initialize_chunk_size: 1048576
vfs.zfs.initialize_value: 16045690984833335022
vfs.zfs.embedded_slog_min_ms: 64
vfs.zfs.nocacheflush: 0
vfs.zfs.scan_ignore_errors: 0
vfs.zfs.checksum_events_per_second: 20
vfs.zfs.slow_io_events_per_second: 20
vfs.zfs.read_history_hits: 0
vfs.zfs.read_history: 0
vfs.zfs.special_class_metadata_reserve_pct: 25
vfs.zfs.user_indirect_is_special: 1
vfs.zfs.ddt_data_is_special: 1
vfs.zfs.free_leak_on_eio: 0
vfs.zfs.recover: 0
vfs.zfs.flags: 0
vfs.zfs.min_metaslabs_to_flush: 1
vfs.zfs.max_logsm_summary_length: 10
vfs.zfs.keep_log_spacemaps_at_export: 0
vfs.zfs.max_log_walking: 5
vfs.zfs.unflushed_log_block_pct: 400
vfs.zfs.unflushed_log_txg_max: 1000
vfs.zfs.unflushed_log_block_min: 1000
vfs.zfs.unflushed_log_block_max: 131072
vfs.zfs.unflushed_max_mem_ppm: 1000
vfs.zfs.unflushed_max_mem_amt: 1073741824
vfs.zfs.autoimport_disable: 1
vfs.zfs.max_missing_tvds: 0
vfs.zfs.multilist_num_sublists: 0
vfs.zfs.scrub_error_blocks_per_txg: 4096
vfs.zfs.resilver_disable_defer: 0
vfs.zfs.scan_report_txgs: 0
vfs.zfs.scan_fill_weight: 3
vfs.zfs.scan_strict_mem_lim: 0
vfs.zfs.scan_mem_lim_soft_fact: 20
vfs.zfs.scan_max_ext_gap: 2097152
vfs.zfs.scan_checkpoint_intval: 7200
vfs.zfs.scan_legacy: 0
vfs.zfs.scan_issue_strategy: 0
vfs.zfs.scan_mem_lim_fact: 20
vfs.zfs.scan_blkstats: 0
vfs.zfs.free_bpobj_enabled: 1
vfs.zfs.max_async_dedup_frees: 100000
vfs.zfs.async_block_max_blocks: 18446744073709551615
vfs.zfs.no_scrub_prefetch: 0
vfs.zfs.no_scrub_io: 0
vfs.zfs.scan_suspend_progress: 0
vfs.zfs.resilver_min_time_ms: 3000
vfs.zfs.free_min_time_ms: 1000
vfs.zfs.obsolete_min_time_ms: 500
vfs.zfs.scrub_min_time_ms: 1000
vfs.zfs.scan_vdev_limit: 16777216
vfs.zfs.sync_taskq_batch_pct: 75
vfs.zfs.delay_scale: 500000
vfs.zfs.dirty_data_sync_percent: 20
vfs.zfs.dirty_data_max_max: 4294967296
vfs.zfs.wrlog_data_max: 8589934592
vfs.zfs.dirty_data_max: 4294967296
vfs.zfs.delay_min_dirty_percent: 60
vfs.zfs.dirty_data_max_max_percent: 25
vfs.zfs.dirty_data_max_percent: 10
vfs.zfs.disable_ivset_guid_check: 0
vfs.zfs.zvol_enforce_quotas: 1
vfs.zfs.snapshot_history_enabled: 1
vfs.zfs.allow_redacted_dataset_mount: 0
vfs.zfs.max_recordsize: 16777216
vfs.zfs.default_ibs: 17
vfs.zfs.default_bs: 9
vfs.zfs.send_holes_without_birth_time: 1
vfs.zfs.traverse_indirect_prefetch_limit: 32
vfs.zfs.pd_bytes_max: 52428800
vfs.zfs.dmu_object_alloc_chunk_shift: 7
vfs.zfs.dmu_prefetch_max: 134217728
vfs.zfs.dmu_offset_next_sync: 0
vfs.zfs.per_txg_dirty_frees_percent: 30
vfs.zfs.nopwrite_enabled: 1
vfs.zfs.dbuf_state_index: 0
vfs.zfs.btree_verify_intensity: 0
vfs.zfs.compressed_arc_enabled: 1
vfs.zfs.max_dataset_nesting: 50
vfs.zfs.fletcher_4_impl: [fastest] scalar superscalar superscalar4 sse2 ssse3 avx2
vfs.zfs.vol.unmap_enabled: 1
vfs.zfs.vol.recursive: 0
vfs.zfs.vol.mode: 1
vfs.zfs.xattr_compat: 1
vfs.zfs.bclone_enabled: 0
vfs.zfs.debug: 0
vfs.zfs.dbgmsg_maxsize: 4194304
vfs.zfs.dbgmsg_enable: 1
vfs.zfs.top_maxinflight: 1000
vfs.zfs.validate_skip: 0
vfs.zfs.standard_sm_blksz: 131072
vfs.zfs.dtl_sm_blksz: 4096
vfs.zfs.max_auto_ashift: 14
vfs.zfs.min_auto_ashift: 12
vfs.zfs.space_map_ibs: 14
vfs.zfs.debugflags: 0
vfs.zfs.max_missing_tvds_scan: 0
vfs.zfs.max_missing_tvds_cachefile: 2
vfs.zfs.ccw_retry_interval: 300
vfs.zfs.removal_suspend_progress: 0
vfs.zfs.remove_max_segment: 16777216
vfs.zfs.condense_pct: 200
vfs.zfs.zfetch.max_idistance: 67108864
vfs.zfs.zfetch.max_distance: 67108864
vfs.zfs.l2arc_norw: 0
vfs.zfs.l2arc_feed_again: 1
vfs.zfs.l2arc_noprefetch: 1
vfs.zfs.l2arc_feed_min_ms: 200
vfs.zfs.l2arc_feed_secs: 1
vfs.zfs.l2arc_headroom_boost: 200
vfs.zfs.l2arc_headroom: 2
vfs.zfs.l2arc_write_boost: 8388608
vfs.zfs.l2arc_write_max: 8388608
vfs.zfs.arc_no_grow_shift: 5
vfs.zfs.arc_min: 0
vfs.zfs.arc_max: 0
vfs.zfs.zio.deadman_log_all: 0
vfs.zfs.zio.dva_throttle_enabled: 1
vfs.zfs.zio.requeue_io_start_cut_in_line: 1
vfs.zfs.zio.slow_io_ms: 30000
vfs.zfs.zio.taskq_batch_tpq: 0
vfs.zfs.zio.taskq_batch_pct: 80
vfs.zfs.zio.exclude_metadata: 0
vfs.zfs.zil.maxcopied: 7680
vfs.zfs.zil.maxblocksize: 131072
vfs.zfs.zil.slog_bulk: 786432
vfs.zfs.zil.nocacheflush: 0
vfs.zfs.zil.replay_disable: 0
vfs.zfs.zil.min_commit_timeout: 5000
vfs.zfs.zil.clean_taskq_maxalloc: 1048576
vfs.zfs.zil.clean_taskq_minalloc: 1024
vfs.zfs.zil.clean_taskq_nthr_pct: 100
vfs.zfs.zevent.retain_expire_secs: 900
vfs.zfs.zevent.retain_max: 2000
vfs.zfs.zevent.len_max: 512
vfs.zfs.vnops.read_chunk_size: 1048576
vfs.zfs.vdev.removal_suspend_progress: 0
vfs.zfs.vdev.removal_max_span: 32768
vfs.zfs.vdev.remove_max_segment: 16777216
vfs.zfs.vdev.removal_ignore_errors: 0
vfs.zfs.vdev.def_queue_depth: 32
vfs.zfs.vdev.queue_depth_pct: 1000
vfs.zfs.vdev.nia_delay: 5
vfs.zfs.vdev.nia_credit: 5
vfs.zfs.vdev.rebuild_min_active: 1
vfs.zfs.vdev.rebuild_max_active: 3
vfs.zfs.vdev.trim_min_active: 1
vfs.zfs.vdev.trim_max_active: 2
vfs.zfs.vdev.sync_write_min_active: 10
vfs.zfs.vdev.sync_write_max_active: 10
vfs.zfs.vdev.sync_read_min_active: 10
vfs.zfs.vdev.sync_read_max_active: 10
vfs.zfs.vdev.scrub_min_active: 1
vfs.zfs.vdev.scrub_max_active: 3
vfs.zfs.vdev.removal_min_active: 1
vfs.zfs.vdev.removal_max_active: 2
vfs.zfs.vdev.initializing_min_active: 1
vfs.zfs.vdev.initializing_max_active: 1
vfs.zfs.vdev.async_write_min_active: 2
vfs.zfs.vdev.async_write_max_active: 10
vfs.zfs.vdev.async_read_min_active: 1
vfs.zfs.vdev.async_read_max_active: 3
vfs.zfs.vdev.async_write_active_min_dirty_percent: 30
vfs.zfs.vdev.async_write_active_max_dirty_percent: 60
vfs.zfs.vdev.max_active: 1000
vfs.zfs.vdev.write_gap_limit: 4096
vfs.zfs.vdev.read_gap_limit: 32768
vfs.zfs.vdev.aggregation_limit_non_rotating: 131072
vfs.zfs.vdev.aggregation_limit: 1048576
vfs.zfs.vdev.max_auto_ashift: 14
vfs.zfs.vdev.min_auto_ashift: 12
vfs.zfs.vdev.validate_skip: 0
vfs.zfs.vdev.ms_count_limit: 131072
vfs.zfs.vdev.min_ms_count: 16
vfs.zfs.vdev.max_ms_shift: 34
vfs.zfs.vdev.default_ms_shift: 29
vfs.zfs.vdev.default_ms_count: 200
vfs.zfs.vdev.bio_delete_disable: 0
vfs.zfs.vdev.bio_flush_disable: 0
vfs.zfs.vdev.mirror.non_rotating_seek_inc: 1
vfs.zfs.vdev.mirror.non_rotating_inc: 0
vfs.zfs.vdev.mirror.rotating_seek_offset: 1048576
vfs.zfs.vdev.mirror.rotating_seek_inc: 5
vfs.zfs.vdev.mirror.rotating_inc: 0
vfs.zfs.vdev.file.physical_ashift: 9
vfs.zfs.vdev.file.logical_ashift: 9
vfs.zfs.txg.timeout: 5
vfs.zfs.txg.history: 100
vfs.zfs.trim.queue_limit: 10
vfs.zfs.trim.txg_batch: 32
vfs.zfs.trim.metaslab_skip: 0
vfs.zfs.trim.extent_bytes_min: 32768
vfs.zfs.trim.extent_bytes_max: 134217728
vfs.zfs.spa.slop_shift: 5
vfs.zfs.spa.asize_inflation: 24
vfs.zfs.spa.upgrade_errlog_limit: 0
vfs.zfs.spa.discard_memory_limit: 16777216
vfs.zfs.spa.load_print_vdev_tree: 0
vfs.zfs.spa.load_verify_data: 1
vfs.zfs.spa.load_verify_metadata: 1
vfs.zfs.spa.load_verify_shift: 4
vfs.zfs.send.override_estimate_recordsize: 0
vfs.zfs.send.no_prefetch_queue_ff: 20
vfs.zfs.send.queue_ff: 20
vfs.zfs.send.no_prefetch_queue_length: 1048576
vfs.zfs.send.unmodified_spill_blocks: 1
vfs.zfs.send.queue_length: 16777216
vfs.zfs.send.corrupt_data: 0
vfs.zfs.recv.best_effort_corrective: 0
vfs.zfs.recv.write_batch_size: 1048576
vfs.zfs.recv.queue_ff: 20
vfs.zfs.recv.queue_length: 16777216
vfs.zfs.reconstruct.indirect_combinations_max: 4096
vfs.zfs.prefetch.max_idistance: 67108864
vfs.zfs.prefetch.max_distance: 67108864
vfs.zfs.prefetch.min_distance: 4194304
vfs.zfs.prefetch.max_sec_reap: 2
vfs.zfs.prefetch.min_sec_reap: 1
vfs.zfs.prefetch.max_streams: 8
vfs.zfs.prefetch.disable: 0
vfs.zfs.multihost.history: 0
vfs.zfs.multihost.import_intervals: 20
vfs.zfs.multihost.fail_intervals: 10
vfs.zfs.multihost.interval: 1000
vfs.zfs.mg.fragmentation_threshold: 95
vfs.zfs.mg.noalloc_threshold: 0
vfs.zfs.metaslab.preload_pct: 50
vfs.zfs.metaslab.find_max_tries: 100
vfs.zfs.metaslab.try_hard_before_gang: 0
vfs.zfs.metaslab.mem_limit: 25
vfs.zfs.metaslab.max_size_cache_sec: 3600
vfs.zfs.metaslab.df_use_largest_segment: 0
vfs.zfs.metaslab.df_max_search: 16777216
vfs.zfs.metaslab.force_ganging_pct: 3
vfs.zfs.metaslab.force_ganging: 16777217
vfs.zfs.metaslab.switch_threshold: 2
vfs.zfs.metaslab.segment_weight_enabled: 1
vfs.zfs.metaslab.bias_enabled: 1
vfs.zfs.metaslab.lba_weighting_enabled: 1
vfs.zfs.metaslab.fragmentation_threshold: 70
vfs.zfs.metaslab.fragmentation_factor_enabled: 1
vfs.zfs.metaslab.unload_delay_ms: 600000
vfs.zfs.metaslab.unload_delay: 32
vfs.zfs.metaslab.preload_limit: 10
vfs.zfs.metaslab.preload_enabled: 1
vfs.zfs.metaslab.debug_unload: 0
vfs.zfs.metaslab.debug_load: 0
vfs.zfs.metaslab.aliquot: 1048576
vfs.zfs.metaslab.df_free_pct: 4
vfs.zfs.metaslab.df_alloc_threshold: 131072
vfs.zfs.metaslab.sm_blksz_with_log: 131072
vfs.zfs.metaslab.sm_blksz_no_log: 16384
vfs.zfs.lua.max_memlimit: 104857600
vfs.zfs.lua.max_instrlimit: 100000000
vfs.zfs.livelist.min_percent_shared: 75
vfs.zfs.livelist.max_entries: 500000
vfs.zfs.livelist.condense.new_alloc: 0
vfs.zfs.livelist.condense.zthr_cancel: 0
vfs.zfs.livelist.condense.sync_cancel: 0
vfs.zfs.livelist.condense.sync_pause: 0
vfs.zfs.livelist.condense.zthr_pause: 0
vfs.zfs.l2arc.exclude_special: 0
vfs.zfs.l2arc.mfuonly: 0
vfs.zfs.l2arc.rebuild_blocks_min_l2size: 1073741824
vfs.zfs.l2arc.rebuild_enabled: 1
vfs.zfs.l2arc.meta_percent: 33
vfs.zfs.l2arc.norw: 0
vfs.zfs.l2arc.feed_again: 1
vfs.zfs.l2arc.noprefetch: 1
vfs.zfs.l2arc.feed_min_ms: 200
vfs.zfs.l2arc.feed_secs: 1
vfs.zfs.l2arc.trim_ahead: 0
vfs.zfs.l2arc.headroom_boost: 200
vfs.zfs.l2arc.headroom: 2
vfs.zfs.l2arc.write_boost: 8388608
vfs.zfs.l2arc.write_max: 8388608
vfs.zfs.dedup.ddt_zap_default_ibs: 15
vfs.zfs.dedup.ddt_zap_default_bs: 15
vfs.zfs.dedup.prefetch: 0
vfs.zfs.deadman.ziotime_ms: 300000
vfs.zfs.deadman.synctime_ms: 600000
vfs.zfs.deadman.failmode: wait
vfs.zfs.deadman.enabled: 1
vfs.zfs.deadman.checktime_ms: 60000
vfs.zfs.dbuf_cache.lowater_pct: 10
vfs.zfs.dbuf_cache.hiwater_pct: 10
vfs.zfs.dbuf_cache.max_bytes: 18446744073709551615
vfs.zfs.dbuf.mutex_cache_shift: 0
vfs.zfs.dbuf.metadata_cache_shift: 6
vfs.zfs.dbuf.cache_shift: 5
vfs.zfs.dbuf.metadata_cache_max_bytes: 18446744073709551615
vfs.zfs.condense.indirect_commit_entry_delay_ms: 0
vfs.zfs.condense.max_obsolete_bytes: 1073741824
vfs.zfs.condense.min_mapping_bytes: 131072
vfs.zfs.condense.indirect_obsolete_pct: 25
vfs.zfs.condense.indirect_vdevs_enable: 1
vfs.zfs.brt.prefetch: 1
vfs.zfs.arc.prune_task_threads: 1
vfs.zfs.arc.evict_batch_limit: 10
vfs.zfs.arc.eviction_pct: 200
vfs.zfs.arc.dnode_reduce_percent: 10
vfs.zfs.arc.dnode_limit_percent: 10
vfs.zfs.arc.dnode_limit: 0
vfs.zfs.arc.sys_free: 0
vfs.zfs.arc.lotsfree_percent: 10
vfs.zfs.arc.min_prescient_prefetch_ms: 0
vfs.zfs.arc.min_prefetch_ms: 0
vfs.zfs.arc.average_blocksize: 8192
vfs.zfs.arc.pc_percent: 0
vfs.zfs.arc.shrink_shift: 0
vfs.zfs.arc.grow_retry: 0
vfs.zfs.arc.meta_balance: 500
vfs.zfs.arc.max: 0
vfs.zfs.arc.min: 0
vfs.zfs.arc.no_grow_shift: 5
vfs.zfs.abd_scatter_min_size: 4097
vfs.zfs.abd_scatter_enabled: 1
vfs.zfs.sha512_impl: cycle [fastest] generic x64 avx avx2
vfs.zfs.sha256_impl: cycle [fastest] generic x64 ssse3 avx avx2 shani
vfs.zfs.blake3_impl: cycle [fastest] generic sse2 sse41 avx2
vfs.ffs.use_buf_pager: 1
vfs.ffs.enxio_enable: 1
vfs.ffs.doasyncinodeinit: 1
vfs.ffs.dotrimcons: 1
vfs.root_mount_always_wait: 0
vfs.lookup_cap_dotdot_nonlocal: 1
vfs.lookup_cap_dotdot: 1
vfs.typenumhash: 1
vfs.buf_pager_relbuf: 0
vfs.maxbcachebuf: 65536
vfs.unmapped_buf_allowed: 1
vfs.nfsd.owner_minor: 0
vfs.nfsd.owner_major:
vfs.nfsd.scope:
vfs.nfsd.server_max_nfsvers: 4
vfs.nfsd.server_min_nfsvers: 3
vfs.nfsd.nfs_privport: 0
vfs.nfsd.v4statelimit: 500000
vfs.nfsd.layouthighwater: 1000000
vfs.nfsd.sessionhashsize: 20
vfs.nfsd.fhhashsize: 20
vfs.nfsd.clienthashsize: 20
vfs.nfsd.statehashsize: 10
vfs.nfsd.server_max_minorversion4: 2
vfs.nfsd.server_min_minorversion4: 0
vfs.nfsd.fha.max_reqs_per_nfsd: 0
vfs.nfsd.fha.max_nfsds_per_fh: 8
vfs.nfsd.fha.bin_shift: 22
vfs.nfsd.fha.write: 1
vfs.nfsd.fha.read: 1
vfs.nfsd.fha.enable: 1
net.inet.ip.reass_hashsize: 1024
net.inet.ip.mcast.loop: 1
net.inet.ip.mcast.maxsocksrc: 128
net.inet.ip.mcast.maxgrpsrc: 512
net.inet.tcp.syncache.hashsize: 512
net.inet.tcp.syncache.cachelimit: 15360
net.inet.tcp.syncache.bucketlimit: 30
net.inet.tcp.soreceive_stream: 0
net.inet.tcp.tcbhashsize: 524288
net.inet.tcp.reass.queueguard: 16
net.inet.tcp.reass.new_limit: 0
net.inet.tcp.reass.maxqueuelen: 100
net.inet.tcp.reass.maxsegments: 253929
net.inet.tcp.lro.lro_cpu_threshold: 50
net.inet.tcp.lro.entries: 8
net.inet.tcp.hostcache.bucketlimit: 30
net.inet.tcp.hostcache.hashsize: 512
net.inet.tcp.hostcache.cachelimit: 15360
net.inet.tcp.fastopen.ccache_buckets: 2048
net.inet.tcp.fastopen.ccache_bucket_limit: 16
net.link.tap.devfs_cloning: 1
net.link.tun.devfs_cloning: 1
net.link.log_promisc_mode_change: 1
net.link.ifqmaxlen: 50
net.key.spdcache.threshold: 32
net.key.spdcache.maxentries: 0
net.inet6.ip6.accept_rtadv: 1
net.inet6.ip6.auto_linklocal: 1
net.inet6.ip6.no_radr: 0
net.inet6.ip6.mcast.loop: 1
net.inet6.ip6.mcast.maxsocksrc: 128
net.inet6.ip6.mcast.maxgrpsrc: 512
net.inet6.mld.use_allow: 1
net.inet6.mld.v2enable: 1
net.inet6.mld.v1enable: 1
net.bluetooth.usb_isoc_enable: 1
net.graph.maxdata: 4096
net.graph.maxalloc: 4096
net.graph.threads: 12
net.hvsock.hvs_dbg_level: 0
net.netlink.debug.nl_route_debug_level: 6
net.netlink.debug.nl_nhop_debug_level: 6
net.netlink.debug.nl_neigh_debug_level: 6
net.netlink.debug.nl_iface_debug_level: 6
net.netlink.debug.nl_iface_drivers_debug_level: 6
net.netlink.debug.nl_route_core_debug_level: 6
net.netlink.debug.nl_mod_debug_level: 6
net.netlink.debug.nl_writer_debug_level: 6
net.netlink.debug.nl_io_debug_level: 6
net.netlink.debug.nl_generic_debug_level: 6
net.netlink.debug.nl_domain_debug_level: 6
net.netlink.debug.nl_parser_debug_level: 6
net.netlink.debug.nl_generic_kpi_debug_level: 6
net.netdump.arp_retries: 3
net.netdump.retries: 10
net.netdump.polls: 2000
net.netdump.debug: 0
net.route.netisr_maxqlen: 256
net.route.debug.rtsock_debug_level: 6
net.route.debug.rt_helpers_debug_level: 6
net.route.debug.route_ctl_debug_level: 6
net.route.debug.nhop_ctl_debug_level: 6
net.route.debug.nhop_debug_level: 6
net.route.debug.nhgrp_ctl_debug_level: 6
net.route.debug.nhgrp_debug_level: 6
net.route.algo.debug_level: 5
net.fibs: 1
net.add_addr_allfibs: 0
net.debugnet.arp_nretries: 3
net.debugnet.fib: 0
net.debugnet.nretries: 10
net.debugnet.npolls: 2000
net.debugnet.debug: 0
net.isr.defaultqlimit: 256
net.isr.maxqlimit: 10240
net.isr.bindthreads: 0
net.isr.maxthreads: 1
net.isr.dispatch: direct
net.bpf.optimize_writers: 0
debug.x86bios.int: 0
debug.x86bios.call: 0
debug.link_elf_obj_leak_locals: 1
debug.minidump: 1
debug.hwpstate_pstate_limit: 0
debug.hwpstate_verify: 0
debug.hwpstate_verbose: 0
debug.psm.loglevel: 0
debug.vn_io_pgcache_read_enable: 1
debug.vn_io_fault_prefault: 0
debug.vn_io_fault_enable: 1
debug.clock_show_io: 0
debug.rman_debug: 0
debug.kdb.enter_securelevel: 0
debug.kdb.alt_break_to_debugger: 0
debug.kdb.break_to_debugger: 0
debug.clocktime: 0
debug.obsolete_panic: 0
debug.link_elf_leak_locals: 1
debug.umtx.robust_faults_verbose: 1
debug.allow_insane_settime: 0
debug.trace_all_panics: 1
debug.trace_on_panic: 1
debug.debugger_on_trap: 0
debug.debugger_on_recursive_panic: 0
debug.debugger_on_panic: 1
debug.osd: 0
debug.cpufreq.verbose: 0
debug.cpufreq.lowest: 0
debug.uart_force_poll: 0
debug.uart_poll_freq: 50
debug.acpi.resume_beep: 0
debug.acpi.ec.timeout: 750
debug.acpi.ec.polled: 0
debug.acpi.ec.burst: 0
debug.acpi.default_register_width: 1
debug.acpi.interpreter_slack: 1
debug.acpi.max_threads: 3
debug.acpi.max_tasks: 4096
hw.acpi.cpu.cppc_notify: 1
hw.apic.ds_idle_timeout: 1000000
hw.apic.enable_extint: 0
hw.vmd.max_msix: 3
hw.vmd.max_msi: 1
hw.vmd.bypass_msi: 1
hw.ixl.flow_control: -1
hw.ixl.tx_itr: 122
hw.ixl.rx_itr: 62
hw.ixl.shared_debug_mask: 0
hw.ixl.core_debug_mask: 0
hw.ixl.enable_head_writeback: 1
hw.ixl.enable_vf_loopback: 1
hw.ixl.i2c_access_method: 0
hw.ice.rdma_max_msix: 64
hw.ice.irdma: 1
hw.ice.enable_health_events: 1
hw.iavf.tx_itr: 122
hw.iavf.rx_itr: 62
hw.iavf.shared_debug_mask: 0
hw.iavf.core_debug_mask: 0
hw.iavf.enable_head_writeback: 0
hw.lower_amd64_sharedpage: 0
hw.mca.cmc_throttle: 60
hw.mca.interval: 300
hw.mca.maxcount: -1
hw.mca.erratum383: 0
hw.mca.intel6h_HSD131: 0
hw.mca.amd10h_L1TP: 1
hw.mca.log_corrected: 1
hw.mca.enabled: 1
hw.intrbalance: 0
hw.mds_disable: 0
hw.spec_store_bypass_disable: 0
hw.ibrs_disable: 1
hw.iommu.dmar.batch_coalesce: 100
hw.vmbus.pin_evttask: 1
hw.hvtimesync.sample_verbose: 0
hw.hvtimesync.sample_thresh: 100
hw.hvtimesync.ignore_sync: 0
hw.storvsc.chan_cnt: 0
hw.storvsc.max_io: 512
hw.storvsc.ringbuffer_size: 262144
hw.storvsc.use_pim_unmapped: 1
hw.hn.vf_xpnt_attwait: 2
hw.hn.vf_xpnt_accbpf: 0
hw.hn.vf_transparent: 1
hw.hn.tx_agg_pkts: -1
hw.hn.tx_agg_size: -1
hw.hn.lro_mbufq_depth: 0
hw.hn.tx_swq_depth: 0
hw.hn.tx_ring_cnt: 0
hw.hn.chan_cnt: 0
hw.hn.use_if_start: 0
hw.hn.tx_taskq_mode: 0
hw.hn.tx_taskq_cnt: 1
hw.hn.lro_entry_count: 128
hw.hn.direct_tx_size: 128
hw.hn.tx_chimney_size: 0
hw.hn.tso_maxlen: 65535
hw.hn.udpcs_fixup_mtu: 1420
hw.hn.enable_udp6cs: 1
hw.hn.enable_udp4cs: 1
hw.hn.trust_hostip: 1
hw.hn.trust_hostudp: 1
hw.hn.trust_hosttcp: 1
hw.bxe.udp_rss: 0
hw.bxe.autogreeen: 0
hw.bxe.mrrs: -1
hw.bxe.max_aggregation_size: 0
hw.bxe.rx_budget: -1
hw.bxe.hc_tx_ticks: 50
hw.bxe.hc_rx_ticks: 25
hw.bxe.max_rx_bufs: 0
hw.bxe.queue_count: 4
hw.bxe.interrupt_mode: 2
hw.bxe.debug: 0
hw.psm.mux_disabled: -1
hw.psm.elantech_support: 1
hw.psm.trackpoint_support: 1
hw.psm.synaptics_support: 1
hw.psm.tap_enabled: -1
hw.atkbd.hz: 0
hw.mlx5.calibr.normal: 30
hw.mlx5.calibr.fast: 1
hw.mlx5.calibr.duration: 20
hw.mlx5.relaxed_ordering_write: 0
hw.mlx5.auto_fw_update: 0
hw.mlx5.comp_eq_size: 1024
hw.mlx5.fast_unload_enabled: 1
hw.mlx5.prof_sel: 2
hw.mlx5.debug_mask: 0
hw.mlx5.sw_reset_timeout: 1200
hw.mlx5.fw_reset_enable: 1
hw.mlx5.fw_dump_enable: 1
hw.bus.disable_failed_devices: 0
hw.bus.devctl_queue: 1000
hw.intr_hwpmc_waiting_report_threshold: 1
hw.intr_epoch_batch: 1000
hw.intr_storm_threshold: 0
hw.xbd.xbd_enable_indirect: 1
hw.vtnet.lro_mbufq_depth: 0
hw.vtnet.lro_entry_count: 128
hw.vtnet.rx_process_limit: 1024
hw.vtnet.tso_maxlen: 65535
hw.vtnet.mq_max_pairs: 32
hw.vtnet.mq_disable: 0
hw.vtnet.lro_disable: 0
hw.vtnet.tso_disable: 0
hw.vtnet.fixup_needs_csum: 0
hw.vtnet.csum_disable: 0
hw.usb.wmt.timestamps: 0
hw.usb.wmt.debug: 0
hw.usb.usbhid.debug: 0
hw.usb.usbhid.enable: 0
hw.usb.ums.debug: 0
hw.usb.uhid.debug: 0
hw.usb.ukbd.pollrate: 0
hw.usb.ukbd.no_leds: 0
hw.usb.ukbd.debug: 0
hw.usb.full_ddesc: 0
hw.usb.no_cs_fail: 0
hw.usb.proc.debug: 0
hw.usb.disable_port_power: 0
hw.usb.disable_enumeration: 0
hw.usb.power_timeout: 30
hw.usb.uhub.debug: 0
hw.usb.ugen.debug: 0
hw.usb.usb_lang_mask: 255
hw.usb.usb_lang_id: 9
hw.usb.template: -1
hw.usb.dev.debug: 0
hw.usb.timings.enum_nice_time: 16
hw.usb.timings.extra_power_up_time: 20
hw.usb.timings.resume_recovery: 50
hw.usb.timings.resume_wait: 50
hw.usb.timings.resume_delay: 250
hw.usb.timings.set_address_settle: 10
hw.usb.timings.port_resume_delay: 40
hw.usb.timings.port_powerup_delay: 300
hw.usb.timings.port_reset_recovery: 10
hw.usb.timings.port_root_reset_delay: 200
hw.usb.timings.port_reset_delay: 50
hw.usb.debug: 0
hw.usb.umass.throttle: 0
hw.usb.umass.debug: 0
hw.usb.no_shutdown_wait: 0
hw.usb.no_suspend_wait: 0
hw.usb.no_boot_wait: 0
hw.usb.ctrl.debug: 0
hw.usb.xhci.ctlstep: 0
hw.usb.xhci.dma32: 0
hw.usb.xhci.use_polling: 0
hw.usb.xhci.xhci_port_route: 0
hw.usb.xhci.debug: 0
hw.usb.xhci.dcepquirk: 0
hw.usb.xhci.ctlquirk: 1
hw.usb.xhci.streams: 0
hw.usb.uhci.loop: 0
hw.usb.uhci.debug: 0
hw.usb.ohci.debug: 0
hw.usb.ehci.lostintrbug: 0
hw.usb.ehci.iaadbug: 0
hw.usb.ehci.no_hs: 0
hw.usb.ehci.debug: 0
hw.broken_txfifo: 0
hw.syscons.sc_no_suspend_vtswitch: 0
hw.snd.maxautovchans: 16
hw.snd.default_unit: 0
hw.snd.default_auto: 1
hw.snd.verbose: 0
hw.snd.vpc_mixer_bypass: 1
hw.snd.feeder_rate_quality: 1
hw.snd.feeder_rate_round: 25
hw.snd.feeder_rate_max: 2016000
hw.snd.feeder_rate_min: 1
hw.snd.feeder_rate_polyphase_max: 183040
hw.snd.feeder_eq_exact_rate: 0
hw.snd.basename_clone: 1
hw.snd.compat_linux_mmap: 0
hw.snd.syncdelay: -1
hw.snd.usefrags: 0
hw.snd.vpc_0db: 45
hw.snd.vpc_autoreset: 1
hw.snd.timeout: 5
hw.snd.latency_profile: 1
hw.snd.latency: 2
hw.sdhci.enable_msi: 1
hw.sdhci.quirk_set: 0
hw.sdhci.quirk_clear: 0
hw.sdhci.debug: 0
hw.puc.msi_disable: 0
hw.pci.mcfg: 1
hw.pci.host_mem_start: 2147483648
hw.pci.default_vgapci_unit: 0
hw.pci.enable_pcie_ei: 0
hw.pci.enable_pcie_hp: 1
hw.pci.clear_pcib: 0
hw.pci.iov_max_config: 1048576
hw.pci.enable_mps_tune: 1
hw.pci.clear_aer_on_attach: 0
hw.pci.enable_aspm: 1
hw.pci.enable_ari: 1
hw.pci.clear_buses: 0
hw.pci.clear_bars: 0
hw.pci.usb_early_takeover: 1
hw.pci.honor_msi_blacklist: 1
hw.pci.msix_rewrite_table: 0
hw.pci.enable_msix: 1
hw.pci.enable_msi: 1
hw.pci.do_power_suspend: 1
hw.pci.do_power_resume: 1
hw.pci.do_power_nodriver: 0
hw.pci.realloc_bars: 1
hw.pci.enable_io_modes: 1
hw.cbb.debug: 0
hw.cbb.start_32_io: 4096
hw.cbb.start_16_io: 256
hw.cbb.start_memory: 2281701376
hw.nvme.verbose_cmd_dump: 0
hw.nvme.use_nvd: 0
hw.nvd.delete_max: 1073741824
hw.mwl.rxdmalow: 3
hw.mwl.rxquota: 640
hw.mwl.txcoalesce: 8
hw.mwl.txbuf: 256
hw.mwl.rxbuf: 640
hw.mmcsd.cache: 1
hw.mmc.debug: 0
hw.mfi.mrsas_enable: 0
hw.mfi.msi: 1
hw.mfi.cmd_timeout: 30
hw.mfi.polled_cmd_timeout: 60
hw.mfi.detect_jbod_change: 1
hw.mfi.max_cmds: 128
hw.mfi.event_class: 0
hw.mfi.event_locale: 65535
hw.malo.pci.msi_disable: 0
hw.malo.txbuf: 256
hw.malo.rxquota: 256
hw.malo.rxbuf: 256
hw.malo.txcoalesce: 8
hw.ix.enable_aim: 0
hw.ix.enable_rss: 1
hw.ix.enable_fdir: 0
hw.ix.unsupported_sfp: 0
hw.ix.enable_msix: 1
hw.ix.advertise_speed: 0
hw.ix.flow_control: 3
hw.ix.max_interrupt_rate: 31250
hw.igc.max_interrupt_rate: 20000
hw.igc.eee_setting: 1
hw.igc.rx_process_limit: 100
hw.igc.sbp: 1
hw.igc.smart_pwr_down: 0
hw.igc.rx_abs_int_delay: 66
hw.igc.tx_abs_int_delay: 66
hw.igc.rx_int_delay: 0
hw.igc.tx_int_delay: 66
hw.igc.disable_crc_stripping: 0
hw.i2c.iicbb_debug: 0
hw.hid.debug: 0
hw.em.max_interrupt_rate: 8000
hw.em.eee_setting: 1
hw.em.rx_process_limit: 100
hw.em.sbp: 0
hw.em.unsupported_tso: 0
hw.em.smart_pwr_down: 0
hw.em.rx_abs_int_delay: 66
hw.em.tx_abs_int_delay: 66
hw.em.rx_int_delay: 0
hw.em.tx_int_delay: 66
hw.em.disable_crc_stripping: 0
hw.efi.poweroff: 1
hw.cardbus.cis_debug: 0
hw.cardbus.debug: 0
hw.bge.allow_asf: 1
hw.bce.rx_ticks: 18
hw.bce.rx_ticks_int: 18
hw.bce.rx_quick_cons_trip: 6
hw.bce.rx_quick_cons_trip_int: 6
hw.bce.tx_ticks: 80
hw.bce.tx_ticks_int: 80
hw.bce.tx_quick_cons_trip: 20
hw.bce.tx_quick_cons_trip_int: 20
hw.bce.strict_rx_mtu: 0
hw.bce.hdr_split: 1
hw.bce.tx_pages: 2
hw.bce.rx_pages: 2
hw.bce.msi_enable: 1
hw.bce.tso_enable: 1
hw.bce.verbose: 1
hw.ath.txbuf_mgmt: 32
hw.ath.txbuf: 512
hw.ath.rxbuf: 512
hw.ata.ata_dma_check_80pin: 1
hw.aac.enable_msi: 1
machdep.disable_msix_migration: 0
machdep.num_msi_irqs: 2048
machdep.syscall_ret_flush_l1d: 0
machdep.nmi_flush_l1d_sw: 0
machdep.uprintf_signal: 0
machdep.max_ldt_segment: 512
machdep.dump_retry_count: 5
machdep.disable_tsc_calibration: 0
machdep.disable_tsc: 0
machdep.stop_mwait: 0
machdep.intr_apic_id_limit: -1
machdep.hyperthreading_intr_allowed: 0
machdep.hyperthreading_allowed: 1
machdep.disable_mtrrs: 0
machdep.nmi_is_broadcast: 1
machdep.panic_on_nmi: 255
machdep.idle: acpi
machdep.idle_apl31: 0
machdep.idle_mwait: 1
machdep.mwait_cpustop_broken: 0
machdep.hwpstate_pkg_ctrl: 1
machdep.prot_fault_translation: 0
machdep.rtc_save_period: 1800
machdep.mitigations.zenbleed.enable: 2
machdep.mitigations.rngds.enable: 1
machdep.mitigations.taa.enable: 0
machdep.mitigations.mds.disable: 0
machdep.mitigations.ssb.disable: 0
machdep.mitigations.ibrs.disable: 1
machdep.efi_rt_handle_faults: 1
user.localbase: /usr/local
dev.pcm.0.bitperfect: 0
dev.pcm.0.rec.vchanformat: s16le:2.0
dev.pcm.0.rec.vchanrate: 48000
dev.pcm.0.rec.vchanmode: fixed
dev.pcm.0.rec.vchans: 1
dev.pcm.0.play.vchanformat: s16le:2.0
dev.pcm.0.play.vchanrate: 48000
dev.pcm.0.play.vchanmode: fixed
dev.pcm.0.play.vchans: 1
dev.uhub.1.disable_port_power: 0
dev.uhub.1.disable_enumeration: 0
dev.uhub.0.disable_port_power: 0
dev.uhub.0.disable_enumeration: 0
dev.hwpstate_intel.11.epp: 50
dev.hwpstate_intel.10.epp: 50
dev.hwpstate_intel.9.epp: 50
dev.hwpstate_intel.8.epp: 50
dev.hwpstate_intel.7.epp: 50
dev.hwpstate_intel.6.epp: 50
dev.hwpstate_intel.5.epp: 50
dev.hwpstate_intel.4.epp: 50
dev.hwpstate_intel.3.epp: 50
dev.hwpstate_intel.2.epp: 50
dev.hwpstate_intel.1.epp: 50
dev.hwpstate_intel.0.epp: 50
dev.uart.1.pps_mode: 2
dev.uart.0.pps_mode: 2
dev.igc.1.iflib.override_nrxds: 0
dev.igc.1.iflib.override_ntxds: 0
dev.igc.1.iflib.use_logical_cores: 0
dev.igc.1.iflib.separate_txrx: 0
dev.igc.1.iflib.core_offset: 8
dev.igc.1.iflib.tx_abdicate: 0
dev.igc.1.iflib.rx_budget: 0
dev.igc.1.iflib.disable_msix: 0
dev.igc.1.iflib.override_qs_enable: 0
dev.igc.1.iflib.override_nrxqs: 0
dev.igc.1.iflib.override_ntxqs: 0
dev.igc.0.iflib.override_nrxds: 0
dev.igc.0.iflib.override_ntxds: 0
dev.igc.0.iflib.use_logical_cores: 0
dev.igc.0.iflib.separate_txrx: 0
dev.igc.0.iflib.core_offset: 0
dev.igc.0.iflib.tx_abdicate: 0
dev.igc.0.iflib.rx_budget: 0
dev.igc.0.iflib.disable_msix: 0
dev.igc.0.iflib.override_qs_enable: 0
dev.igc.0.iflib.override_nrxqs: 0
dev.igc.0.iflib.override_ntxqs: 0
dev.ixl.1.link_active_on_if_down: 1
dev.ixl.1.iflib.override_nrxds: 0
dev.ixl.1.iflib.override_ntxds: 0
dev.ixl.1.iflib.use_logical_cores: 0
dev.ixl.1.iflib.separate_txrx: 0
dev.ixl.1.iflib.core_offset: 0
dev.ixl.1.iflib.tx_abdicate: 0
dev.ixl.1.iflib.rx_budget: 0
dev.ixl.1.iflib.disable_msix: 0
dev.ixl.1.iflib.override_qs_enable: 0
dev.ixl.1.iflib.override_nrxqs: 0
dev.ixl.1.iflib.override_ntxqs: 0
dev.ixl.0.link_active_on_if_down: 1
dev.ixl.0.iflib.override_nrxds: 0
dev.ixl.0.iflib.override_ntxds: 0
dev.ixl.0.iflib.use_logical_cores: 0
dev.ixl.0.iflib.separate_txrx: 0
dev.ixl.0.iflib.core_offset: 0
dev.ixl.0.iflib.tx_abdicate: 0
dev.ixl.0.iflib.rx_budget: 0
dev.ixl.0.iflib.disable_msix: 0
dev.ixl.0.iflib.override_qs_enable: 0
dev.ixl.0.iflib.override_nrxqs: 0
dev.ixl.0.iflib.override_ntxqs: 0
dev.netmap.max_bridges: 8
security.mac.ntpd.uid: 123
security.mac.ntpd.enabled: 1
security.bsd.stack_guard_page: 1
security.bsd.allow_ptrace: 1
security.bsd.unprivileged_mlock: 1
security.bsd.suser_enabled: 1
security.bsd.map_at_zero: 0
security.jail.param.ip6.: 0
security.jail.param.ip4.: 0
security.jail.param.vnet: 0
security.jail.param.osrelease: 32
security.jail.param.osreldate: 0
security.jail.param.path: 1024
security.jail.param.jid: 0
compat.ia32.maxvmem: 0
compat.ia32.maxssiz: 67108864
compat.ia32.maxdsiz: 536870912
compat.linuxkpi.iwlwifi_mvm_power_scheme: 1
compat.linuxkpi.iwlwifi_mvm_init_dbg: 0
compat.linuxkpi.iwlwifi_disable_11be: 1
compat.linuxkpi.iwlwifi_disable_11ax: 1
compat.linuxkpi.iwlwifi_remove_when_gone: 0
compat.linuxkpi.iwlwifi_disable_11ac: 1
compat.linuxkpi.iwlwifi_power_level: 0
compat.linuxkpi.iwlwifi_power_save: 0
compat.linuxkpi.iwlwifi_led_mode: 0
compat.linuxkpi.iwlwifi_bt_coex_active: 1
compat.linuxkpi.iwlwifi_uapsd_disable: 3
compat.linuxkpi.iwlwifi_nvm_file:
compat.linuxkpi.iwlwifi_fw_restart: 1
compat.linuxkpi.iwlwifi_amsdu_size: 0
compat.linuxkpi.iwlwifi_11n_disable: 1
compat.linuxkpi.iwlwifi_swcrypto: 0
compat.linuxkpi.iwlwifi_debug: 0
compat.linuxkpi.skb.mem_limit: 0
compat.linuxkpi.task_struct_reserve: 3072
compat.linuxkpi.net_ratelimit: 99
compat.linuxkpi.warn_dump_stack: 0
compat.linuxkpi.debug: 0
t1:sysctl -Ta
t2$ sysctl -Ta
kern.maxproc: 70612
kern.maxfiles: 409600
kern.ngroups: 1023
kern.maxfilesperproc: 204800
kern.ipc.maxsockets: 2087222
kern.ipc.tls.ifnet.permitted: 0
kern.ipc.tls.max_reclaim: 1024
kern.ipc.tls.sw_buffer_cache: 1
kern.ipc.tls.cbc_enable: 1
kern.ipc.tls.enable: 1
kern.ipc.tls.ifnet_max_rexmit_pct: 2
kern.ipc.tls.maxlen: 16384
kern.ipc.tls.bind_threads: 0
kern.ipc.shm_allow_removed: 1
kern.ipc.shm_use_phys: 0
kern.ipc.shmall: 131072
kern.ipc.shmseg: 128
kern.ipc.shmmni: 192
kern.ipc.shmmin: 1
kern.ipc.shmmax: 536870912
kern.ipc.semaem: 16384
kern.ipc.semvmx: 32767
kern.ipc.semume: 50
kern.ipc.semopm: 100
kern.ipc.semmsl: 340
kern.ipc.semmnu: 150
kern.ipc.semmns: 340
kern.ipc.semmni: 50
kern.ipc.msgseg: 2048
kern.ipc.msgssz: 8
kern.ipc.msgtql: 40
kern.ipc.msgmnb: 2048
kern.ipc.msgmni: 40
kern.ipc.maxpipekva: 1068654592
kern.ipc.umtx_max_robust: 1000
kern.ipc.umtx_vnode_persistent: 0
kern.ipc.nmbufs: 26002385
kern.ipc.nmbjumbo16: 338572
kern.ipc.nmbjumbo9: 601907
kern.ipc.nmbjumbop: 2031436
kern.ipc.nmbclusters: 4062872
kern.ipc.maxmbufmem: 33283053568
kern.ipc.mb_use_ext_pgs: 1
kern.maxphys: 1048576
kern.cryptodevallowsoft: 0
kern.crypto_workers_num: 20
kern.crypto.allow_soft: 0
kern.crypto.num_workers: 20
kern.tty_info_kstacks: 0
kern.tty_drainwait: 300
kern.trap_enotcap: 0
kern.smp.topology: 0
kern.smp.disabled: 0
kern.always_console_output: 0
kern.log_console_add_linefeed: 0
kern.log_console_output: 1
kern.boot_tag: ---<<BOOT>>---
kern.sgrowsiz: 131072
kern.maxssiz: 536870912
kern.dflssiz: 8388608
kern.maxdsiz: 34359738368
kern.dfldsiz: 34359738368
kern.maxtsiz: 34359738368
kern.bio_transient_maxcnt: 1024
kern.maxbcache: 0
kern.maxswzone: 0
kern.msgbufsize: 98304
kern.nswbuf: 640
kern.nbuf: 105931
kern.hz: 1000
kern.msgbuf_show_timestamp: 0
kern.pin_pcpu_swi: 0
kern.pin_default_swi: 0
kern.ncallout: 18508
kern.maxthread: 1000000
kern.timecounter.tsc_shift: 1
kern.timecounter.smp_tsc_adjust: 0
kern.timecounter.smp_tsc: 1
kern.timecounter.invariant_tsc: 1
kern.timecounter.hardware: TSC-low
kern.timecounter.alloweddeviation: 5
kern.timecounter.timehands_count: 2
kern.timecounter.stepwarnings: 0
kern.compress_user_cores_level: 6
kern.compress_user_cores: 0
kern.capmode_coredump: 0
kern.sugid_coredump: 0
kern.sig_discard_ign: 1
kern.sigfastblock_fetch_always: 0
kern.lognosys: 0
kern.sigqueue.preallocate: 1024
kern.kerneldump_gzlevel: 6
kern.powercycle_on_panic: 0
kern.poweroff_on_panic: 0
kern.sync_on_panic: 0
kern.reboot_wait_time: 0
kern.panic_reboot_wait_time: 15
kern.racct.rctl.throttle_pct2: 4294967295
kern.racct.rctl.throttle_pct: 4294967295
kern.racct.rctl.throttle_max: 4294967295
kern.racct.rctl.throttle_min: 4294967295
kern.racct.rctl.devctl_rate_limit: 10
kern.racct.rctl.maxbufsize: 16777216
kern.racct.enable: 0
kern.kstack_pages: 4
kern.hwpmc.softevents: 16
kern.pid_max: 99999
kern.maxusers: 4412
kern.module_path: /boot/kernel;/boot/modules;/boot/dtb;/boot/dtb/overlays
kern.ktrace.filesize_limit_signal: 0
kern.ktrace.genio_size: 4096
kern.wait_dequeue_sigchld: 1
kern.kill_on_debugger_exit: 1
kern.core_dump_can_intr: 1
kern.coredump_pack_vmmapinfo: 1
kern.coredump_pack_fileinfo: 1
kern.eventtimer.idletick: 0
kern.eventtimer.singlemul: 2
kern.vty: vt
kern.consmsgbuf_size: 65536
kern.boottrace.table_size: 0
kern.boottrace.shutdown_trace_threshold: 0
kern.boottrace.shutdown_trace: 0
kern.boottrace.enabled: 0
kern.elf32.allow_wx: 1
kern.elf32.sigfastblock: 1
kern.elf32.aslr.shared_page: 0
kern.elf32.aslr.stack: 1
kern.elf32.aslr.pie_enable: 0
kern.elf32.aslr.enable: 0
kern.elf32.vdso: 1
kern.elf32.fallback_brand: -1
kern.elf64.allow_wx: 1
kern.elf64.sigfastblock: 1
kern.elf64.aslr.shared_page: 1
kern.elf64.aslr.stack: 1
kern.elf64.aslr.pie_enable: 1
kern.elf64.aslr.enable: 1
kern.elf64.vdso: 1
kern.elf64.fallback_brand: -1
kern.geom.raid.raid5.enable: 1
kern.geom.raid.raid1e.enable: 1
kern.geom.raid.raid1e.rebuild_meta_update: 1024
kern.geom.raid.raid1e.rebuild_cluster_idle: 100
kern.geom.raid.raid1e.rebuild_fair_io: 20
kern.geom.raid.raid1e.rebuild_slab_size: 1048576
kern.geom.raid.raid1.enable: 1
kern.geom.raid.raid1.rebuild_meta_update: 1024
kern.geom.raid.raid1.rebuild_cluster_idle: 100
kern.geom.raid.raid1.rebuild_fair_io: 20
kern.geom.raid.raid1.rebuild_slab_size: 1048576
kern.geom.raid.raid0.enable: 1
kern.geom.raid.concat.enable: 1
kern.geom.raid.sii.enable: 1
kern.geom.raid.promise.enable: 1
kern.geom.raid.nvidia.enable: 1
kern.geom.raid.jmicron.enable: 1
kern.geom.raid.intel.enable: 1
kern.geom.raid.ddf.enable: 1
kern.geom.raid.idle_threshold: 1000000
kern.geom.raid.name_format: 0
kern.geom.raid.disconnect_on_failure: 1
kern.geom.raid.clean_time: 5
kern.geom.raid.start_timeout: 30
kern.geom.raid.read_err_thresh: 10
kern.geom.raid.debug: 0
kern.geom.raid.aggressive_spare: 0
kern.geom.raid.enable: 1
kern.geom.part.mbr.enforce_chs: 0
kern.geom.part.gpt.allow_nesting: 0
kern.geom.part.separator:
kern.geom.part.allow_nesting: 0
kern.geom.part.auto_resize: 1
kern.geom.part.check_integrity: 1
kern.geom.label.disk_ident.enable: 1
kern.geom.label.gptid.enable: 1
kern.geom.label.gpt.enable: 1
kern.geom.label.ufs.enable: 1
kern.geom.label.ufsid.enable: 1
kern.geom.label.reiserfs.enable: 1
kern.geom.label.ntfs.enable: 1
kern.geom.label.msdosfs.enable: 1
kern.geom.label.iso9660.enable: 1
kern.geom.label.flashmap.enable: 1
kern.geom.label.ext2fs.enable: 1
kern.geom.label.debug: 0
kern.geom.debugflags: 0
kern.geom.disk.nda0.flush_notsup_succeed: 0
kern.geom.disk.nda0.led:
kern.vt.splash_cpu_duration: 10
kern.vt.splash_cpu_style: 2
kern.vt.splash_ncpu: 0
kern.vt.splash_cpu: 0
kern.vt.kbd_panic: 0
kern.vt.kbd_debug: 1
kern.vt.kbd_reboot: 1
kern.vt.kbd_poweroff: 1
kern.vt.kbd_halt: 1
kern.vt.suspendswitch: 1
kern.vt.deadtimer: 15
kern.vt.debug: 0
kern.vt.enable_bell: 0
kern.vt.enable_altgr: 1
kern.random.fortuna.concurrent_read: 1
kern.random.fortuna.minpoolsize: 64
kern.random.rdrand.rdrand_independent_seed: 0
kern.random.use_chacha20_cipher: 1
kern.random.block_seeded_status: 0
kern.random.initial_seeding.disable_bypass_warnings: 0
kern.random.initial_seeding.bypass_before_seeding: 1
kern.evdev.sysmouse_t_axis: 0
kern.evdev.rcpt_mask: 12
kern.cam.enc.emulate_array_devices: 1
kern.cam.enc.search_globally: 0
kern.cam.enc.verbose: 0
kern.cam.sa.allow_io_split: 0
kern.cam.da.enable_uma_ccbs: 1
kern.cam.da.enable_biospeedup: 1
kern.cam.da.disable_wp_detection: 0
kern.cam.da.send_ordered: 1
kern.cam.da.default_timeout: 60
kern.cam.da.retry_count: 4
kern.cam.da.poll_period: 3
kern.cam.ada.enable_uma_ccbs: 1
kern.cam.ada.enable_biospeedup: 1
kern.cam.ada.write_cache: 1
kern.cam.ada.read_ahead: 1
kern.cam.ada.spindown_suspend: 1
kern.cam.ada.spindown_shutdown: 1
kern.cam.ada.send_ordered: 1
kern.cam.ada.default_timeout: 30
kern.cam.ada.retry_count: 4
kern.cam.cd.timeout: 30000
kern.cam.cd.retry_count: 4
kern.cam.cd.poll_period: 3
kern.cam.scsi_delay: 5000
kern.cam.cam_srch_hi: 0
kern.cam.nda.nvd_compat: 1
kern.cam.nda.enable_biospeedup: 1
kern.cam.nda.max_trim: 256
kern.cam.pmp.hide_special: 1
kern.cam.pmp.default_timeout: 30
kern.cam.pmp.retry_count: 1
kern.cam.debug_delay: 0
kern.cam.dflags: 0
kern.cam.num_doneqs: 4
kern.cam.boot_delay: 0
kern.cam.mapmem_thresh: 65536
kern.cam.sort_io_queues: 1
vm.pmap.large_map_pml4_entries: 8
vm.pmap.allow_2m_x_ept: 0
vm.pmap.di_locked: 0
vm.pmap.pti: 0
vm.pmap.pcid_invlpg_workaround: 1
vm.pmap.pcid_enabled: 1
vm.pmap.la57: 0
vm.pmap.pg_ps_enabled: 1
vm.vnode_pbufs: 1280
vm.numa.disabled: 0
vm.oom_pf_secs: 10
vm.background_launder_max: 20480
vm.background_launder_rate: 4096
vm.act_scan_laundry_weight: 3
vm.pageout_oom_seq: 12
vm.disable_swapspace_pageouts: 0
vm.lowmem_period: 10
vm.pageout_cpus_per_thread: 16
vm.pageout_update_period: 600
vm.panic_on_oom: 0
vm.pgcache_zone_max_pcpu: 0
vm.imply_prot_max: 0
vm.mincore_mapped: 1
vm.old_mlock: 0
vm.pfault_oom_wait: 10
vm.pfault_oom_attempts: 3
vm.zone_warnings: 1
vm.debug.uma_multipage_slabs: 1
vm.phys_pager_cluster: 1024
vm.largepages.reclaim_tries: 1
vm.kmem_size_scale: 1
vm.kmem_size_max: 1319413950874
vm.kmem_size_min: 0
vm.kmem_zmax: 65536
vm.kmem_size: 66566107136
vfs.msdosfs.use_buf_pager: 1
vfs.nfs.iodmin: 0
vfs.nfs.use_buf_pager: 1
vfs.nfs.fileid_maxwarnings: 10
vfs.nfs.userhashsize: 100
vfs.cd9660.use_buf_pager: 1
vfs.zfs.abort_size: 131072
vfs.zfs.earlyabort_pass: 1
vfs.zfs.sync_pass_rewrite: 2
vfs.zfs.sync_pass_dont_compress: 8
vfs.zfs.sync_pass_deferred_free: 2
vfs.zfs.commit_timeout_pct: 5
vfs.zfs.zil_saxattr: 1
vfs.zfs.immediate_write_sz: 32768
vfs.zfs.history_output_max: 1048576
vfs.zfs.max_nvlist_src_size: 0
vfs.zfs.zap_micro_max_size: 131072
vfs.zfs.zap_iterate_prefetch: 1
vfs.zfs.rebuild_scrub_enabled: 1
vfs.zfs.rebuild_vdev_limit: 67108864
vfs.zfs.rebuild_max_segment: 1048576
vfs.zfs.initialize_chunk_size: 1048576
vfs.zfs.initialize_value: 16045690984833335022
vfs.zfs.embedded_slog_min_ms: 64
vfs.zfs.nocacheflush: 0
vfs.zfs.scan_ignore_errors: 0
vfs.zfs.checksum_events_per_second: 20
vfs.zfs.slow_io_events_per_second: 20
vfs.zfs.read_history_hits: 0
vfs.zfs.read_history: 0
vfs.zfs.special_class_metadata_reserve_pct: 25
vfs.zfs.user_indirect_is_special: 1
vfs.zfs.ddt_data_is_special: 1
vfs.zfs.free_leak_on_eio: 0
vfs.zfs.recover: 0
vfs.zfs.flags: 0
vfs.zfs.min_metaslabs_to_flush: 1
vfs.zfs.max_logsm_summary_length: 10
vfs.zfs.keep_log_spacemaps_at_export: 0
vfs.zfs.max_log_walking: 5
vfs.zfs.unflushed_log_block_pct: 400
vfs.zfs.unflushed_log_txg_max: 1000
vfs.zfs.unflushed_log_block_min: 1000
vfs.zfs.unflushed_log_block_max: 131072
vfs.zfs.unflushed_max_mem_ppm: 1000
vfs.zfs.unflushed_max_mem_amt: 1073741824
vfs.zfs.autoimport_disable: 1
vfs.zfs.max_missing_tvds: 0
vfs.zfs.multilist_num_sublists: 0
vfs.zfs.scrub_error_blocks_per_txg: 4096
vfs.zfs.resilver_disable_defer: 0
vfs.zfs.scan_report_txgs: 0
vfs.zfs.scan_fill_weight: 3
vfs.zfs.scan_strict_mem_lim: 0
vfs.zfs.scan_mem_lim_soft_fact: 20
vfs.zfs.scan_max_ext_gap: 2097152
vfs.zfs.scan_checkpoint_intval: 7200
vfs.zfs.scan_legacy: 0
vfs.zfs.scan_issue_strategy: 0
vfs.zfs.scan_mem_lim_fact: 20
vfs.zfs.scan_blkstats: 0
vfs.zfs.free_bpobj_enabled: 1
vfs.zfs.max_async_dedup_frees: 100000
vfs.zfs.async_block_max_blocks: 18446744073709551615
vfs.zfs.no_scrub_prefetch: 0
vfs.zfs.no_scrub_io: 0
vfs.zfs.scan_suspend_progress: 0
vfs.zfs.resilver_min_time_ms: 3000
vfs.zfs.free_min_time_ms: 1000
vfs.zfs.obsolete_min_time_ms: 500
vfs.zfs.scrub_min_time_ms: 1000
vfs.zfs.scan_vdev_limit: 16777216
vfs.zfs.sync_taskq_batch_pct: 75
vfs.zfs.delay_scale: 500000
vfs.zfs.dirty_data_sync_percent: 20
vfs.zfs.dirty_data_max_max: 4294967296
vfs.zfs.wrlog_data_max: 8589934592
vfs.zfs.dirty_data_max: 4294967296
vfs.zfs.delay_min_dirty_percent: 60
vfs.zfs.dirty_data_max_max_percent: 25
vfs.zfs.dirty_data_max_percent: 10
vfs.zfs.disable_ivset_guid_check: 0
vfs.zfs.zvol_enforce_quotas: 1
vfs.zfs.snapshot_history_enabled: 1
vfs.zfs.allow_redacted_dataset_mount: 0
vfs.zfs.max_recordsize: 16777216
vfs.zfs.default_ibs: 17
vfs.zfs.default_bs: 9
vfs.zfs.send_holes_without_birth_time: 1
vfs.zfs.traverse_indirect_prefetch_limit: 32
vfs.zfs.pd_bytes_max: 52428800
vfs.zfs.dmu_object_alloc_chunk_shift: 7
vfs.zfs.dmu_prefetch_max: 134217728
vfs.zfs.dmu_offset_next_sync: 0
vfs.zfs.per_txg_dirty_frees_percent: 30
vfs.zfs.nopwrite_enabled: 1
vfs.zfs.dbuf_state_index: 0
vfs.zfs.btree_verify_intensity: 0
vfs.zfs.compressed_arc_enabled: 1
vfs.zfs.max_dataset_nesting: 50
vfs.zfs.fletcher_4_impl: [fastest] scalar superscalar superscalar4 sse2 ssse3 avx2
vfs.zfs.vol.unmap_enabled: 1
vfs.zfs.vol.recursive: 0
vfs.zfs.vol.mode: 1
vfs.zfs.xattr_compat: 1
vfs.zfs.bclone_enabled: 0
vfs.zfs.debug: 0
vfs.zfs.dbgmsg_maxsize: 4194304
vfs.zfs.dbgmsg_enable: 1
vfs.zfs.top_maxinflight: 1000
vfs.zfs.validate_skip: 0
vfs.zfs.standard_sm_blksz: 131072
vfs.zfs.dtl_sm_blksz: 4096
vfs.zfs.max_auto_ashift: 14
vfs.zfs.min_auto_ashift: 12
vfs.zfs.space_map_ibs: 14
vfs.zfs.debugflags: 0
vfs.zfs.max_missing_tvds_scan: 0
vfs.zfs.max_missing_tvds_cachefile: 2
vfs.zfs.ccw_retry_interval: 300
vfs.zfs.removal_suspend_progress: 0
vfs.zfs.remove_max_segment: 16777216
vfs.zfs.condense_pct: 200
vfs.zfs.zfetch.max_idistance: 67108864
vfs.zfs.zfetch.max_distance: 67108864
vfs.zfs.l2arc_norw: 0
vfs.zfs.l2arc_feed_again: 1
vfs.zfs.l2arc_noprefetch: 1
vfs.zfs.l2arc_feed_min_ms: 200
vfs.zfs.l2arc_feed_secs: 1
vfs.zfs.l2arc_headroom_boost: 200
vfs.zfs.l2arc_headroom: 2
vfs.zfs.l2arc_write_boost: 8388608
vfs.zfs.l2arc_write_max: 8388608
vfs.zfs.arc_no_grow_shift: 5
vfs.zfs.arc_min: 0
vfs.zfs.arc_max: 0
vfs.zfs.zio.deadman_log_all: 0
vfs.zfs.zio.dva_throttle_enabled: 1
vfs.zfs.zio.requeue_io_start_cut_in_line: 1
vfs.zfs.zio.slow_io_ms: 30000
vfs.zfs.zio.taskq_batch_tpq: 0
vfs.zfs.zio.taskq_batch_pct: 80
vfs.zfs.zio.exclude_metadata: 0
vfs.zfs.zil.maxcopied: 7680
vfs.zfs.zil.maxblocksize: 131072
vfs.zfs.zil.slog_bulk: 786432
vfs.zfs.zil.nocacheflush: 0
vfs.zfs.zil.replay_disable: 0
vfs.zfs.zil.min_commit_timeout: 5000
vfs.zfs.zil.clean_taskq_maxalloc: 1048576
vfs.zfs.zil.clean_taskq_minalloc: 1024
vfs.zfs.zil.clean_taskq_nthr_pct: 100
vfs.zfs.zevent.retain_expire_secs: 900
vfs.zfs.zevent.retain_max: 2000
vfs.zfs.zevent.len_max: 512
vfs.zfs.vnops.read_chunk_size: 1048576
vfs.zfs.vdev.removal_suspend_progress: 0
vfs.zfs.vdev.removal_max_span: 32768
vfs.zfs.vdev.remove_max_segment: 16777216
vfs.zfs.vdev.removal_ignore_errors: 0
vfs.zfs.vdev.def_queue_depth: 32
vfs.zfs.vdev.queue_depth_pct: 1000
vfs.zfs.vdev.nia_delay: 5
vfs.zfs.vdev.nia_credit: 5
vfs.zfs.vdev.rebuild_min_active: 1
vfs.zfs.vdev.rebuild_max_active: 3
vfs.zfs.vdev.trim_min_active: 1
vfs.zfs.vdev.trim_max_active: 2
vfs.zfs.vdev.sync_write_min_active: 10
vfs.zfs.vdev.sync_write_max_active: 10
vfs.zfs.vdev.sync_read_min_active: 10
vfs.zfs.vdev.sync_read_max_active: 10
vfs.zfs.vdev.scrub_min_active: 1
vfs.zfs.vdev.scrub_max_active: 3
vfs.zfs.vdev.removal_min_active: 1
vfs.zfs.vdev.removal_max_active: 2
vfs.zfs.vdev.initializing_min_active: 1
vfs.zfs.vdev.initializing_max_active: 1
vfs.zfs.vdev.async_write_min_active: 2
vfs.zfs.vdev.async_write_max_active: 10
vfs.zfs.vdev.async_read_min_active: 1
vfs.zfs.vdev.async_read_max_active: 3
vfs.zfs.vdev.async_write_active_min_dirty_percent: 30
vfs.zfs.vdev.async_write_active_max_dirty_percent: 60
vfs.zfs.vdev.max_active: 1000
vfs.zfs.vdev.write_gap_limit: 4096
vfs.zfs.vdev.read_gap_limit: 32768
vfs.zfs.vdev.aggregation_limit_non_rotating: 131072
vfs.zfs.vdev.aggregation_limit: 1048576
vfs.zfs.vdev.max_auto_ashift: 14
vfs.zfs.vdev.min_auto_ashift: 12
vfs.zfs.vdev.validate_skip: 0
vfs.zfs.vdev.ms_count_limit: 131072
vfs.zfs.vdev.min_ms_count: 16
vfs.zfs.vdev.max_ms_shift: 34
vfs.zfs.vdev.default_ms_shift: 29
vfs.zfs.vdev.default_ms_count: 200
vfs.zfs.vdev.bio_delete_disable: 0
vfs.zfs.vdev.bio_flush_disable: 0
vfs.zfs.vdev.mirror.non_rotating_seek_inc: 1
vfs.zfs.vdev.mirror.non_rotating_inc: 0
vfs.zfs.vdev.mirror.rotating_seek_offset: 1048576
vfs.zfs.vdev.mirror.rotating_seek_inc: 5
vfs.zfs.vdev.mirror.rotating_inc: 0
vfs.zfs.vdev.file.physical_ashift: 9
vfs.zfs.vdev.file.logical_ashift: 9
vfs.zfs.txg.timeout: 5
vfs.zfs.txg.history: 100
vfs.zfs.trim.queue_limit: 10
vfs.zfs.trim.txg_batch: 32
vfs.zfs.trim.metaslab_skip: 0
vfs.zfs.trim.extent_bytes_min: 32768
vfs.zfs.trim.extent_bytes_max: 134217728
vfs.zfs.spa.slop_shift: 5
vfs.zfs.spa.asize_inflation: 24
vfs.zfs.spa.upgrade_errlog_limit: 0
vfs.zfs.spa.discard_memory_limit: 16777216
vfs.zfs.spa.load_print_vdev_tree: 0
vfs.zfs.spa.load_verify_data: 1
vfs.zfs.spa.load_verify_metadata: 1
vfs.zfs.spa.load_verify_shift: 4
vfs.zfs.send.override_estimate_recordsize: 0
vfs.zfs.send.no_prefetch_queue_ff: 20
vfs.zfs.send.queue_ff: 20
vfs.zfs.send.no_prefetch_queue_length: 1048576
vfs.zfs.send.unmodified_spill_blocks: 1
vfs.zfs.send.queue_length: 16777216
vfs.zfs.send.corrupt_data: 0
vfs.zfs.recv.best_effort_corrective: 0
vfs.zfs.recv.write_batch_size: 1048576
vfs.zfs.recv.queue_ff: 20
vfs.zfs.recv.queue_length: 16777216
vfs.zfs.reconstruct.indirect_combinations_max: 4096
vfs.zfs.prefetch.max_idistance: 67108864
vfs.zfs.prefetch.max_distance: 67108864
vfs.zfs.prefetch.min_distance: 4194304
vfs.zfs.prefetch.max_sec_reap: 2
vfs.zfs.prefetch.min_sec_reap: 1
vfs.zfs.prefetch.max_streams: 8
vfs.zfs.prefetch.disable: 0
vfs.zfs.multihost.history: 0
vfs.zfs.multihost.import_intervals: 20
vfs.zfs.multihost.fail_intervals: 10
vfs.zfs.multihost.interval: 1000
vfs.zfs.mg.fragmentation_threshold: 95
vfs.zfs.mg.noalloc_threshold: 0
vfs.zfs.metaslab.preload_pct: 50
vfs.zfs.metaslab.find_max_tries: 100
vfs.zfs.metaslab.try_hard_before_gang: 0
vfs.zfs.metaslab.mem_limit: 25
vfs.zfs.metaslab.max_size_cache_sec: 3600
vfs.zfs.metaslab.df_use_largest_segment: 0
vfs.zfs.metaslab.df_max_search: 16777216
vfs.zfs.metaslab.force_ganging_pct: 3
vfs.zfs.metaslab.force_ganging: 16777217
vfs.zfs.metaslab.switch_threshold: 2
vfs.zfs.metaslab.segment_weight_enabled: 1
vfs.zfs.metaslab.bias_enabled: 1
vfs.zfs.metaslab.lba_weighting_enabled: 1
vfs.zfs.metaslab.fragmentation_threshold: 70
vfs.zfs.metaslab.fragmentation_factor_enabled: 1
vfs.zfs.metaslab.unload_delay_ms: 600000
vfs.zfs.metaslab.unload_delay: 32
vfs.zfs.metaslab.preload_limit: 10
vfs.zfs.metaslab.preload_enabled: 1
vfs.zfs.metaslab.debug_unload: 0
vfs.zfs.metaslab.debug_load: 0
vfs.zfs.metaslab.aliquot: 1048576
vfs.zfs.metaslab.df_free_pct: 4
vfs.zfs.metaslab.df_alloc_threshold: 131072
vfs.zfs.metaslab.sm_blksz_with_log: 131072
vfs.zfs.metaslab.sm_blksz_no_log: 16384
vfs.zfs.lua.max_memlimit: 104857600
vfs.zfs.lua.max_instrlimit: 100000000
vfs.zfs.livelist.min_percent_shared: 75
vfs.zfs.livelist.max_entries: 500000
vfs.zfs.livelist.condense.new_alloc: 0
vfs.zfs.livelist.condense.zthr_cancel: 0
vfs.zfs.livelist.condense.sync_cancel: 0
vfs.zfs.livelist.condense.sync_pause: 0
vfs.zfs.livelist.condense.zthr_pause: 0
vfs.zfs.l2arc.exclude_special: 0
vfs.zfs.l2arc.mfuonly: 0
vfs.zfs.l2arc.rebuild_blocks_min_l2size: 1073741824
vfs.zfs.l2arc.rebuild_enabled: 1
vfs.zfs.l2arc.meta_percent: 33
vfs.zfs.l2arc.norw: 0
vfs.zfs.l2arc.feed_again: 1
vfs.zfs.l2arc.noprefetch: 1
vfs.zfs.l2arc.feed_min_ms: 200
vfs.zfs.l2arc.feed_secs: 1
vfs.zfs.l2arc.trim_ahead: 0
vfs.zfs.l2arc.headroom_boost: 200
vfs.zfs.l2arc.headroom: 2
vfs.zfs.l2arc.write_boost: 8388608
vfs.zfs.l2arc.write_max: 8388608
vfs.zfs.dedup.ddt_zap_default_ibs: 15
vfs.zfs.dedup.ddt_zap_default_bs: 15
vfs.zfs.dedup.prefetch: 0
vfs.zfs.deadman.ziotime_ms: 300000
vfs.zfs.deadman.synctime_ms: 600000
vfs.zfs.deadman.failmode: wait
vfs.zfs.deadman.enabled: 1
vfs.zfs.deadman.checktime_ms: 60000
vfs.zfs.dbuf_cache.lowater_pct: 10
vfs.zfs.dbuf_cache.hiwater_pct: 10
vfs.zfs.dbuf_cache.max_bytes: 18446744073709551615
vfs.zfs.dbuf.mutex_cache_shift: 0
vfs.zfs.dbuf.metadata_cache_shift: 6
vfs.zfs.dbuf.cache_shift: 5
vfs.zfs.dbuf.metadata_cache_max_bytes: 18446744073709551615
vfs.zfs.condense.indirect_commit_entry_delay_ms: 0
vfs.zfs.condense.max_obsolete_bytes: 1073741824
vfs.zfs.condense.min_mapping_bytes: 131072
vfs.zfs.condense.indirect_obsolete_pct: 25
vfs.zfs.condense.indirect_vdevs_enable: 1
vfs.zfs.brt.prefetch: 1
vfs.zfs.arc.prune_task_threads: 1
vfs.zfs.arc.evict_batch_limit: 10
vfs.zfs.arc.eviction_pct: 200
vfs.zfs.arc.dnode_reduce_percent: 10
vfs.zfs.arc.dnode_limit_percent: 10
vfs.zfs.arc.dnode_limit: 0
vfs.zfs.arc.sys_free: 0
vfs.zfs.arc.lotsfree_percent: 10
vfs.zfs.arc.min_prescient_prefetch_ms: 0
vfs.zfs.arc.min_prefetch_ms: 0
vfs.zfs.arc.average_blocksize: 8192
vfs.zfs.arc.pc_percent: 0
vfs.zfs.arc.shrink_shift: 0
vfs.zfs.arc.grow_retry: 0
vfs.zfs.arc.meta_balance: 500
vfs.zfs.arc.max: 0
vfs.zfs.arc.min: 0
vfs.zfs.arc.no_grow_shift: 5
vfs.zfs.abd_scatter_min_size: 4097
vfs.zfs.abd_scatter_enabled: 1
vfs.zfs.sha512_impl: cycle [fastest] generic x64 avx avx2
vfs.zfs.sha256_impl: cycle [fastest] generic x64 ssse3 avx avx2 shani
vfs.zfs.blake3_impl: cycle [fastest] generic sse2 sse41 avx2
vfs.ffs.use_buf_pager: 1
vfs.ffs.enxio_enable: 1
vfs.ffs.doasyncinodeinit: 1
vfs.ffs.dotrimcons: 1
vfs.root_mount_always_wait: 0
vfs.lookup_cap_dotdot_nonlocal: 1
vfs.lookup_cap_dotdot: 1
vfs.typenumhash: 1
vfs.buf_pager_relbuf: 0
vfs.maxbcachebuf: 65536
vfs.unmapped_buf_allowed: 1
vfs.nfsd.owner_minor: 0
vfs.nfsd.owner_major:
vfs.nfsd.scope:
vfs.nfsd.server_max_nfsvers: 4
vfs.nfsd.server_min_nfsvers: 3
vfs.nfsd.nfs_privport: 0
vfs.nfsd.v4statelimit: 500000
vfs.nfsd.layouthighwater: 1000000
vfs.nfsd.sessionhashsize: 20
vfs.nfsd.fhhashsize: 20
vfs.nfsd.clienthashsize: 20
vfs.nfsd.statehashsize: 10
vfs.nfsd.server_max_minorversion4: 2
vfs.nfsd.server_min_minorversion4: 0
vfs.nfsd.fha.max_reqs_per_nfsd: 0
vfs.nfsd.fha.max_nfsds_per_fh: 8
vfs.nfsd.fha.bin_shift: 22
vfs.nfsd.fha.write: 1
vfs.nfsd.fha.read: 1
vfs.nfsd.fha.enable: 1
net.inet.ip.reass_hashsize: 1024
net.inet.ip.mcast.loop: 1
net.inet.ip.mcast.maxsocksrc: 128
net.inet.ip.mcast.maxgrpsrc: 512
net.inet.tcp.syncache.hashsize: 512
net.inet.tcp.syncache.cachelimit: 15360
net.inet.tcp.syncache.bucketlimit: 30
net.inet.tcp.soreceive_stream: 0
net.inet.tcp.tcbhashsize: 524288
net.inet.tcp.reass.queueguard: 16
net.inet.tcp.reass.new_limit: 0
net.inet.tcp.reass.maxqueuelen: 100
net.inet.tcp.reass.maxsegments: 253929
net.inet.tcp.lro.lro_cpu_threshold: 50
net.inet.tcp.lro.entries: 8
net.inet.tcp.hostcache.bucketlimit: 30
net.inet.tcp.hostcache.hashsize: 512
net.inet.tcp.hostcache.cachelimit: 15360
net.inet.tcp.fastopen.ccache_buckets: 2048
net.inet.tcp.fastopen.ccache_bucket_limit: 16
net.link.tap.devfs_cloning: 1
net.link.tun.devfs_cloning: 1
net.link.log_promisc_mode_change: 1
net.link.ifqmaxlen: 50
net.key.spdcache.threshold: 32
net.key.spdcache.maxentries: 0
net.inet6.ip6.accept_rtadv: 1
net.inet6.ip6.auto_linklocal: 1
net.inet6.ip6.no_radr: 0
net.inet6.ip6.mcast.loop: 1
net.inet6.ip6.mcast.maxsocksrc: 128
net.inet6.ip6.mcast.maxgrpsrc: 512
net.inet6.mld.use_allow: 1
net.inet6.mld.v2enable: 1
net.inet6.mld.v1enable: 1
net.bluetooth.usb_isoc_enable: 1
net.graph.maxdata: 4096
net.graph.maxalloc: 4096
net.graph.threads: 20
net.hvsock.hvs_dbg_level: 0
net.netlink.debug.nl_route_debug_level: 6
net.netlink.debug.nl_nhop_debug_level: 6
net.netlink.debug.nl_neigh_debug_level: 6
net.netlink.debug.nl_iface_debug_level: 6
net.netlink.debug.nl_iface_drivers_debug_level: 6
net.netlink.debug.nl_route_core_debug_level: 6
net.netlink.debug.nl_mod_debug_level: 6
net.netlink.debug.nl_writer_debug_level: 6
net.netlink.debug.nl_io_debug_level: 6
net.netlink.debug.nl_generic_debug_level: 6
net.netlink.debug.nl_domain_debug_level: 6
net.netlink.debug.nl_parser_debug_level: 6
net.netlink.debug.nl_generic_kpi_debug_level: 6
net.netdump.arp_retries: 3
net.netdump.retries: 10
net.netdump.polls: 2000
net.netdump.debug: 0
net.route.netisr_maxqlen: 256
net.route.debug.rtsock_debug_level: 6
net.route.debug.rt_helpers_debug_level: 6
net.route.debug.route_ctl_debug_level: 6
net.route.debug.nhop_ctl_debug_level: 6
net.route.debug.nhop_debug_level: 6
net.route.debug.nhgrp_ctl_debug_level: 6
net.route.debug.nhgrp_debug_level: 6
net.route.algo.debug_level: 5
net.fibs: 1
net.add_addr_allfibs: 0
net.debugnet.arp_nretries: 3
net.debugnet.fib: 0
net.debugnet.nretries: 10
net.debugnet.npolls: 2000
net.debugnet.debug: 0
net.isr.defaultqlimit: 256
net.isr.maxqlimit: 10240
net.isr.bindthreads: 0
net.isr.maxthreads: 1
net.isr.dispatch: direct
net.bpf.optimize_writers: 0
debug.x86bios.int: 0
debug.x86bios.call: 0
debug.link_elf_obj_leak_locals: 1
debug.minidump: 1
debug.hwpstate_pstate_limit: 0
debug.hwpstate_verify: 0
debug.hwpstate_verbose: 0
debug.psm.loglevel: 0
debug.vn_io_pgcache_read_enable: 1
debug.vn_io_fault_prefault: 0
debug.vn_io_fault_enable: 1
debug.clock_show_io: 0
debug.rman_debug: 0
debug.kdb.enter_securelevel: 0
debug.kdb.alt_break_to_debugger: 0
debug.kdb.break_to_debugger: 0
debug.clocktime: 0
debug.obsolete_panic: 0
debug.link_elf_leak_locals: 1
debug.umtx.robust_faults_verbose: 1
debug.allow_insane_settime: 0
debug.trace_all_panics: 1
debug.trace_on_panic: 1
debug.debugger_on_trap: 0
debug.debugger_on_recursive_panic: 0
debug.debugger_on_panic: 1
debug.osd: 0
debug.cpufreq.verbose: 0
debug.cpufreq.lowest: 0
debug.uart_force_poll: 0
debug.uart_poll_freq: 50
debug.acpi.resume_beep: 0
debug.acpi.ec.timeout: 750
debug.acpi.ec.polled: 0
debug.acpi.ec.burst: 0
debug.acpi.default_register_width: 1
debug.acpi.interpreter_slack: 1
debug.acpi.max_threads: 3
debug.acpi.max_tasks: 4096
hw.acpi.cpu.cppc_notify: 1
hw.apic.ds_idle_timeout: 1000000
hw.apic.enable_extint: 0
hw.vmd.max_msix: 3
hw.vmd.max_msi: 1
hw.vmd.bypass_msi: 1
hw.ixl.flow_control: -1
hw.ixl.tx_itr: 122
hw.ixl.rx_itr: 62
hw.ixl.shared_debug_mask: 0
hw.ixl.core_debug_mask: 0
hw.ixl.enable_head_writeback: 1
hw.ixl.enable_vf_loopback: 1
hw.ixl.i2c_access_method: 0
hw.ice.rdma_max_msix: 64
hw.ice.irdma: 1
hw.ice.enable_health_events: 1
hw.iavf.tx_itr: 122
hw.iavf.rx_itr: 62
hw.iavf.shared_debug_mask: 0
hw.iavf.core_debug_mask: 0
hw.iavf.enable_head_writeback: 0
hw.lower_amd64_sharedpage: 0
hw.mca.cmc_throttle: 60
hw.mca.interval: 300
hw.mca.maxcount: -1
hw.mca.erratum383: 0
hw.mca.intel6h_HSD131: 0
hw.mca.amd10h_L1TP: 1
hw.mca.log_corrected: 1
hw.mca.enabled: 1
hw.intrbalance: 0
hw.mds_disable: 0
hw.spec_store_bypass_disable: 0
hw.ibrs_disable: 1
hw.iommu.dmar.batch_coalesce: 100
hw.vmbus.pin_evttask: 1
hw.hvtimesync.sample_verbose: 0
hw.hvtimesync.sample_thresh: 100
hw.hvtimesync.ignore_sync: 0
hw.storvsc.chan_cnt: 0
hw.storvsc.max_io: 512
hw.storvsc.ringbuffer_size: 262144
hw.storvsc.use_pim_unmapped: 1
hw.hn.vf_xpnt_attwait: 2
hw.hn.vf_xpnt_accbpf: 0
hw.hn.vf_transparent: 1
hw.hn.tx_agg_pkts: -1
hw.hn.tx_agg_size: -1
hw.hn.lro_mbufq_depth: 0
hw.hn.tx_swq_depth: 0
hw.hn.tx_ring_cnt: 0
hw.hn.chan_cnt: 0
hw.hn.use_if_start: 0
hw.hn.tx_taskq_mode: 0
hw.hn.tx_taskq_cnt: 1
hw.hn.lro_entry_count: 128
hw.hn.direct_tx_size: 128
hw.hn.tx_chimney_size: 0
hw.hn.tso_maxlen: 65535
hw.hn.udpcs_fixup_mtu: 1420
hw.hn.enable_udp6cs: 1
hw.hn.enable_udp4cs: 1
hw.hn.trust_hostip: 1
hw.hn.trust_hostudp: 1
hw.hn.trust_hosttcp: 1
hw.bxe.udp_rss: 0
hw.bxe.autogreeen: 0
hw.bxe.mrrs: -1
hw.bxe.max_aggregation_size: 0
hw.bxe.rx_budget: -1
hw.bxe.hc_tx_ticks: 50
hw.bxe.hc_rx_ticks: 25
hw.bxe.max_rx_bufs: 0
hw.bxe.queue_count: 4
hw.bxe.interrupt_mode: 2
hw.bxe.debug: 0
hw.psm.mux_disabled: -1
hw.psm.elantech_support: 1
hw.psm.trackpoint_support: 1
hw.psm.synaptics_support: 1
hw.psm.tap_enabled: -1
hw.atkbd.hz: 0
hw.mlx5.calibr.normal: 30
hw.mlx5.calibr.fast: 1
hw.mlx5.calibr.duration: 20
hw.mlx5.relaxed_ordering_write: 0
hw.mlx5.auto_fw_update: 0
hw.mlx5.comp_eq_size: 1024
hw.mlx5.fast_unload_enabled: 1
hw.mlx5.prof_sel: 2
hw.mlx5.debug_mask: 0
hw.mlx5.sw_reset_timeout: 1200
hw.mlx5.fw_reset_enable: 1
hw.mlx5.fw_dump_enable: 1
hw.bus.disable_failed_devices: 0
hw.bus.devctl_queue: 1000
hw.intr_hwpmc_waiting_report_threshold: 1
hw.intr_epoch_batch: 1000
hw.intr_storm_threshold: 0
hw.xbd.xbd_enable_indirect: 1
hw.vtnet.lro_mbufq_depth: 0
hw.vtnet.lro_entry_count: 128
hw.vtnet.rx_process_limit: 1024
hw.vtnet.tso_maxlen: 65535
hw.vtnet.mq_max_pairs: 32
hw.vtnet.mq_disable: 0
hw.vtnet.lro_disable: 0
hw.vtnet.tso_disable: 0
hw.vtnet.fixup_needs_csum: 0
hw.vtnet.csum_disable: 0
hw.usb.wmt.timestamps: 0
hw.usb.wmt.debug: 0
hw.usb.usbhid.debug: 0
hw.usb.usbhid.enable: 0
hw.usb.ums.debug: 0
hw.usb.uhid.debug: 0
hw.usb.ukbd.pollrate: 0
hw.usb.ukbd.no_leds: 0
hw.usb.ukbd.debug: 0
hw.usb.full_ddesc: 0
hw.usb.no_cs_fail: 0
hw.usb.proc.debug: 0
hw.usb.disable_port_power: 0
hw.usb.disable_enumeration: 0
hw.usb.power_timeout: 30
hw.usb.uhub.debug: 0
hw.usb.ugen.debug: 0
hw.usb.usb_lang_mask: 255
hw.usb.usb_lang_id: 9
hw.usb.template: -1
hw.usb.dev.debug: 0
hw.usb.timings.enum_nice_time: 16
hw.usb.timings.extra_power_up_time: 20
hw.usb.timings.resume_recovery: 50
hw.usb.timings.resume_wait: 50
hw.usb.timings.resume_delay: 250
hw.usb.timings.set_address_settle: 10
hw.usb.timings.port_resume_delay: 40
hw.usb.timings.port_powerup_delay: 300
hw.usb.timings.port_reset_recovery: 10
hw.usb.timings.port_root_reset_delay: 200
hw.usb.timings.port_reset_delay: 50
hw.usb.debug: 0
hw.usb.umass.throttle: 0
hw.usb.umass.debug: 0
hw.usb.no_shutdown_wait: 0
hw.usb.no_suspend_wait: 0
hw.usb.no_boot_wait: 0
hw.usb.ctrl.debug: 0
hw.usb.xhci.ctlstep: 0
hw.usb.xhci.dma32: 0
hw.usb.xhci.use_polling: 0
hw.usb.xhci.xhci_port_route: 0
hw.usb.xhci.debug: 0
hw.usb.xhci.dcepquirk: 0
hw.usb.xhci.ctlquirk: 1
hw.usb.xhci.streams: 0
hw.usb.uhci.loop: 0
hw.usb.uhci.debug: 0
hw.usb.ohci.debug: 0
hw.usb.ehci.lostintrbug: 0
hw.usb.ehci.iaadbug: 0
hw.usb.ehci.no_hs: 0
hw.usb.ehci.debug: 0
hw.broken_txfifo: 0
hw.syscons.sc_no_suspend_vtswitch: 0
hw.snd.maxautovchans: 16
hw.snd.default_unit: 0
hw.snd.default_auto: 1
hw.snd.verbose: 0
hw.snd.vpc_mixer_bypass: 1
hw.snd.feeder_rate_quality: 1
hw.snd.feeder_rate_round: 25
hw.snd.feeder_rate_max: 2016000
hw.snd.feeder_rate_min: 1
hw.snd.feeder_rate_polyphase_max: 183040
hw.snd.feeder_eq_exact_rate: 0
hw.snd.basename_clone: 1
hw.snd.compat_linux_mmap: 0
hw.snd.syncdelay: -1
hw.snd.usefrags: 0
hw.snd.vpc_0db: 45
hw.snd.vpc_autoreset: 1
hw.snd.timeout: 5
hw.snd.latency_profile: 1
hw.snd.latency: 2
hw.sdhci.enable_msi: 1
hw.sdhci.quirk_set: 0
hw.sdhci.quirk_clear: 0
hw.sdhci.debug: 0
hw.puc.msi_disable: 0
hw.pci.mcfg: 1
hw.pci.host_mem_start: 2147483648
hw.pci.default_vgapci_unit: 0
hw.pci.enable_pcie_ei: 0
hw.pci.enable_pcie_hp: 1
hw.pci.clear_pcib: 0
hw.pci.iov_max_config: 1048576
hw.pci.enable_mps_tune: 1
hw.pci.clear_aer_on_attach: 0
hw.pci.enable_aspm: 1
hw.pci.enable_ari: 1
hw.pci.clear_buses: 0
hw.pci.clear_bars: 0
hw.pci.usb_early_takeover: 1
hw.pci.honor_msi_blacklist: 1
hw.pci.msix_rewrite_table: 0
hw.pci.enable_msix: 1
hw.pci.enable_msi: 1
hw.pci.do_power_suspend: 1
hw.pci.do_power_resume: 1
hw.pci.do_power_nodriver: 0
hw.pci.realloc_bars: 1
hw.pci.enable_io_modes: 1
hw.cbb.debug: 0
hw.cbb.start_32_io: 4096
hw.cbb.start_16_io: 256
hw.cbb.start_memory: 2281701376
hw.nvme.verbose_cmd_dump: 0
hw.nvme.use_nvd: 0
hw.nvd.delete_max: 1073741824
hw.mwl.rxdmalow: 3
hw.mwl.rxquota: 640
hw.mwl.txcoalesce: 8
hw.mwl.txbuf: 256
hw.mwl.rxbuf: 640
hw.mmcsd.cache: 1
hw.mmc.debug: 0
hw.mfi.mrsas_enable: 0
hw.mfi.msi: 1
hw.mfi.cmd_timeout: 30
hw.mfi.polled_cmd_timeout: 60
hw.mfi.detect_jbod_change: 1
hw.mfi.max_cmds: 128
hw.mfi.event_class: 0
hw.mfi.event_locale: 65535
hw.malo.pci.msi_disable: 0
hw.malo.txbuf: 256
hw.malo.rxquota: 256
hw.malo.rxbuf: 256
hw.malo.txcoalesce: 8
hw.ix.enable_aim: 0
hw.ix.enable_rss: 1
hw.ix.enable_fdir: 0
hw.ix.unsupported_sfp: 0
hw.ix.enable_msix: 1
hw.ix.advertise_speed: 0
hw.ix.flow_control: 3
hw.ix.max_interrupt_rate: 31250
hw.igc.max_interrupt_rate: 20000
hw.igc.eee_setting: 1
hw.igc.rx_process_limit: 100
hw.igc.sbp: 1
hw.igc.smart_pwr_down: 0
hw.igc.rx_abs_int_delay: 66
hw.igc.tx_abs_int_delay: 66
hw.igc.rx_int_delay: 0
hw.igc.tx_int_delay: 66
hw.igc.disable_crc_stripping: 0
hw.i2c.iicbb_debug: 0
hw.hid.debug: 0
hw.em.max_interrupt_rate: 8000
hw.em.eee_setting: 1
hw.em.rx_process_limit: 100
hw.em.sbp: 0
hw.em.unsupported_tso: 0
hw.em.smart_pwr_down: 0
hw.em.rx_abs_int_delay: 66
hw.em.tx_abs_int_delay: 66
hw.em.rx_int_delay: 0
hw.em.tx_int_delay: 66
hw.em.disable_crc_stripping: 0
hw.efi.poweroff: 1
hw.cardbus.cis_debug: 0
hw.cardbus.debug: 0
hw.bge.allow_asf: 1
hw.bce.rx_ticks: 18
hw.bce.rx_ticks_int: 18
hw.bce.rx_quick_cons_trip: 6
hw.bce.rx_quick_cons_trip_int: 6
hw.bce.tx_ticks: 80
hw.bce.tx_ticks_int: 80
hw.bce.tx_quick_cons_trip: 20
hw.bce.tx_quick_cons_trip_int: 20
hw.bce.strict_rx_mtu: 0
hw.bce.hdr_split: 1
hw.bce.tx_pages: 2
hw.bce.rx_pages: 2
hw.bce.msi_enable: 1
hw.bce.tso_enable: 1
hw.bce.verbose: 1
hw.ath.txbuf_mgmt: 32
hw.ath.txbuf: 512
hw.ath.rxbuf: 512
hw.ata.ata_dma_check_80pin: 1
hw.aac.enable_msi: 1
machdep.disable_msix_migration: 0
machdep.num_msi_irqs: 2048
machdep.syscall_ret_flush_l1d: 0
machdep.nmi_flush_l1d_sw: 0
machdep.uprintf_signal: 0
machdep.max_ldt_segment: 512
machdep.dump_retry_count: 5
machdep.disable_tsc_calibration: 0
machdep.disable_tsc: 0
machdep.stop_mwait: 0
machdep.intr_apic_id_limit: -1
machdep.hyperthreading_intr_allowed: 0
machdep.hyperthreading_allowed: 1
machdep.disable_mtrrs: 0
machdep.nmi_is_broadcast: 1
machdep.panic_on_nmi: 255
machdep.idle: acpi
machdep.idle_apl31: 0
machdep.idle_mwait: 1
machdep.mwait_cpustop_broken: 0
machdep.hwpstate_pkg_ctrl: 1
machdep.prot_fault_translation: 0
machdep.rtc_save_period: 1800
machdep.mitigations.zenbleed.enable: 2
machdep.mitigations.rngds.enable: 1
machdep.mitigations.taa.enable: 0
machdep.mitigations.mds.disable: 0
machdep.mitigations.ssb.disable: 0
machdep.mitigations.ibrs.disable: 1
machdep.efi_rt_handle_faults: 1
user.localbase: /usr/local
dev.pcm.0.bitperfect: 0
dev.pcm.0.rec.vchanformat: s16le:2.0
dev.pcm.0.rec.vchanrate: 48000
dev.pcm.0.rec.vchanmode: fixed
dev.pcm.0.rec.vchans: 1
dev.pcm.0.play.vchanformat: s16le:2.0
dev.pcm.0.play.vchanrate: 48000
dev.pcm.0.play.vchanmode: fixed
dev.pcm.0.play.vchans: 1
dev.uhub.4.disable_port_power: 0
dev.uhub.4.disable_enumeration: 0
dev.uhub.3.disable_port_power: 0
dev.uhub.3.disable_enumeration: 0
dev.uhub.2.disable_port_power: 0
dev.uhub.2.disable_enumeration: 0
dev.uhub.1.disable_port_power: 0
dev.uhub.1.disable_enumeration: 0
dev.uhub.0.disable_port_power: 0
dev.uhub.0.disable_enumeration: 0
dev.hwpstate_intel.19.epp: 50
dev.hwpstate_intel.18.epp: 50
dev.hwpstate_intel.17.epp: 50
dev.hwpstate_intel.16.epp: 50
dev.hwpstate_intel.15.epp: 50
dev.hwpstate_intel.14.epp: 50
dev.hwpstate_intel.13.epp: 50
dev.hwpstate_intel.12.epp: 50
dev.hwpstate_intel.11.epp: 50
dev.hwpstate_intel.10.epp: 50
dev.hwpstate_intel.9.epp: 50
dev.hwpstate_intel.8.epp: 50
dev.hwpstate_intel.7.epp: 50
dev.hwpstate_intel.6.epp: 50
dev.hwpstate_intel.5.epp: 50
dev.hwpstate_intel.4.epp: 50
dev.hwpstate_intel.3.epp: 50
dev.hwpstate_intel.2.epp: 50
dev.hwpstate_intel.1.epp: 50
dev.hwpstate_intel.0.epp: 50
dev.uart.1.pps_mode: 2
dev.uart.0.pps_mode: 2
dev.igc.1.iflib.override_nrxds: 0
dev.igc.1.iflib.override_ntxds: 0
dev.igc.1.iflib.use_logical_cores: 0
dev.igc.1.iflib.separate_txrx: 0
dev.igc.1.iflib.core_offset: 8
dev.igc.1.iflib.tx_abdicate: 0
dev.igc.1.iflib.rx_budget: 0
dev.igc.1.iflib.disable_msix: 0
dev.igc.1.iflib.override_qs_enable: 0
dev.igc.1.iflib.override_nrxqs: 0
dev.igc.1.iflib.override_ntxqs: 0
dev.igc.0.iflib.override_nrxds: 0
dev.igc.0.iflib.override_ntxds: 0
dev.igc.0.iflib.use_logical_cores: 0
dev.igc.0.iflib.separate_txrx: 0
dev.igc.0.iflib.core_offset: 0
dev.igc.0.iflib.tx_abdicate: 0
dev.igc.0.iflib.rx_budget: 0
dev.igc.0.iflib.disable_msix: 0
dev.igc.0.iflib.override_qs_enable: 0
dev.igc.0.iflib.override_nrxqs: 0
dev.igc.0.iflib.override_ntxqs: 0
dev.ixl.1.link_active_on_if_down: 1
dev.ixl.1.iflib.override_nrxds: 0
dev.ixl.1.iflib.override_ntxds: 0
dev.ixl.1.iflib.use_logical_cores: 0
dev.ixl.1.iflib.separate_txrx: 0
dev.ixl.1.iflib.core_offset: 0
dev.ixl.1.iflib.tx_abdicate: 0
dev.ixl.1.iflib.rx_budget: 0
dev.ixl.1.iflib.disable_msix: 0
dev.ixl.1.iflib.override_qs_enable: 0
dev.ixl.1.iflib.override_nrxqs: 0
dev.ixl.1.iflib.override_ntxqs: 0
dev.ixl.0.link_active_on_if_down: 1
dev.ixl.0.iflib.override_nrxds: 0
dev.ixl.0.iflib.override_ntxds: 0
dev.ixl.0.iflib.use_logical_cores: 0
dev.ixl.0.iflib.separate_txrx: 0
dev.ixl.0.iflib.core_offset: 0
dev.ixl.0.iflib.tx_abdicate: 0
dev.ixl.0.iflib.rx_budget: 0
dev.ixl.0.iflib.disable_msix: 0
dev.ixl.0.iflib.override_qs_enable: 0
dev.ixl.0.iflib.override_nrxqs: 0
dev.ixl.0.iflib.override_ntxqs: 0
dev.netmap.max_bridges: 8
security.mac.ntpd.uid: 123
security.mac.ntpd.enabled: 1
security.bsd.stack_guard_page: 1
security.bsd.allow_ptrace: 1
security.bsd.unprivileged_mlock: 1
security.bsd.suser_enabled: 1
security.bsd.map_at_zero: 0
security.jail.param.ip6.: 0
security.jail.param.ip4.: 0
security.jail.param.vnet: 0
security.jail.param.osrelease: 32
security.jail.param.osreldate: 0
security.jail.param.path: 1024
security.jail.param.jid: 0
compat.ia32.maxvmem: 0
compat.ia32.maxssiz: 67108864
compat.ia32.maxdsiz: 536870912
compat.linuxkpi.iwlwifi_mvm_power_scheme: 1
compat.linuxkpi.iwlwifi_mvm_init_dbg: 0
compat.linuxkpi.iwlwifi_disable_11be: 1
compat.linuxkpi.iwlwifi_disable_11ax: 1
compat.linuxkpi.iwlwifi_remove_when_gone: 0
compat.linuxkpi.iwlwifi_disable_11ac: 1
compat.linuxkpi.iwlwifi_power_level: 0
compat.linuxkpi.iwlwifi_power_save: 0
compat.linuxkpi.iwlwifi_led_mode: 0
compat.linuxkpi.iwlwifi_bt_coex_active: 1
compat.linuxkpi.iwlwifi_uapsd_disable: 3
compat.linuxkpi.iwlwifi_nvm_file:
compat.linuxkpi.iwlwifi_fw_restart: 1
compat.linuxkpi.iwlwifi_amsdu_size: 0
compat.linuxkpi.iwlwifi_11n_disable: 1
compat.linuxkpi.iwlwifi_swcrypto: 0
compat.linuxkpi.iwlwifi_debug: 0
compat.linuxkpi.skb.mem_limit: 0
compat.linuxkpi.task_struct_reserve: 3072
compat.linuxkpi.net_ratelimit: 99
compat.linuxkpi.warn_dump_stack: 0
compat.linuxkpi.debug: 0

sysctl Tunables

t1:sysctl -Wa
t1$ sysctl -Wa
kern.maxvnodes: 1160058
kern.maxfiles: 409600
kern.securelevel: -1
kern.hostname: t1
kern.hostid: 1870222907
kern.domainname:
kern.bootfile: /boot/kernel/kernel
kern.maxfilesperproc: 204800
kern.maxprocperuid: 63550
kern.ipc.maxsockbuf: 20480000
kern.ipc.sockbuf_waste_factor: 8
kern.ipc.sooverinterval: 60
kern.ipc.sooverprio: 7
kern.ipc.maxsockets: 2087222
kern.ipc.soacceptqueue: 32768
kern.ipc.tls.ifnet.permitted: 0
kern.ipc.tls.max_reclaim: 1024
kern.ipc.tls.cbc_enable: 1
kern.ipc.tls.enable: 1
kern.ipc.tls.ifnet_max_rexmit_pct: 2
kern.ipc.shm_allow_removed: 1
kern.ipc.shm_use_phys: 0
kern.ipc.shmall: 131072
kern.ipc.shmmin: 1
kern.ipc.shmmax: 536870912
kern.ipc.semaem: 16384
kern.ipc.semvmx: 32767
kern.ipc.semmsl: 340
kern.ipc.aio.lifetime: 30000
kern.ipc.aio.max_procs: 32
kern.ipc.pipe_mindirect: 8192
kern.ipc.piperesizeallowed: 1
kern.ipc.umtx_max_robust: 1000
kern.ipc.umtx_vnode_persistent: 0
kern.ipc.nmbufs: 26002385
kern.ipc.nmbjumbo16: 338572
kern.ipc.nmbjumbo9: 601907
kern.ipc.nmbjumbop: 2031436
kern.ipc.nmbclusters: 4062872
kern.ipc.mb_use_ext_pgs: 1
kern.logsigexit: 1
kern.hostuuid: 30158500-df92-11ee-b51c-4d6988ac7a01
kern.cryptodevallowsoft: 0
kern.crypto.allow_soft: 0
kern.metadelay: 28
kern.dirdelay: 29
kern.filedelay: 30
kern.tty_inq_flush_secure: 1
kern.tty_info_kstacks: 0
kern.tty_drainwait: 300
kern.trap_enotcap: 0
kern.smp.forward_signal_enabled: 1
kern.msgbuf_clear: 0
kern.always_console_output: 0
kern.log_console_add_linefeed: 0
kern.log_console_output: 1
kern.sgrowsiz: 131072
kern.maxssiz: 536870912
kern.dflssiz: 8388608
kern.maxdsiz: 34359738368
kern.dfldsiz: 34359738368
kern.maxtsiz: 34359738368
kern.msgbuf_show_timestamp: 0
kern.log_wakeups_per_second: 5
kern.sched.always_steal: 0
kern.sched.trysteal_limit: 2
kern.sched.steal_thresh: 2
kern.sched.steal_idle: 1
kern.sched.balance_interval: 127
kern.sched.balance: 1
kern.sched.affinity: 1
kern.sched.idlespinthresh: 157
kern.sched.idlespins: 10000
kern.sched.static_boost: 136
kern.sched.preempt_thresh: 48
kern.sched.interact: 30
kern.sched.slice: 12
kern.sched.quantum: 94488
kern.callout_stat: 0
kern.threads.max_threads_per_proc: 1500
kern.timecounter.fast_gettime: 1
kern.timecounter.hardware: TSC-low
kern.timecounter.alloweddeviation: 5
kern.timecounter.stepwarnings: 0
kern.corefile: %N.core
kern.compress_user_cores_level: 6
kern.compress_user_cores: 0
kern.coredump_devctl: 0
kern.nodump_coredump: 0
kern.coredump: 1
kern.capmode_coredump: 0
kern.sugid_coredump: 0
kern.sig_discard_ign: 1
kern.sigfastblock_fetch_always: 0
kern.lognosys: 0
kern.sigqueue.max_pending_per_proc: 128
kern.forcesigexit: 1
kern.kerneldump_gzlevel: 6
kern.suspend_blocked: 0
kern.shutdown.kproc_shutdown_wait: 60
kern.shutdown.poweroff_delay: 5000
kern.shutdown.show_busybufs: 0
kern.powercycle_on_panic: 0
kern.poweroff_on_panic: 0
kern.sync_on_panic: 0
kern.reboot_wait_time: 0
kern.panic_reboot_wait_time: 15
kern.racct.rctl.throttle_pct2: 4294967295
kern.racct.rctl.throttle_pct: 4294967295
kern.racct.rctl.throttle_max: 4294967295
kern.racct.rctl.throttle_min: 4294967295
kern.racct.rctl.devctl_rate_limit: 10
kern.racct.rctl.log_rate_limit: 10
kern.racct.rctl.maxbufsize: 16777216
kern.racct.pcpu_threshold: 1
kern.proc_vmmap_skip_resident_count: 0
kern.ntp_pll.pps_shift: 2
kern.ntp_pll.pps_shiftmax: 8
kern.fallback_elf_brand: -1
kern.pid_max: 99999
kern.module_path: /boot/kernel;/boot/modules;/boot/dtb;/boot/dtb/overlays
kern.ktrace.request_pool: 100
kern.ktrace.filesize_limit_signal: 0
kern.ktrace.genio_size: 4096
kern.randompid: 0
kern.wait_dequeue_sigchld: 1
kern.kill_on_debugger_exit: 1
kern.core_dump_can_intr: 1
kern.disallow_high_osrel: 0
kern.ps_arg_cache_limit: 256
kern.coredump_pack_vmmapinfo: 1
kern.coredump_pack_fileinfo: 1
kern.kq_calloutmax: 4096
kern.eventtimer.periodic: 0
kern.eventtimer.timer: LAPIC
kern.eventtimer.idletick: 0
kern.eventtimer.singlemul: 2
kern.chroot_allow_open_directories: 1
kern.constty_wakeups_per_second: 15
kern.consmsgbuf_size: 65536
kern.console: ttyv0,/uart,ttyv0,
kern.consmute: 0
kern.boottrace.shutdown_trace_threshold: 0
kern.boottrace.shutdown_trace: 0
kern.boottrace.shuttrace:
kern.boottrace.runtrace:
kern.boottrace.boottrace:
kern.acct_chkfreq: 15
kern.acct_resume: 4
kern.acct_suspend: 2
kern.init_shutdown_timeout: 120
kern.elf32.allow_wx: 1
kern.elf32.sigfastblock: 1
kern.elf32.aslr.shared_page: 0
kern.elf32.aslr.stack: 1
kern.elf32.aslr.honor_sbrk: 0
kern.elf32.aslr.pie_enable: 0
kern.elf32.aslr.enable: 0
kern.elf32.pie_base: 8192
kern.elf32.read_exec: 0
kern.elf32.vdso: 1
kern.elf32.nxstack: 1
kern.elf32.fallback_brand: -1
kern.elf64.allow_wx: 1
kern.elf64.sigfastblock: 1
kern.elf64.aslr.shared_page: 1
kern.elf64.aslr.stack: 1
kern.elf64.aslr.honor_sbrk: 0
kern.elf64.aslr.pie_enable: 1
kern.elf64.aslr.enable: 1
kern.elf64.pie_base: 16912384
kern.elf64.vdso: 1
kern.elf64.nxstack: 1
kern.elf64.fallback_brand: -1
kern.geom.raid.raid5.enable: 1
kern.geom.raid.raid1e.enable: 1
kern.geom.raid.raid1e.rebuild_meta_update: 1024
kern.geom.raid.raid1e.rebuild_cluster_idle: 100
kern.geom.raid.raid1e.rebuild_fair_io: 20
kern.geom.raid.raid1e.rebuild_slab_size: 1048576
kern.geom.raid.raid1.enable: 1
kern.geom.raid.raid1.rebuild_meta_update: 1024
kern.geom.raid.raid1.rebuild_cluster_idle: 100
kern.geom.raid.raid1.rebuild_fair_io: 20
kern.geom.raid.raid1.rebuild_slab_size: 1048576
kern.geom.raid.raid0.enable: 1
kern.geom.raid.concat.enable: 1
kern.geom.raid.sii.enable: 1
kern.geom.raid.promise.enable: 1
kern.geom.raid.nvidia.enable: 1
kern.geom.raid.jmicron.enable: 1
kern.geom.raid.intel.enable: 1
kern.geom.raid.ddf.enable: 1
kern.geom.raid.idle_threshold: 1000000
kern.geom.raid.name_format: 0
kern.geom.raid.disconnect_on_failure: 1
kern.geom.raid.clean_time: 5
kern.geom.raid.start_timeout: 30
kern.geom.raid.read_err_thresh: 10
kern.geom.raid.debug: 0
kern.geom.raid.aggressive_spare: 0
kern.geom.raid.enable: 1
kern.geom.part.mbr.enforce_chs: 0
kern.geom.part.gpt.allow_nesting: 0
kern.geom.part.allow_nesting: 0
kern.geom.part.auto_resize: 1
kern.geom.part.check_integrity: 1
kern.geom.label.disk_ident.enable: 1
kern.geom.label.gptid.enable: 1
kern.geom.label.gpt.enable: 1
kern.geom.label.ufs.enable: 1
kern.geom.label.ufsid.enable: 1
kern.geom.label.reiserfs.enable: 1
kern.geom.label.ntfs.enable: 1
kern.geom.label.msdosfs.enable: 1
kern.geom.label.iso9660.enable: 1
kern.geom.label.flashmap.enable: 1
kern.geom.label.ext2fs.enable: 1
kern.geom.label.debug: 0
kern.geom.collectstats: 1
kern.geom.notaste: 0
kern.geom.debugflags: 0
kern.geom.transient_map_retries: 10
kern.geom.disk.nda0.flush_notsup_succeed: 0
kern.geom.disk.nda0.led:
kern.geom.dev.delete_max_sectors: 262144
kern.vt.splash_cpu_duration: 10
kern.vt.splash_cpu_style: 2
kern.vt.splash_ncpu: 0
kern.vt.splash_cpu: 0
kern.vt.kbd_panic: 0
kern.vt.kbd_debug: 1
kern.vt.kbd_reboot: 1
kern.vt.kbd_poweroff: 1
kern.vt.kbd_halt: 1
kern.vt.suspendswitch: 1
kern.vt.deadtimer: 15
kern.vt.debug: 0
kern.vt.enable_bell: 0
kern.vt.enable_altgr: 1
kern.random.fortuna.minpoolsize: 64
kern.random.rdrand.rdrand_independent_seed: 0
kern.random.block_seeded_status: 0
kern.random.harvest.mask: 66015
kern.evdev.sysmouse_t_axis: 0
kern.evdev.rcpt_mask: 12
kern.cam.enc.emulate_array_devices: 1
kern.cam.enc.search_globally: 0
kern.cam.enc.verbose: 0
kern.cam.da.default_softtimeout: 0
kern.cam.da.enable_uma_ccbs: 1
kern.cam.da.disable_wp_detection: 0
kern.cam.da.send_ordered: 1
kern.cam.da.default_timeout: 60
kern.cam.da.retry_count: 4
kern.cam.da.poll_period: 3
kern.cam.ada.enable_uma_ccbs: 1
kern.cam.ada.write_cache: 1
kern.cam.ada.read_ahead: 1
kern.cam.ada.spindown_suspend: 1
kern.cam.ada.spindown_shutdown: 1
kern.cam.ada.send_ordered: 1
kern.cam.ada.default_timeout: 30
kern.cam.ada.retry_count: 4
kern.cam.cd.timeout: 30000
kern.cam.cd.retry_count: 4
kern.cam.cd.poll_period: 3
kern.cam.scsi_delay: 5000
kern.cam.cam_srch_hi: 0
kern.cam.nda.0.trim_ticks: 0
kern.cam.nda.0.trim_goal: 0
kern.cam.nda.0.sort_io_queue: 0
kern.cam.pmp.hide_special: 1
kern.cam.pmp.default_timeout: 30
kern.cam.pmp.retry_count: 1
kern.cam.debug_delay: 0
kern.cam.dflags: 0
kern.cam.mapmem_thresh: 65536
kern.cam.sort_io_queues: 1
vm.v_free_min: 102483
vm.v_free_target: 346254
vm.v_free_reserved: 21226
vm.v_inactive_target: 519381
vm.v_pageout_free_min: 34
vm.swap_enabled: 1
vm.overcommit: 0
vm.domain.0.pidctrl.kdd: 8
vm.domain.0.pidctrl.kid: 4
vm.domain.0.pidctrl.kpd: 3
vm.domain.0.pidctrl.bound: 5540064
vm.domain.0.pidctrl.setpoint: 346254
vm.pmap.allow_2m_x_ept: 0
vm.vmdaemon_timeout: 0
vm.swap_idle_threshold2: 10
vm.swap_idle_threshold1: 2
vm.swap_idle_enabled: 0
vm.oom_pf_secs: 10
vm.max_user_wired: 12909209
vm.background_launder_max: 20480
vm.background_launder_rate: 4096
vm.act_scan_laundry_weight: 3
vm.pageout_oom_seq: 12
vm.disable_swapspace_pageouts: 0
vm.lowmem_period: 10
vm.pageout_update_period: 600
vm.panic_on_oom: 0
vm.old_msync: 0
vm.imply_prot_max: 0
vm.mincore_mapped: 1
vm.old_mlock: 0
vm.v_free_severe: 61854
vm.cluster_anon: 1
vm.kstack_cache_size: 128
vm.pfault_oom_wait: 10
vm.pfault_oom_attempts: 3
vm.zone_warnings: 1
vm.swap_async_max: 4
vm.phys_pager_cluster: 1024
vm.largepages.reclaim_tries: 1
vm.md_malloc_wait: 0
vfs.msdosfs.use_buf_pager: 1
vfs.ufs.dirhash_reclaimpercent: 10
vfs.ufs.dirhash_docheck: 0
vfs.ufs.dirhash_maxmem: 27111424
vfs.ufs.dirhash_minsize: 2560
vfs.nfs.downdelayinitial: 12
vfs.nfs.downdelayinterval: 30
vfs.nfs.defect: 0
vfs.nfs.iodmax: 20
vfs.nfs.iodmin: 0
vfs.nfs.iodmaxidle: 120
vfs.nfs.use_buf_pager: 1
vfs.nfs.fileid_maxwarnings: 10
vfs.nfs.nfs_ip_paranoia: 1
vfs.nfs.maxalloclen: 67108864
vfs.nfs.nfs_directio_allow_mmap: 1
vfs.nfs.nfs_keep_dirty_on_error: 0
vfs.nfs.nfs_directio_enable: 0
vfs.nfs.clean_pages_on_close: 1
vfs.nfs.commit_on_close: 0
vfs.nfs.prime_access_cache: 0
vfs.nfs.access_cache_timeout: 60
vfs.nfs.maxcopyrange: 9223372036854775807
vfs.nfs.dssameconn: 0
vfs.nfs.ignore_eexist: 0
vfs.nfs.pnfsiothreads: -1
vfs.nfs.debuglevel: 0
vfs.nfs.callback_addr:
vfs.nfs.realign_count: 0
vfs.nfs.realign_test: 0
vfs.nfs.enable_uidtostring: 0
vfs.nfs.dsretries: 2
vfs.nfs.skip_wcc_data_onerr: 1
vfs.nfs.nfs3_jukebox_delay: 10
vfs.nfs.bufpackets: 4
vfs.devfs.dotimes: 0
vfs.devfs.rule_depth: 1
vfs.tmpfs.memory_reserved: 4194304
vfs.cd9660.use_buf_pager: 1
vfs.zfs.abort_size: 131072
vfs.zfs.earlyabort_pass: 1
vfs.zfs.sync_pass_rewrite: 2
vfs.zfs.sync_pass_dont_compress: 8
vfs.zfs.sync_pass_deferred_free: 2
vfs.zfs.commit_timeout_pct: 5
vfs.zfs.zil_saxattr: 1
vfs.zfs.immediate_write_sz: 32768
vfs.zfs.history_output_max: 1048576
vfs.zfs.max_nvlist_src_size: 0
vfs.zfs.zap_micro_max_size: 131072
vfs.zfs.zap_iterate_prefetch: 1
vfs.zfs.rebuild_scrub_enabled: 1
vfs.zfs.rebuild_vdev_limit: 67108864
vfs.zfs.rebuild_max_segment: 1048576
vfs.zfs.initialize_chunk_size: 1048576
vfs.zfs.initialize_value: 16045690984833335022
vfs.zfs.embedded_slog_min_ms: 64
vfs.zfs.nocacheflush: 0
vfs.zfs.scan_ignore_errors: 0
vfs.zfs.checksum_events_per_second: 20
vfs.zfs.slow_io_events_per_second: 20
vfs.zfs.read_history_hits: 0
vfs.zfs.read_history: 0
vfs.zfs.special_class_metadata_reserve_pct: 25
vfs.zfs.user_indirect_is_special: 1
vfs.zfs.ddt_data_is_special: 1
vfs.zfs.free_leak_on_eio: 0
vfs.zfs.recover: 0
vfs.zfs.flags: 0
vfs.zfs.min_metaslabs_to_flush: 1
vfs.zfs.max_logsm_summary_length: 10
vfs.zfs.keep_log_spacemaps_at_export: 0
vfs.zfs.max_log_walking: 5
vfs.zfs.unflushed_log_block_pct: 400
vfs.zfs.unflushed_log_txg_max: 1000
vfs.zfs.unflushed_log_block_min: 1000
vfs.zfs.unflushed_log_block_max: 131072
vfs.zfs.unflushed_max_mem_ppm: 1000
vfs.zfs.unflushed_max_mem_amt: 1073741824
vfs.zfs.autoimport_disable: 1
vfs.zfs.max_missing_tvds: 0
vfs.zfs.multilist_num_sublists: 0
vfs.zfs.scrub_error_blocks_per_txg: 4096
vfs.zfs.resilver_disable_defer: 0
vfs.zfs.scan_report_txgs: 0
vfs.zfs.scan_fill_weight: 3
vfs.zfs.scan_strict_mem_lim: 0
vfs.zfs.scan_mem_lim_soft_fact: 20
vfs.zfs.scan_max_ext_gap: 2097152
vfs.zfs.scan_checkpoint_intval: 7200
vfs.zfs.scan_legacy: 0
vfs.zfs.scan_issue_strategy: 0
vfs.zfs.scan_mem_lim_fact: 20
vfs.zfs.scan_blkstats: 0
vfs.zfs.free_bpobj_enabled: 1
vfs.zfs.max_async_dedup_frees: 100000
vfs.zfs.async_block_max_blocks: 18446744073709551615
vfs.zfs.no_scrub_prefetch: 0
vfs.zfs.no_scrub_io: 0
vfs.zfs.scan_suspend_progress: 0
vfs.zfs.resilver_min_time_ms: 3000
vfs.zfs.free_min_time_ms: 1000
vfs.zfs.obsolete_min_time_ms: 500
vfs.zfs.scrub_min_time_ms: 1000
vfs.zfs.scan_vdev_limit: 16777216
vfs.zfs.sync_taskq_batch_pct: 75
vfs.zfs.delay_scale: 500000
vfs.zfs.dirty_data_sync_percent: 20
vfs.zfs.wrlog_data_max: 8589934592
vfs.zfs.dirty_data_max: 4294967296
vfs.zfs.delay_min_dirty_percent: 60
vfs.zfs.disable_ivset_guid_check: 0
vfs.zfs.zvol_enforce_quotas: 1
vfs.zfs.snapshot_history_enabled: 1
vfs.zfs.allow_redacted_dataset_mount: 0
vfs.zfs.max_recordsize: 16777216
vfs.zfs.default_ibs: 17
vfs.zfs.default_bs: 9
vfs.zfs.send_holes_without_birth_time: 1
vfs.zfs.traverse_indirect_prefetch_limit: 32
vfs.zfs.pd_bytes_max: 52428800
vfs.zfs.dmu_object_alloc_chunk_shift: 7
vfs.zfs.dmu_prefetch_max: 134217728
vfs.zfs.dmu_offset_next_sync: 0
vfs.zfs.per_txg_dirty_frees_percent: 30
vfs.zfs.nopwrite_enabled: 1
vfs.zfs.dbuf_state_index: 0
vfs.zfs.btree_verify_intensity: 0
vfs.zfs.compressed_arc_enabled: 1
vfs.zfs.max_dataset_nesting: 50
vfs.zfs.fletcher_4_impl: [fastest] scalar superscalar superscalar4 sse2 ssse3 avx2
vfs.zfs.vol.unmap_enabled: 1
vfs.zfs.vol.recursive: 0
vfs.zfs.vol.mode: 1
vfs.zfs.xattr_compat: 1
vfs.zfs.bclone_enabled: 0
vfs.zfs.debug: 0
vfs.zfs.super_owner: 0
vfs.zfs.dbgmsg_maxsize: 4194304
vfs.zfs.dbgmsg_enable: 1
vfs.zfs.top_maxinflight: 1000
vfs.zfs.max_auto_ashift: 14
vfs.zfs.min_auto_ashift: 12
vfs.zfs.space_map_ibs: 14
vfs.zfs.debugflags: 0
vfs.zfs.max_missing_tvds_scan: 0
vfs.zfs.max_missing_tvds_cachefile: 2
vfs.zfs.ccw_retry_interval: 300
vfs.zfs.removal_suspend_progress: 0
vfs.zfs.remove_max_segment: 16777216
vfs.zfs.condense_pct: 200
vfs.zfs.zfetch.max_idistance: 67108864
vfs.zfs.zfetch.max_distance: 67108864
vfs.zfs.l2arc_norw: 0
vfs.zfs.l2arc_feed_again: 1
vfs.zfs.l2arc_noprefetch: 1
vfs.zfs.l2arc_feed_min_ms: 200
vfs.zfs.l2arc_feed_secs: 1
vfs.zfs.l2arc_headroom_boost: 200
vfs.zfs.l2arc_headroom: 2
vfs.zfs.l2arc_write_boost: 8388608
vfs.zfs.l2arc_write_max: 8388608
vfs.zfs.arc_no_grow_shift: 5
vfs.zfs.arc_free_target: 346254
vfs.zfs.arc_min: 0
vfs.zfs.arc_max: 0
vfs.zfs.zio.deadman_log_all: 0
vfs.zfs.zio.dva_throttle_enabled: 1
vfs.zfs.zio.requeue_io_start_cut_in_line: 1
vfs.zfs.zio.slow_io_ms: 30000
vfs.zfs.zil.maxcopied: 7680
vfs.zfs.zil.maxblocksize: 131072
vfs.zfs.zil.slog_bulk: 786432
vfs.zfs.zil.nocacheflush: 0
vfs.zfs.zil.replay_disable: 0
vfs.zfs.zil.min_commit_timeout: 5000
vfs.zfs.zil.clean_taskq_maxalloc: 1048576
vfs.zfs.zil.clean_taskq_minalloc: 1024
vfs.zfs.zil.clean_taskq_nthr_pct: 100
vfs.zfs.zevent.retain_expire_secs: 900
vfs.zfs.zevent.retain_max: 2000
vfs.zfs.zevent.len_max: 512
vfs.zfs.vnops.read_chunk_size: 1048576
vfs.zfs.vdev.removal_suspend_progress: 0
vfs.zfs.vdev.removal_max_span: 32768
vfs.zfs.vdev.remove_max_segment: 16777216
vfs.zfs.vdev.removal_ignore_errors: 0
vfs.zfs.vdev.def_queue_depth: 32
vfs.zfs.vdev.queue_depth_pct: 1000
vfs.zfs.vdev.nia_delay: 5
vfs.zfs.vdev.nia_credit: 5
vfs.zfs.vdev.rebuild_min_active: 1
vfs.zfs.vdev.rebuild_max_active: 3
vfs.zfs.vdev.trim_min_active: 1
vfs.zfs.vdev.trim_max_active: 2
vfs.zfs.vdev.sync_write_min_active: 10
vfs.zfs.vdev.sync_write_max_active: 10
vfs.zfs.vdev.sync_read_min_active: 10
vfs.zfs.vdev.sync_read_max_active: 10
vfs.zfs.vdev.scrub_min_active: 1
vfs.zfs.vdev.scrub_max_active: 3
vfs.zfs.vdev.removal_min_active: 1
vfs.zfs.vdev.removal_max_active: 2
vfs.zfs.vdev.initializing_min_active: 1
vfs.zfs.vdev.initializing_max_active: 1
vfs.zfs.vdev.async_write_min_active: 2
vfs.zfs.vdev.async_write_max_active: 10
vfs.zfs.vdev.async_read_min_active: 1
vfs.zfs.vdev.async_read_max_active: 3
vfs.zfs.vdev.async_write_active_min_dirty_percent: 30
vfs.zfs.vdev.async_write_active_max_dirty_percent: 60
vfs.zfs.vdev.max_active: 1000
vfs.zfs.vdev.write_gap_limit: 4096
vfs.zfs.vdev.read_gap_limit: 32768
vfs.zfs.vdev.aggregation_limit_non_rotating: 131072
vfs.zfs.vdev.aggregation_limit: 1048576
vfs.zfs.vdev.max_auto_ashift: 14
vfs.zfs.vdev.min_auto_ashift: 12
vfs.zfs.vdev.validate_skip: 0
vfs.zfs.vdev.ms_count_limit: 131072
vfs.zfs.vdev.min_ms_count: 16
vfs.zfs.vdev.max_ms_shift: 34
vfs.zfs.vdev.default_ms_shift: 29
vfs.zfs.vdev.default_ms_count: 200
vfs.zfs.vdev.bio_delete_disable: 0
vfs.zfs.vdev.bio_flush_disable: 0
vfs.zfs.vdev.mirror.non_rotating_seek_inc: 1
vfs.zfs.vdev.mirror.non_rotating_inc: 0
vfs.zfs.vdev.mirror.rotating_seek_offset: 1048576
vfs.zfs.vdev.mirror.rotating_seek_inc: 5
vfs.zfs.vdev.mirror.rotating_inc: 0
vfs.zfs.vdev.file.physical_ashift: 9
vfs.zfs.vdev.file.logical_ashift: 9
vfs.zfs.txg.timeout: 5
vfs.zfs.txg.history: 100
vfs.zfs.trim.queue_limit: 10
vfs.zfs.trim.txg_batch: 32
vfs.zfs.trim.metaslab_skip: 0
vfs.zfs.trim.extent_bytes_min: 32768
vfs.zfs.trim.extent_bytes_max: 134217728
vfs.zfs.spa.slop_shift: 5
vfs.zfs.spa.asize_inflation: 24
vfs.zfs.spa.upgrade_errlog_limit: 0
vfs.zfs.spa.discard_memory_limit: 16777216
vfs.zfs.spa.load_print_vdev_tree: 0
vfs.zfs.spa.load_verify_data: 1
vfs.zfs.spa.load_verify_metadata: 1
vfs.zfs.spa.load_verify_shift: 4
vfs.zfs.send.override_estimate_recordsize: 0
vfs.zfs.send.no_prefetch_queue_ff: 20
vfs.zfs.send.queue_ff: 20
vfs.zfs.send.no_prefetch_queue_length: 1048576
vfs.zfs.send.unmodified_spill_blocks: 1
vfs.zfs.send.queue_length: 16777216
vfs.zfs.send.corrupt_data: 0
vfs.zfs.recv.best_effort_corrective: 0
vfs.zfs.recv.write_batch_size: 1048576
vfs.zfs.recv.queue_ff: 20
vfs.zfs.recv.queue_length: 16777216
vfs.zfs.reconstruct.indirect_combinations_max: 4096
vfs.zfs.prefetch.max_idistance: 67108864
vfs.zfs.prefetch.max_distance: 67108864
vfs.zfs.prefetch.min_distance: 4194304
vfs.zfs.prefetch.max_sec_reap: 2
vfs.zfs.prefetch.min_sec_reap: 1
vfs.zfs.prefetch.max_streams: 8
vfs.zfs.prefetch.disable: 0
vfs.zfs.multihost.history: 0
vfs.zfs.multihost.import_intervals: 20
vfs.zfs.multihost.fail_intervals: 10
vfs.zfs.multihost.interval: 1000
vfs.zfs.mg.fragmentation_threshold: 95
vfs.zfs.mg.noalloc_threshold: 0
vfs.zfs.metaslab.preload_pct: 50
vfs.zfs.metaslab.find_max_tries: 100
vfs.zfs.metaslab.try_hard_before_gang: 0
vfs.zfs.metaslab.mem_limit: 25
vfs.zfs.metaslab.max_size_cache_sec: 3600
vfs.zfs.metaslab.df_use_largest_segment: 0
vfs.zfs.metaslab.df_max_search: 16777216
vfs.zfs.metaslab.force_ganging_pct: 3
vfs.zfs.metaslab.force_ganging: 16777217
vfs.zfs.metaslab.switch_threshold: 2
vfs.zfs.metaslab.segment_weight_enabled: 1
vfs.zfs.metaslab.bias_enabled: 1
vfs.zfs.metaslab.lba_weighting_enabled: 1
vfs.zfs.metaslab.fragmentation_threshold: 70
vfs.zfs.metaslab.fragmentation_factor_enabled: 1
vfs.zfs.metaslab.unload_delay_ms: 600000
vfs.zfs.metaslab.unload_delay: 32
vfs.zfs.metaslab.preload_limit: 10
vfs.zfs.metaslab.preload_enabled: 1
vfs.zfs.metaslab.debug_unload: 0
vfs.zfs.metaslab.debug_load: 0
vfs.zfs.metaslab.aliquot: 1048576
vfs.zfs.metaslab.df_free_pct: 4
vfs.zfs.metaslab.df_alloc_threshold: 131072
vfs.zfs.lua.max_memlimit: 104857600
vfs.zfs.lua.max_instrlimit: 100000000
vfs.zfs.livelist.min_percent_shared: 75
vfs.zfs.livelist.max_entries: 500000
vfs.zfs.livelist.condense.new_alloc: 0
vfs.zfs.livelist.condense.zthr_cancel: 0
vfs.zfs.livelist.condense.sync_cancel: 0
vfs.zfs.livelist.condense.sync_pause: 0
vfs.zfs.livelist.condense.zthr_pause: 0
vfs.zfs.l2arc.exclude_special: 0
vfs.zfs.l2arc.mfuonly: 0
vfs.zfs.l2arc.rebuild_blocks_min_l2size: 1073741824
vfs.zfs.l2arc.rebuild_enabled: 1
vfs.zfs.l2arc.meta_percent: 33
vfs.zfs.l2arc.norw: 0
vfs.zfs.l2arc.feed_again: 1
vfs.zfs.l2arc.noprefetch: 1
vfs.zfs.l2arc.feed_min_ms: 200
vfs.zfs.l2arc.feed_secs: 1
vfs.zfs.l2arc.trim_ahead: 0
vfs.zfs.l2arc.headroom_boost: 200
vfs.zfs.l2arc.headroom: 2
vfs.zfs.l2arc.write_boost: 8388608
vfs.zfs.l2arc.write_max: 8388608
vfs.zfs.dedup.ddt_zap_default_ibs: 15
vfs.zfs.dedup.ddt_zap_default_bs: 15
vfs.zfs.dedup.prefetch: 0
vfs.zfs.deadman.ziotime_ms: 300000
vfs.zfs.deadman.synctime_ms: 600000
vfs.zfs.deadman.failmode: wait
vfs.zfs.deadman.enabled: 1
vfs.zfs.deadman.checktime_ms: 60000
vfs.zfs.dbuf_cache.lowater_pct: 10
vfs.zfs.dbuf_cache.hiwater_pct: 10
vfs.zfs.dbuf_cache.max_bytes: 18446744073709551615
vfs.zfs.dbuf.metadata_cache_shift: 6
vfs.zfs.dbuf.cache_shift: 5
vfs.zfs.dbuf.metadata_cache_max_bytes: 18446744073709551615
vfs.zfs.condense.indirect_commit_entry_delay_ms: 0
vfs.zfs.condense.max_obsolete_bytes: 1073741824
vfs.zfs.condense.min_mapping_bytes: 131072
vfs.zfs.condense.indirect_obsolete_pct: 25
vfs.zfs.condense.indirect_vdevs_enable: 1
vfs.zfs.brt.prefetch: 1
vfs.zfs.arc.prune_task_threads: 1
vfs.zfs.arc.evict_batch_limit: 10
vfs.zfs.arc.eviction_pct: 200
vfs.zfs.arc.dnode_reduce_percent: 10
vfs.zfs.arc.dnode_limit_percent: 10
vfs.zfs.arc.dnode_limit: 0
vfs.zfs.arc.sys_free: 0
vfs.zfs.arc.lotsfree_percent: 10
vfs.zfs.arc.min_prescient_prefetch_ms: 0
vfs.zfs.arc.min_prefetch_ms: 0
vfs.zfs.arc.pc_percent: 0
vfs.zfs.arc.shrink_shift: 0
vfs.zfs.arc.grow_retry: 0
vfs.zfs.arc.meta_balance: 500
vfs.zfs.arc.max: 0
vfs.zfs.arc.min: 0
vfs.zfs.arc.no_grow_shift: 5
vfs.zfs.arc.free_target: 346254
vfs.zfs.abd_scatter_min_size: 4097
vfs.zfs.abd_scatter_enabled: 1
vfs.zfs.sha512_impl: cycle [fastest] generic x64 avx avx2
vfs.zfs.sha256_impl: cycle [fastest] generic x64 ssse3 avx avx2 shani
vfs.zfs.blake3_impl: cycle [fastest] generic sse2 sse41 avx2
vfs.ffs.use_buf_pager: 1
vfs.ffs.enxio_enable: 1
vfs.ffs.compute_summary_at_mount: 0
vfs.ffs.doasyncinodeinit: 1
vfs.ffs.maxclustersearch: 10
vfs.ffs.dotrimcons: 1
vfs.ffs.doreallocblks: 1
vfs.ffs.doasyncfree: 1
vfs.ino64_trunc_error: 0
vfs.timestamp_precision: 2
vfs.wantfreevnodes: 290014
vfs.vnode.vnlru.max_free_per_call: 10000
vfs.vnode.param.wantfree: 290014
vfs.vnode.param.limit: 1160058
vfs.deferred_unmount.retry_delay_hz: 1000
vfs.deferred_unmount.retry_limit: 10
vfs.recursive_forced_unmount: 0
vfs.default_autoro: 0
vfs.usermount: 0
vfs.lookup_cap_dotdot_nonlocal: 1
vfs.lookup_cap_dotdot: 1
vfs.read_min: 1
vfs.read_max: 64
vfs.write_behind: 1
vfs.cache.param.fast_lookup: 1
vfs.cache.param.negminpct: 3
vfs.cache.param.negfactor: 5
vfs.cache.param.sizefactor: 2
vfs.buf_pager_relbuf: 0
vfs.flushbufqtarget: 100
vfs.hifreebuffers: 2304
vfs.lofreebuffers: 1536
vfs.dirtybufthresh: 23851
vfs.hidirtybuffers: 26502
vfs.lodirtybuffers: 13251
vfs.bdwriteskip: 0
vfs.dirtybufferflushes: 0
vfs.hirunningspace: 16777216
vfs.lorunningspace: 11206656
vfs.bufspacethresh: 1691545188
vfs.hibufspace: 1734918144
vfs.lobufspace: 1648172233
vfs.maxmallocbufspace: 86745907
vfs.maxbufspace: 1735573504
vfs.vmiodirenable: 1
vfs.aio.max_buf_aio: 16
vfs.aio.max_aio_queue_per_proc: 256
vfs.aio.max_aio_per_proc: 32
vfs.aio.aiod_lifetime: 30000
vfs.aio.max_aio_queue: 1024
vfs.aio.target_aio_procs: 4
vfs.aio.max_aio_procs: 32
vfs.aio.unsafe_warningcnt: 1
vfs.aio.enable_unsafe: 0
vfs.acl_nfs4_old_semantics: 0
vfs.nfsd.request_space_low: 1386793642
vfs.nfsd.request_space_high: 2080190464
vfs.nfsd.maxthreads: 1
vfs.nfsd.minthreads: 1
vfs.nfsd.cachetcp: 1
vfs.nfsd.tcpcachetimeo: 43200
vfs.nfsd.udphighwater: 500
vfs.nfsd.tcphighwater: 0
vfs.nfsd.srvmaxio: 131072
vfs.nfsd.dsdirsize: 20
vfs.nfsd.pnfsgetdsattr: 1
vfs.nfsd.enable_stringtouid: 0
vfs.nfsd.debuglevel: 0
vfs.nfsd.enable_locallocks: 0
vfs.nfsd.issue_delegations: 0
vfs.nfsd.commit_miss: 0
vfs.nfsd.commit_blks: 0
vfs.nfsd.mirrormnt: 1
vfs.nfsd.enable_v42allocate: 0
vfs.nfsd.owner_minor: 0
vfs.nfsd.owner_major:
vfs.nfsd.scope:
vfs.nfsd.v4openaccess: 1
vfs.nfsd.linux42server: 1
vfs.nfsd.default_flexfile: 0
vfs.nfsd.async: 0
vfs.nfsd.server_max_nfsvers: 4
vfs.nfsd.server_min_nfsvers: 3
vfs.nfsd.nfs_privport: 0
vfs.nfsd.flexlinuxhack: 0
vfs.nfsd.pnfsstrictatime: 0
vfs.nfsd.allowreadforwriteopen: 1
vfs.nfsd.writedelegifpos: 0
vfs.nfsd.v4statelimit: 500000
vfs.nfsd.enable_nogroupcheck: 1
vfs.nfsd.enable_nobodycheck: 1
vfs.nfsd.enable_checkutf8: 1
vfs.nfsd.server_max_minorversion4: 2
vfs.nfsd.server_min_minorversion4: 0
vfs.nfsd.fha.max_reqs_per_nfsd: 0
vfs.nfsd.fha.max_nfsds_per_fh: 8
vfs.nfsd.fha.bin_shift: 22
vfs.nfsd.fha.write: 1
vfs.nfsd.fha.read: 1
vfs.nfsd.fha.enable: 1
net.local.stream.recvspace: 8192
net.local.stream.sendspace: 8192
net.local.dgram.recvspace: 16384
net.local.dgram.maxdgram: 2048
net.local.seqpacket.recvspace: 8192
net.local.seqpacket.maxseqpacket: 8192
net.inet.ip.portrange.randomized: 0
net.inet.ip.portrange.reservedlow: 0
net.inet.ip.portrange.reservedhigh: 1023
net.inet.ip.portrange.hilast: 65535
net.inet.ip.portrange.hifirst: 49152
net.inet.ip.portrange.last: 65500
net.inet.ip.portrange.first: 1024
net.inet.ip.portrange.lowlast: 600
net.inet.ip.portrange.lowfirst: 1023
net.inet.ip.forwarding: 0
net.inet.ip.redirect: 1
net.inet.ip.ttl: 64
net.inet.ip.sourceroute: 0
net.inet.ip.intr_queue_maxlen: 256
net.inet.ip.accept_sourceroute: 0
net.inet.ip.gifttl: 30
net.inet.ip.fragttl: 30
net.inet.ip.maxfragbucketsize: 100
net.inet.ip.maxfragsperpacket: 16
net.inet.ip.maxfragpackets: 51200
net.inet.ip.maxfrags: 126964
net.inet.ip.process_options: 1
net.inet.ip.source_address_validation: 1
net.inet.ip.rfc1122_strong_es: 0
net.inet.ip.mcast.loop: 1
net.inet.ip.mcast.maxsocksrc: 128
net.inet.ip.mcast.maxgrpsrc: 512
net.inet.ip.random_id_period: 0
net.inet.ip.rfc6864: 1
net.inet.ip.random_id: 0
net.inet.ip.loopback_prefixlen: 8
net.inet.ip.allow_net0: 0
net.inet.ip.allow_net240: 0
net.inet.ip.broadcast_lowest: 0
net.inet.ip.no_same_prefix: 0
net.inet.icmp.maskrepl: 0
net.inet.icmp.icmplim: 3000
net.inet.icmp.error_keeptags: 0
net.inet.icmp.tstamprepl: 1
net.inet.icmp.bmcastecho: 0
net.inet.icmp.quotelen: 548
net.inet.icmp.reply_from_interface: 0
net.inet.icmp.reply_src:
net.inet.icmp.redirtimeout: 600
net.inet.icmp.log_redirect: 0
net.inet.icmp.drop_redirect: 0
net.inet.icmp.maskfake: 0
net.inet.icmp.icmplim_output: 1
net.inet.icmp.icmplim_jitter: 16
net.inet.igmp.gsrdelay: 10
net.inet.igmp.default_version: 3
net.inet.igmp.legacysupp: 0
net.inet.igmp.v2enable: 1
net.inet.igmp.v1enable: 1
net.inet.igmp.sendlocal: 1
net.inet.igmp.sendra: 1
net.inet.igmp.recvifkludge: 1
net.inet.tcp.rfc1323: 1
net.inet.tcp.mssdflt: 1460
net.inet.tcp.keepidle: 7200000
net.inet.tcp.keepintvl: 75000
net.inet.tcp.sendspace: 1048576
net.inet.tcp.recvspace: 8388608
net.inet.tcp.keepinit: 75000
net.inet.tcp.delacktime: 40
net.inet.tcp.v6mssdflt: 1220
net.inet.tcp.nolocaltimewait: 1
net.inet.tcp.retries: 12
net.inet.tcp.per_cpu_timers: 0
net.inet.tcp.v6pmtud_blackhole_mss: 1220
net.inet.tcp.pmtud_blackhole_mss: 1200
net.inet.tcp.pmtud_blackhole_detection: 0
net.inet.tcp.maxunacktime: 0
net.inet.tcp.rexmit_drop_options: 0
net.inet.tcp.keepcnt: 8
net.inet.tcp.finwait2_timeout: 3000
net.inet.tcp.fast_finwait2_recycle: 1
net.inet.tcp.always_keepalive: 1
net.inet.tcp.rexmit_slop: 200
net.inet.tcp.rexmit_min: 30
net.inet.tcp.rexmit_initial: 1000
net.inet.tcp.msl: 1000
net.inet.tcp.persmax: 60000
net.inet.tcp.persmin: 5000
net.inet.tcp.syncache.rst_on_sock_fail: 1
net.inet.tcp.syncache.rexmtlimit: 0
net.inet.tcp.syncache.see_other: 0
net.inet.tcp.functions_inherit_listen_socket_stack: 1
net.inet.tcp.syncookies_only: 0
net.inet.tcp.syncookies: 1
net.inet.tcp.udp_tunneling_overhead: 8
net.inet.tcp.udp_tunneling_port: 0
net.inet.tcp.functions_default: freebsd
net.inet.tcp.split_limit: 0
net.inet.tcp.map_limit: 0
net.inet.tcp.isn_reseed_interval: 0
net.inet.tcp.icmp_may_rst: 1
net.inet.tcp.do_tcpdrain: 1
net.inet.tcp.log_debug: 0
net.inet.tcp.pacing_limit: 10000
net.inet.tcp.ts_offset_per_conn: 1
net.inet.tcp.tolerate_missing_ts: 1
net.inet.tcp.minmss: 536
net.inet.tcp.ack_war_cnt: 5
net.inet.tcp.ack_war_timewindow: 1000
net.inet.tcp.sack.globalmaxholes: 65536
net.inet.tcp.sack.maxholes: 128
net.inet.tcp.sack.revised: 1
net.inet.tcp.sack.enable: 1
net.inet.tcp.reass.queueguard: 16
net.inet.tcp.reass.new_limit: 0
net.inet.tcp.reass.maxqueuelen: 100
net.inet.tcp.sendbuf_auto_lowat: 0
net.inet.tcp.sendbuf_max: 8388608
net.inet.tcp.sendbuf_inc: 262144
net.inet.tcp.sendbuf_auto: 1
net.inet.tcp.tso: 0
net.inet.tcp.path_mtu_discovery: 1
net.inet.tcp.bb.log_auto_all: 0
net.inet.tcp.bb.log_auto_mode: 1
net.inet.tcp.bb.log_auto_ratio: 0
net.inet.tcp.bb.disable_all: 0
net.inet.tcp.bb.log_id_tcpcb_limit: 0
net.inet.tcp.bb.log_id_limit: 0
net.inet.tcp.bb.log_global_limit: 5000000
net.inet.tcp.bb.log_session_limit: 5000
net.inet.tcp.bb.log_verbose: 0
net.inet.tcp.bb.tp.count: 0
net.inet.tcp.bb.tp.bbmode: 4
net.inet.tcp.bb.tp.number: 0
net.inet.tcp.recvbuf_max: 4194304
net.inet.tcp.recvbuf_auto: 1
net.inet.tcp.insecure_rst: 0
net.inet.tcp.insecure_syn: 0
net.inet.tcp.abc_l_var: 44
net.inet.tcp.rfc3465: 1
net.inet.tcp.initcwnd_segments: 44
net.inet.tcp.rfc3390: 1
net.inet.tcp.rfc3042: 1
net.inet.tcp.newcwv: 0
net.inet.tcp.do_lrd: 0
net.inet.tcp.do_prr: 1
net.inet.tcp.do_prr_conservative: 0
net.inet.tcp.drop_synfin: 0
net.inet.tcp.delayed_ack: 1
net.inet.tcp.blackhole_local: 0
net.inet.tcp.blackhole: 2
net.inet.tcp.log_in_vain: 0
net.inet.tcp.hostcache.purgenow: 0
net.inet.tcp.hostcache.purge: 0
net.inet.tcp.hostcache.prune: 300
net.inet.tcp.hostcache.expire: 3600
net.inet.tcp.hostcache.enable: 1
net.inet.tcp.fastopen.server_enable: 1
net.inet.tcp.fastopen.psk_enable: 1
net.inet.tcp.fastopen.path_disable_time: 900
net.inet.tcp.fastopen.client_enable: 1
net.inet.tcp.fastopen.ccache_bucket_limit: 16
net.inet.tcp.fastopen.autokey: 120
net.inet.tcp.fastopen.acceptany: 1
net.inet.tcp.ecn.maxretries: 1
net.inet.tcp.ecn.enable: 1
net.inet.tcp.cc.abe_frlossreduce: 0
net.inet.tcp.cc.abe: 1
net.inet.tcp.cc.hystartplusplus.bblogs: 0
net.inet.tcp.cc.hystartplusplus.css_rounds: 5
net.inet.tcp.cc.hystartplusplus.css_growth_div: 4
net.inet.tcp.cc.hystartplusplus.n_rttsamples: 8
net.inet.tcp.cc.hystartplusplus.maxrtt_thresh: 16000
net.inet.tcp.cc.hystartplusplus.minrtt_thresh: 4000
net.inet.tcp.cc.algorithm: cubic
net.inet.udp.checksum: 1
net.inet.udp.maxdgram: 9216
net.inet.udp.recvspace: 1048576
net.inet.udp.blackhole_local: 0
net.inet.udp.blackhole: 0
net.inet.udp.log_in_vain: 0
net.inet.ipsec.debug: 0
net.inet.raw.recvspace: 9216
net.inet.raw.maxdgram: 9216
net.link.ether.inet.allow_multicast: 0
net.link.ether.inet.log_arp_permanent_modify: 1
net.link.ether.inet.log_arp_movements: 1
net.link.ether.inet.log_arp_wrong_iface: 1
net.link.ether.inet.garp_rexmit_count: 0
net.link.ether.inet.max_log_per_second: 1
net.link.ether.inet.maxhold: 16
net.link.ether.inet.wait: 20
net.link.ether.inet.proxyall: 0
net.link.ether.inet.maxtries: 5
net.link.ether.inet.max_age: 1200
net.link.ether.arp.log_level: 6
net.link.vlan.mtag_pcp: 0
net.link.vlan.soft_pad: 0
net.link.gif.max_nesting: 1
net.link.tap.debug: 0
net.link.tap.devfs_cloning: 1
net.link.tap.up_on_open: 0
net.link.tap.user_open: 0
net.link.tun.devfs_cloning: 1
net.link.log_link_state_change: 1
net.key.debug: 0
net.key.spi_trycnt: 1000
net.key.spi_minval: 256
net.key.spi_maxval: 268435455
net.key.int_random: 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.preferred_oldsa: 1
net.key.recvspace: 8192
net.key.sendspace: 8192
net.inet6.udp6.rfc6935_port: 0
net.inet6.ip6.forwarding: 0
net.inet6.ip6.redirect: 1
net.inet6.ip6.hlim: 64
net.inet6.ip6.maxfragpackets: 51200
net.inet6.ip6.accept_rtadv: 1
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.use_deprecated: 1
net.inet6.ip6.rr_prune: 5
net.inet6.ip6.v6only: 1
net.inet6.ip6.use_tempaddr: 0
net.inet6.ip6.temppltime: 86400
net.inet6.ip6.tempvltime: 604800
net.inet6.ip6.auto_linklocal: 1
net.inet6.ip6.prefer_tempaddr: 0
net.inet6.ip6.use_defaultzone: 0
net.inet6.ip6.maxfrags: 126964
net.inet6.ip6.mcast_pmtu: 0
net.inet6.ip6.no_radr: 0
net.inet6.ip6.norbit_raif: 0
net.inet6.ip6.rfc6204w3: 0
net.inet6.ip6.intr_queue_maxlen: 256
net.inet6.ip6.maxfragsperpacket: 64
net.inet6.ip6.maxfragbucketsize: 100
net.inet6.ip6.dad_enhanced: 1
net.inet6.ip6.source_address_validation: 1
net.inet6.ip6.log_cannot_forward: 1
net.inet6.ip6.mcast.loop: 1
net.inet6.ip6.mcast.maxsocksrc: 128
net.inet6.ip6.mcast.maxgrpsrc: 512
net.inet6.ip6.fraglifetime_ms: 60000
net.inet6.ipsec6.debug: 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: 0
net.inet6.icmp6.errppslimit: 100
net.inet6.icmp6.nd6_maxnudhint: 0
net.inet6.icmp6.nd6_debug: 0
net.inet6.icmp6.nd6_maxqueuelen: 16
net.inet6.icmp6.nodeinfo_oldmcprefix: 1
net.inet6.icmp6.nd6_onlink_ns_rfc4861: 0
net.inet6.icmp6.nd6_gctimer: 86400
net.inet6.mld.use_allow: 1
net.inet6.mld.v2enable: 1
net.inet6.mld.v1enable: 1
net.inet6.mld.gsrdelay: 10
net.bluetooth.usb_isoc_enable: 1
net.bluetooth.sco.rtx_timeout: 60
net.bluetooth.l2cap.ertx_timeout: 300
net.bluetooth.l2cap.rtx_timeout: 60
net.bluetooth.hci.max_neighbor_age: 600
net.bluetooth.hci.connection_timeout: 60
net.bluetooth.hci.command_timeout: 5
net.hvsock.hvs_dbg_level: 0
net.netlink.nl_maxsockbuf: 536870912
net.netlink.recvspace: 65536
net.netlink.sendspace: 65536
net.netlink.debug.nl_route_debug_level: 6
net.netlink.debug.nl_nhop_debug_level: 6
net.netlink.debug.nl_neigh_debug_level: 6
net.netlink.debug.nl_iface_debug_level: 6
net.netlink.debug.nl_iface_drivers_debug_level: 6
net.netlink.debug.nl_route_core_debug_level: 6
net.netlink.debug.nl_mod_debug_level: 6
net.netlink.debug.nl_writer_debug_level: 6
net.netlink.debug.nl_io_debug_level: 6
net.netlink.debug.nl_generic_debug_level: 6
net.netlink.debug.nl_domain_debug_level: 6
net.netlink.debug.nl_parser_debug_level: 6
net.netlink.debug.nl_generic_kpi_debug_level: 6
net.netdump.arp_retries: 3
net.netdump.retries: 10
net.netdump.polls: 2000
net.netdump.path:
net.netdump.debug: 0
net.wlan.mesh.maxholding: 2
net.wlan.mesh.maxretries: 2
net.wlan.mesh.backofftimeout: 5000
net.wlan.mesh.confirmtimeout: 40
net.wlan.mesh.holdingtimeout: 40
net.wlan.mesh.retrytimeout: 40
net.wlan.mesh.gateint: 10000
net.wlan.hwmp.inact: 5000
net.wlan.hwmp.rannint: 1000
net.wlan.hwmp.rootint: 2000
net.wlan.hwmp.roottimeout: 5000
net.wlan.hwmp.net_diameter_traversal_time: 512
net.wlan.hwmp.maxpreq_retries: 3
net.wlan.hwmp.pathlifetime: 5000
net.wlan.hwmp.targetonly: 0
net.wlan.addba_maxtries: 3
net.wlan.addba_backoff: 10000
net.wlan.addba_timeout: 250
net.wlan.recv_bar: 1
net.wlan.ampdu_age: 500
net.wlan.debug: 0
net.wlan.cac_timeout: 60
net.wlan.nol_timeout: 1800
net.rtsock.recvspace: 8192
net.rtsock.sendspace: 8192
net.route.netisr_maxqlen: 256
net.route.debug.rtsock_debug_level: 6
net.route.debug.rt_helpers_debug_level: 6
net.route.debug.route_ctl_debug_level: 6
net.route.debug.nhop_ctl_debug_level: 6
net.route.debug.nhop_debug_level: 6
net.route.debug.nhgrp_ctl_debug_level: 6
net.route.debug.nhgrp_debug_level: 6
net.route.ipv6_nexthop: 1
net.route.multipath: 1
net.route.algo.debug_level: 5
net.route.algo.inet.algo: radix4_lockless
net.route.algo.inet6.algo: radix6_lockless
net.route.algo.fib_max_sync_delay_ms: 1000
net.route.algo.bucket_change_threshold_rate: 500
net.route.algo.bucket_time_ms: 50
net.fibs: 1
net.add_addr_allfibs: 0
net.debugnet.arp_nretries: 3
net.debugnet.fib: 0
net.debugnet.nretries: 10
net.debugnet.npolls: 2000
net.debugnet.debug: 0
net.isr.dispatch: direct
net.iflib.timer_default: 500
net.iflib.no_tx_batch: 0
net.iflib.min_tx_latency: 0
net.ifdescr_maxlen: 1024
net.bpf.maxbufsize: 524288
net.bpf.bufsize: 4096
net.bpf.optimize_writers: 0
net.bpf.zerocopy_enable: 0
net.bpf.maxinsns: 512
net.accf.unloadable: 0
debug.x86bios.int: 0
debug.x86bios.call: 0
debug.link_elf_obj_leak_locals: 1
debug.efi_time: 0
debug.minidump: 1
debug.hwpstate_pstate_limit: 0
debug.hwpstate_verify: 0
debug.hwpstate_verbose: 0
debug.fdc.settle: 0
debug.fdc.spec2: 16
debug.fdc.spec1: 175
debug.fdc.retries: 10
debug.fdc.debugflags: 0
debug.fdc.fifo: 8
debug.psm.pkterrthresh: 2
debug.psm.usecs: 500000
debug.psm.secs: 0
debug.psm.errusecs: 0
debug.psm.errsecs: 2
debug.psm.hz: 20
debug.psm.loglevel: 0
debug.vnode_domainset: <NULL>
debug.uma_reclaim_domain: 0
debug.uma_reclaim: 0
debug.vm_lowmem: 0
debug.dircheck: 0
debug.dobkgrdwrite: 1
debug.bigcgs: 0
debug.softdep.print_threads: 0
debug.softdep.flushcache: 0
debug.softdep.tickdelay: 2
debug.softdep.max_softdeps: 4640232
debug.nlm_debug: 0
debug.if_tun_debug: 0
debug.vn_lock_pair_pause_max: 10
debug.vn_io_pgcache_read_enable: 1
debug.vn_io_fault_prefault: 0
debug.vn_io_fault_enable: 1
debug.max_vnlru_free: 10000
debug.rush_requests: 0
debug.devfs_iosize_max_clamp: 1
debug.iosize_max_clamp: 0
debug.clock_do_io: 0
debug.clock_show_io: 0
debug.rman_debug: 0
debug.lock.delay_loops: 10000
debug.lock.delay_retries: 10
debug.lock.delay_max: 4096
debug.lock.delay_base: 1
debug.kdb.enter_securelevel: 0
debug.kdb.alt_break_to_debugger: 0
debug.kdb.break_to_debugger: 0
debug.kdb.stack_overflow: 0
debug.kdb.trap_code: 0
debug.kdb.trap: 0
debug.kdb.panic_str:
debug.kdb.panic: 0
debug.kdb.enter: 0
debug.kdb.current:
debug.bioq_batchsize: 128
debug.clocktime: 0
debug.obsolete_panic: 0
debug.link_elf_leak_locals: 1
debug.umtx.robust_faults_verbose: 1
debug.allow_insane_settime: 0
debug.ncores: 5
debug.trace_all_panics: 1
debug.trace_on_panic: 1
debug.debugger_on_trap: 0
debug.debugger_on_recursive_panic: 0
debug.debugger_on_panic: 1
debug.osd: 0
debug.adaptive_machine_arch: 1
debug.lockmgr.adaptive_spinning: 1
debug.fail_point.nlm_deny_grant: off
debug.fail_point.fill_kinfo_vnode__random_path: off
debug.fail_point.sysctl_running: off
debug.fail_point.test_fail_point: off
debug.fail_point.nfscl_force_fileid_warning: off
debug.fail_point.random_fortuna_pre_read: off
debug.cpufreq.verbose: 0
debug.cpufreq.lowest: 0
debug.bootverbose: 0
debug.elf32_legacy_coredump: 0
debug.elf64_legacy_coredump: 0
debug.mddebug: 0
debug.iwi: 0
debug.ipw: 0
debug.acpi.resume_beep: 0
debug.acpi.batt.batt_sleep_ms: 0
debug.acpi.ec.timeout: 750
debug.acpi.ec.polled: 0
debug.acpi.ec.burst: 0
debug.acpi.suspend_bounce: 0
debug.acpi.enable_debug_objects: 0
hw.acpi.thermal.tz0._TSP: -1
hw.acpi.thermal.tz0._TC2: -1
hw.acpi.thermal.tz0._TC1: -1
hw.acpi.thermal.tz0._CRT: 105.1C
hw.acpi.thermal.tz0._HOT: -1
hw.acpi.thermal.tz0._CR3: -1
hw.acpi.thermal.tz0._PSV: -1
hw.acpi.thermal.tz0.passive_cooling: 0
hw.acpi.thermal.tz0.active: -1
hw.acpi.thermal.user_override: 0
hw.acpi.thermal.polling_rate: 10
hw.acpi.thermal.min_runtime: 0
hw.acpi.cpu.cx_lowest: C1
hw.acpi.reset_video: 0
hw.acpi.handle_reboot: 1
hw.acpi.disable_on_reboot: 0
hw.acpi.verbose: 0
hw.acpi.s4bios: 0
hw.acpi.sleep_delay: 1
hw.acpi.suspend_state: S3
hw.acpi.standby_state: NONE
hw.acpi.lid_switch_state: NONE
hw.acpi.sleep_button_state: S3
hw.acpi.power_button_state: S5
hw.apic.ds_idle_timeout: 1000000
hw.vmd.max_msix: 3
hw.vmd.max_msi: 1
hw.vmd.bypass_msi: 1
hw.mca.cmc_throttle: 60
hw.mca.force_scan: 0
hw.mca.interval: 300
hw.mca.maxcount: -1
hw.mca.log_corrected: 1
hw.intrbalance: 0
hw.mds_disable: 0
hw.spec_store_bypass_disable: 0
hw.ibrs_disable: 1
hw.iommu.dmar.timeout: 1000000
hw.iommu.dmar.batch_coalesce: 100
hw.hvtimesync.sample_verbose: 0
hw.hvtimesync.sample_thresh: 100
hw.hvtimesync.ignore_sync: 0
hw.storvsc.use_win8ext_flags: 1
hw.hn.vf_xpnt_attwait: 2
hw.hn.udpcs_fixup_mtu: 1420
hw.psm.tap_timeout: 125000
hw.psm.tap_threshold: 25
hw.psm.tap_enabled: -1
hw.atkbd.hz: 0
hw.mlx5.calibr.normal: 30
hw.mlx5.calibr.fast: 1
hw.mlx5.calibr.duration: 20
hw.mlx5.relaxed_ordering_write: 0
hw.mlx5.fast_unload_enabled: 1
hw.mlx5.prof_sel: 2
hw.mlx5.debug_mask: 0
hw.mlx5.sw_reset_timeout: 1200
hw.mlx5.fw_reset_enable: 1
hw.bus.disable_failed_devices: 0
hw.bus.devctl_queue: 1000
hw.intr_hwpmc_waiting_report_threshold: 1
hw.intr_epoch_batch: 1000
hw.intr_storm_threshold: 0
hw.usb.wmt.debug: 0
hw.usb.usbhid.debug: 0
hw.usb.usbhid.enable: 0
hw.usb.ums.debug: 0
hw.usb.uhid.debug: 0
hw.usb.ukbd.pollrate: 0
hw.usb.ukbd.no_leds: 0
hw.usb.ukbd.debug: 0
hw.usb.full_ddesc: 0
hw.usb.no_cs_fail: 0
hw.usb.proc.debug: 0
hw.usb.disable_port_power: 0
hw.usb.disable_enumeration: 0
hw.usb.power_timeout: 30
hw.usb.uhub.debug: 0
hw.usb.ugen.debug: 0
hw.usb.usb_lang_mask: 255
hw.usb.usb_lang_id: 9
hw.usb.template: -1
hw.usb.dev.debug: 0
hw.usb.timings.enum_nice_time: 16
hw.usb.timings.extra_power_up_time: 20
hw.usb.timings.resume_recovery: 50
hw.usb.timings.resume_wait: 50
hw.usb.timings.resume_delay: 250
hw.usb.timings.set_address_settle: 10
hw.usb.timings.port_resume_delay: 40
hw.usb.timings.port_powerup_delay: 300
hw.usb.timings.port_reset_recovery: 10
hw.usb.timings.port_root_reset_delay: 200
hw.usb.timings.port_reset_delay: 50
hw.usb.debug: 0
hw.usb.umass.throttle: 0
hw.usb.umass.debug: 0
hw.usb.no_shutdown_wait: 0
hw.usb.no_suspend_wait: 0
hw.usb.ctrl.debug: 0
hw.usb.xhci.ctlstep: 0
hw.usb.xhci.dma32: 0
hw.usb.xhci.use_polling: 0
hw.usb.xhci.xhci_port_route: 0
hw.usb.xhci.debug: 0
hw.usb.xhci.dcepquirk: 0
hw.usb.xhci.ctlquirk: 1
hw.usb.xhci.streams: 0
hw.usb.uhci.loop: 0
hw.usb.uhci.debug: 0
hw.usb.ohci.debug: 0
hw.usb.ehci.lostintrbug: 0
hw.usb.ehci.iaadbug: 0
hw.usb.ehci.no_hs: 0
hw.usb.ehci.debug: 0
hw.broken_txfifo: 0
hw.syscons.sc_no_suspend_vtswitch: 0
hw.syscons.kbd_debug: 1
hw.syscons.kbd_reboot: 1
hw.syscons.bell: 1
hw.syscons.saver.keybonly: 1
hw.midi.seq.debug: 0
hw.midi.instroff: 0
hw.midi.dumpraw: 0
hw.midi.debug: 0
hw.midi.stat.verbose: 0
hw.snd.maxautovchans: 16
hw.snd.default_unit: 0
hw.snd.default_auto: 1
hw.snd.verbose: 0
hw.snd.vpc_mixer_bypass: 1
hw.snd.feeder_rate_quality: 1
hw.snd.feeder_rate_round: 25
hw.snd.feeder_rate_max: 2016000
hw.snd.feeder_rate_min: 1
hw.snd.feeder_rate_polyphase_max: 183040
hw.snd.feeder_eq_exact_rate: 0
hw.snd.basename_clone: 1
hw.snd.compat_linux_mmap: 0
hw.snd.syncdelay: -1
hw.snd.usefrags: 0
hw.snd.vpc_reset: 0
hw.snd.vpc_0db: 45
hw.snd.vpc_autoreset: 1
hw.snd.timeout: 5
hw.snd.latency_profile: 1
hw.snd.latency: 2
hw.snd.report_soft_matrix: 1
hw.snd.report_soft_formats: 1
hw.sdhci.quirk_set: 0
hw.sdhci.quirk_clear: 0
hw.sdhci.debug: 0
hw.pci.enable_pcie_ei: 0
hw.pci.iov_max_config: 1048576
hw.pci.enable_mps_tune: 1
hw.pci.clear_aer_on_attach: 0
hw.pci.msix_rewrite_table: 0
hw.pci.enable_msix: 1
hw.pci.enable_msi: 1
hw.pci.do_power_suspend: 1
hw.pci.do_power_resume: 1
hw.pci.do_power_nodriver: 0
hw.pci.realloc_bars: 1
hw.pci.enable_io_modes: 1
hw.cbb.debug: 0
hw.cbb.start_32_io: 4096
hw.cbb.start_16_io: 256
hw.cbb.start_memory: 2281701376
hw.nvme.verbose_cmd_dump: 0
hw.mwl.rxdmalow: 3
hw.mwl.rxquota: 640
hw.mwl.txcoalesce: 8
hw.mwl.txbuf: 256
hw.mwl.rxbuf: 640
hw.mwl.rxdesc: 256
hw.mmc.debug: 0
hw.mfi.cmd_timeout: 30
hw.mfi.polled_cmd_timeout: 60
hw.mfi.detect_jbod_change: 1
hw.mfi.event_class: 0
hw.mfi.event_locale: 65535
hw.malo.pci.msi_disable: 0
hw.malo.txbuf: 256
hw.malo.rxquota: 256
hw.malo.rxbuf: 256
hw.malo.txcoalesce: 8
hw.kbd.keymap_restrict_change: 0
hw.ix.enable_aim: 0
hw.i2c.iicbb_debug: 0
hw.hid.debug: 0
hw.efi.poweroff: 1
hw.cardbus.cis_debug: 0
hw.cardbus.debug: 0
hw.ath.bstuck: 4
hw.ath.txbuf_mgmt: 32
hw.ath.txbuf: 512
hw.ath.rxbuf: 512
hw.ath.anical: 100
hw.ath.resetcal: 1200
hw.ath.shortcal: 100
hw.ath.longcal: 30
hw.ata.ata_dma_check_80pin: 1
machdep.vga_aspect_scale: 100
machdep.syscall_ret_flush_l1d: 0
machdep.nmi_flush_l1d_sw: 0
machdep.uprintf_signal: 0
machdep.dump_retry_count: 5
machdep.tsc_freq: 2918434670
machdep.stop_mwait: 0
machdep.nmi_is_broadcast: 1
machdep.panic_on_nmi: 255
machdep.idle: acpi
machdep.idle_apl31: 0
machdep.idle_mwait: 1
machdep.i8254_freq: 1193182
machdep.acpi_timer_freq: 3579545
machdep.prot_fault_translation: 0
machdep.disable_rtc_set: 0
machdep.wall_cmos_clock: 0
machdep.adjkerntz: 0
machdep.rtc_save_period: 1800
machdep.mitigations.zenbleed.enable: 2
machdep.mitigations.rngds.enable: 1
machdep.mitigations.flush_rsb_ctxsw: 1
machdep.mitigations.taa.enable: 0
machdep.mitigations.mds.disable: 0
machdep.mitigations.ssb.disable: 0
machdep.mitigations.ibrs.disable: 1
machdep.enable_panic_key: 0
machdep.efi_rt_handle_faults: 1
user.localbase: /usr/local
p1003_1b.sem_nsems_max: 0
dev.pcm.0.bitperfect: 0
dev.pcm.0.rec.vchanformat: s16le:2.0
dev.pcm.0.rec.vchanrate: 48000
dev.pcm.0.rec.vchanmode: fixed
dev.pcm.0.rec.vchans: 1
dev.pcm.0.rec.autosrc: 2
dev.pcm.0.rec.32bit: 24
dev.pcm.0.play.vchanformat: s16le:2.0
dev.pcm.0.play.vchanrate: 48000
dev.pcm.0.play.vchanmode: fixed
dev.pcm.0.play.vchans: 1
dev.pcm.0.play.32bit: 24
dev.hdaa.0.init_clear: 0
dev.hdaa.0.reconfig: 0
dev.hdaa.0.gpo_config:
dev.hdaa.0.gpio_config: 0=keep 1=keep
dev.hdaa.0.config: forcestereo,ivref50,ivref80,ivref100,ivref,vref
dev.hdaa.0.nid30_config: 0x411111f0 as=15 seq=0 device=Speaker conn=None ctype=1/8 loc=Rear color=Black misc=1
dev.hdaa.0.nid29_config: 0x40420205 as=0 seq=5 device=SPDIF-out conn=None ctype=1/4 loc=0x00 color=Unknown misc=2
dev.hdaa.0.nid27_config: 0x411111f0 as=15 seq=0 device=Speaker conn=None ctype=1/8 loc=Rear color=Black misc=1
dev.hdaa.0.nid26_config: 0x411111f0 as=15 seq=0 device=Speaker conn=None ctype=1/8 loc=Rear color=Black misc=1
dev.hdaa.0.nid25_config: 0x411111f0 as=15 seq=0 device=Speaker conn=None ctype=1/8 loc=Rear color=Black misc=1
dev.hdaa.0.nid24_config: 0x04a19020 as=2 seq=0 device=Mic conn=Jack ctype=1/8 loc=Right color=Pink misc=0
dev.hdaa.0.nid23_config: 0x411111f0 as=15 seq=0 device=Speaker conn=None ctype=1/8 loc=Rear color=Black misc=1
dev.hdaa.0.nid21_config: 0x04214010 as=1 seq=0 device=Headphones conn=Jack ctype=1/8 loc=Right color=Green misc=0
dev.hdaa.0.nid20_config: 0x411111f0 as=15 seq=0 device=Speaker conn=None ctype=1/8 loc=Rear color=Black misc=1
dev.hdaa.0.nid18_config: 0x40000000 as=0 seq=0 device=Line-out conn=None ctype=Unknown loc=0x00 color=Unknown misc=0
dev.uhub.1.disable_port_power: 0
dev.uhub.1.disable_enumeration: 0
dev.uhub.0.disable_port_power: 0
dev.uhub.0.disable_enumeration: 0
dev.hwpstate_intel.11.epp: 50
dev.hwpstate_intel.10.epp: 50
dev.hwpstate_intel.9.epp: 50
dev.hwpstate_intel.8.epp: 50
dev.hwpstate_intel.7.epp: 50
dev.hwpstate_intel.6.epp: 50
dev.hwpstate_intel.5.epp: 50
dev.hwpstate_intel.4.epp: 50
dev.hwpstate_intel.3.epp: 50
dev.hwpstate_intel.2.epp: 50
dev.hwpstate_intel.1.epp: 50
dev.hwpstate_intel.0.epp: 50
dev.uart.1.pps_mode: 2
dev.uart.0.pps_mode: 2
dev.cpu.11.cx_lowest: C1
dev.cpu.11.freq: 3660
dev.cpu.10.cx_lowest: C1
dev.cpu.10.freq: 3268
dev.cpu.9.cx_lowest: C1
dev.cpu.9.freq: 3587
dev.cpu.8.cx_lowest: C1
dev.cpu.8.freq: 3242
dev.cpu.7.cx_lowest: C1
dev.cpu.7.freq: 3598
dev.cpu.6.cx_lowest: C1
dev.cpu.6.freq: 3210
dev.cpu.5.cx_lowest: C1
dev.cpu.5.freq: 3017
dev.cpu.4.cx_lowest: C1
dev.cpu.4.freq: 2515
dev.cpu.3.cx_lowest: C1
dev.cpu.3.freq: 2159
dev.cpu.2.cx_lowest: C1
dev.cpu.2.freq: 1853
dev.cpu.1.cx_lowest: C1
dev.cpu.1.freq: 1608
dev.cpu.0.cx_lowest: C1
dev.cpu.0.freq: 1608
dev.hdac.0.polling: 0
dev.hdac.0.pindump: 0
dev.hdac.0.wake: 0
dev.nvme.0.ioq5.dump_debug: 0
dev.nvme.0.ioq4.dump_debug: 0
dev.nvme.0.ioq3.dump_debug: 0
dev.nvme.0.ioq2.dump_debug: 0
dev.nvme.0.ioq1.dump_debug: 0
dev.nvme.0.ioq0.dump_debug: 0
dev.nvme.0.adminq.dump_debug: 0
dev.nvme.0.reset_stats: 0
dev.nvme.0.timeout_period: 30
dev.nvme.0.int_coal_threshold: 0
dev.nvme.0.int_coal_time: 0
dev.nvme.0.wake: 0
dev.igc.1.wake: 0
dev.igc.1.eee_control: 1
dev.igc.1.itr: 488
dev.igc.1.tx_abs_int_delay: 66
dev.igc.1.rx_abs_int_delay: 66
dev.igc.1.tx_int_delay: 66
dev.igc.1.rx_int_delay: 0
dev.igc.1.rs_dump: 0
dev.igc.1.fc: 3
dev.igc.1.debug: -1
dev.igc.1.nvm: -1
dev.igc.1.iflib.override_nrxds: 0
dev.igc.1.iflib.override_ntxds: 0
dev.igc.1.iflib.tx_abdicate: 0
dev.igc.1.iflib.rx_budget: 0
dev.igc.1.iflib.disable_msix: 0
dev.igc.1.iflib.override_qs_enable: 0
dev.igc.1.iflib.override_nrxqs: 0
dev.igc.1.iflib.override_ntxqs: 0
dev.igc.0.wake: 0
dev.igc.0.eee_control: 1
dev.igc.0.itr: 488
dev.igc.0.tx_abs_int_delay: 66
dev.igc.0.rx_abs_int_delay: 66
dev.igc.0.tx_int_delay: 66
dev.igc.0.rx_int_delay: 0
dev.igc.0.rs_dump: 0
dev.igc.0.fc: 3
dev.igc.0.debug: -1
dev.igc.0.nvm: -1
dev.igc.0.iflib.override_nrxds: 0
dev.igc.0.iflib.override_ntxds: 0
dev.igc.0.iflib.tx_abdicate: 0
dev.igc.0.iflib.rx_budget: 0
dev.igc.0.iflib.disable_msix: 0
dev.igc.0.iflib.override_qs_enable: 0
dev.igc.0.iflib.override_nrxqs: 0
dev.igc.0.iflib.override_ntxqs: 0
dev.xhci.1.wake: 0
dev.xhci.0.wake: 0
dev.ixl.1.link_active_on_if_down: 1
dev.ixl.1.eee.enable: 0
dev.ixl.1.fw_lldp: 1
dev.ixl.1.dynamic_tx_itr: 0
dev.ixl.1.dynamic_rx_itr: 0
dev.ixl.1.rx_itr: 62
dev.ixl.1.tx_itr: 122
dev.ixl.1.advertise_speed: 6
dev.ixl.1.fc: 0
dev.ixl.1.iflib.override_nrxds: 0
dev.ixl.1.iflib.override_ntxds: 0
dev.ixl.1.iflib.tx_abdicate: 0
dev.ixl.1.iflib.rx_budget: 0
dev.ixl.1.iflib.disable_msix: 0
dev.ixl.1.iflib.override_qs_enable: 0
dev.ixl.1.iflib.override_nrxqs: 0
dev.ixl.1.iflib.override_ntxqs: 0
dev.ixl.0.wake: 0
dev.ixl.0.link_active_on_if_down: 1
dev.ixl.0.eee.enable: 0
dev.ixl.0.fw_lldp: 1
dev.ixl.0.dynamic_tx_itr: 0
dev.ixl.0.dynamic_rx_itr: 0
dev.ixl.0.rx_itr: 62
dev.ixl.0.tx_itr: 122
dev.ixl.0.advertise_speed: 6
dev.ixl.0.fc: 0
dev.ixl.0.iflib.override_nrxds: 0
dev.ixl.0.iflib.override_ntxds: 0
dev.ixl.0.iflib.tx_abdicate: 0
dev.ixl.0.iflib.rx_budget: 0
dev.ixl.0.iflib.disable_msix: 0
dev.ixl.0.iflib.override_qs_enable: 0
dev.ixl.0.iflib.override_nrxqs: 0
dev.ixl.0.iflib.override_ntxqs: 0
dev.pci.6.wake: 0
dev.pci.5.wake: 0
dev.pci.4.wake: 0
dev.pci.3.wake: 0
dev.pci.2.wake: 0
dev.pci.1.wake: 0
dev.pcib.8.wake: 0
dev.pcib.7.wake: 0
dev.pcib.6.wake: 0
dev.pcib.5.wake: 0
dev.pcib.4.wake: 0
dev.pcib.3.wake: 0
dev.pcib.2.wake: 0
dev.pcib.1.wake: 0
dev.hpet.0.mmap_allow_write: 0
dev.hpet.0.mmap_allow: 1
dev.acpi_sysresource.0.wake: 0
dev.netmap.iflib_rx_miss_bufs: 0
dev.netmap.iflib_rx_miss: 0
dev.netmap.iflib_crcstrip: 1
dev.netmap.bridge_batch: 1024
dev.netmap.default_pipes: 0
dev.netmap.priv_buf_num: 4098
dev.netmap.priv_buf_size: 2048
dev.netmap.buf_num: 163840
dev.netmap.buf_size: 2048
dev.netmap.priv_ring_num: 4
dev.netmap.priv_ring_size: 20480
dev.netmap.ring_num: 200
dev.netmap.ring_size: 36864
dev.netmap.priv_if_num: 2
dev.netmap.priv_if_size: 1024
dev.netmap.if_num: 100
dev.netmap.if_size: 1024
dev.netmap.ptnet_vnet_hdr: 1
dev.netmap.generic_rings: 1
dev.netmap.generic_ringsize: 1024
dev.netmap.generic_mit: 100000
dev.netmap.generic_hwcsum: 0
dev.netmap.admode: 0
dev.netmap.fwd: 0
dev.netmap.txsync_retry: 2
dev.netmap.no_pendintr: 1
dev.netmap.no_timestamp: 0
dev.netmap.verbose: 0
security.mac.ntpd.uid: 123
security.mac.ntpd.enabled: 1
security.mac.mmap_revocation_via_cow: 0
security.mac.mmap_revocation: 1
security.bsd.stack_guard_page: 1
security.bsd.unprivileged_get_quota: 0
security.bsd.allow_read_dir: 0
security.bsd.hardlink_check_gid: 0
security.bsd.hardlink_check_uid: 0
security.bsd.unprivileged_chroot: 0
security.bsd.unprivileged_idprio: 0
security.bsd.allow_ptrace: 1
security.bsd.unprivileged_proc_debug: 1
security.bsd.conservative_signals: 1
security.bsd.see_jail_proc: 1
security.bsd.see_other_gids: 1
security.bsd.see_other_uids: 1
security.bsd.unprivileged_read_msgbuf: 1
security.bsd.unprivileged_mlock: 1
security.bsd.suser_enabled: 1
security.bsd.map_at_zero: 0
security.jail.mount_zfs_allowed: 0
security.jail.mount_tmpfs_allowed: 0
security.jail.mount_procfs_allowed: 0
security.jail.mount_devfs_allowed: 0
security.jail.param.zfs.mount_snapshot: 0
security.jail.param.zfs.: 0
security.jail.param.sysvshm.: 0
security.jail.param.sysvsem.: 0
security.jail.param.sysvmsg.: 0
security.jail.param.allow.mount.zfs: 0
security.jail.param.allow.mount.tmpfs: 0
security.jail.param.allow.mount.procfs: 0
security.jail.param.allow.mount.devfs: 0
security.jail.param.allow.mount.: 0
security.jail.param.allow.nfsd: 0
security.jail.param.allow.suser: 0
security.jail.param.allow.unprivileged_proc_debug: 0
security.jail.param.allow.read_msgbuf: 0
security.jail.param.allow.reserved_ports: 0
security.jail.param.allow.mlock: 0
security.jail.param.allow.socket_af: 0
security.jail.param.allow.quotas: 0
security.jail.param.allow.chflags: 0
security.jail.param.allow.raw_sockets: 0
security.jail.param.allow.sysvipc: 0
security.jail.param.allow.set_hostname: 0
security.jail.param.ip6.saddrsel: 0
security.jail.param.ip4.saddrsel: 0
security.jail.param.host.hostid: 0
security.jail.param.host.hostuuid: 64
security.jail.param.host.domainname: 256
security.jail.param.host.hostname: 256
security.jail.param.host.: 0
security.jail.param.children.max: 0
security.jail.param.persist: 0
security.jail.param.devfs_ruleset: 0
security.jail.param.enforce_statfs: 0
security.jail.param.securelevel: 0
security.jail.param.name: 256
security.jail.enforce_statfs: 2
security.jail.mount_allowed: 0
security.jail.chflags_allowed: 0
security.jail.allow_raw_sockets: 0
security.jail.sysvipc_allowed: 0
security.jail.socket_unixiproute_only: 1
security.jail.set_hostname_allowed: 1
security.jail.jail_max_af_ips: 255
compat.ia32.maxvmem: 0
compat.ia32.maxssiz: 67108864
compat.ia32.maxdsiz: 536870912
compat.linuxkpi.iwlwifi_uapsd_disable: 3
compat.linuxkpi.iwlwifi_debug: 0
compat.linuxkpi.net_ratelimit: 99
compat.linuxkpi.warn_dump_stack: 0
compat.linuxkpi.debug: 0
t2:sysctl -Wa
t2$ sysctl -Wa
kern.maxvnodes: 1160058
kern.maxfiles: 409600
kern.securelevel: -1
kern.hostname: t2
kern.hostid: 2357638132
kern.domainname:
kern.bootfile: /boot/kernel/kernel
kern.maxfilesperproc: 204800
kern.maxprocperuid: 63550
kern.ipc.maxsockbuf: 20480000
kern.ipc.sockbuf_waste_factor: 8
kern.ipc.sooverinterval: 60
kern.ipc.sooverprio: 7
kern.ipc.maxsockets: 2087222
kern.ipc.soacceptqueue: 32768
kern.ipc.tls.ifnet.permitted: 0
kern.ipc.tls.max_reclaim: 1024
kern.ipc.tls.cbc_enable: 1
kern.ipc.tls.enable: 1
kern.ipc.tls.ifnet_max_rexmit_pct: 2
kern.ipc.shm_allow_removed: 1
kern.ipc.shm_use_phys: 0
kern.ipc.shmall: 131072
kern.ipc.shmmin: 1
kern.ipc.shmmax: 536870912
kern.ipc.semaem: 16384
kern.ipc.semvmx: 32767
kern.ipc.semmsl: 340
kern.ipc.aio.lifetime: 30000
kern.ipc.aio.max_procs: 32
kern.ipc.pipe_mindirect: 8192
kern.ipc.piperesizeallowed: 1
kern.ipc.umtx_max_robust: 1000
kern.ipc.umtx_vnode_persistent: 0
kern.ipc.nmbufs: 26002385
kern.ipc.nmbjumbo16: 338572
kern.ipc.nmbjumbo9: 601907
kern.ipc.nmbjumbop: 2031436
kern.ipc.nmbclusters: 4062872
kern.ipc.mb_use_ext_pgs: 1
kern.logsigexit: 1
kern.hostuuid: 0fde9e00-ddb9-11ee-80ac-09be9c917000
kern.cryptodevallowsoft: 0
kern.crypto.allow_soft: 0
kern.metadelay: 28
kern.dirdelay: 29
kern.filedelay: 30
kern.tty_inq_flush_secure: 1
kern.tty_info_kstacks: 0
kern.tty_drainwait: 300
kern.trap_enotcap: 0
kern.smp.forward_signal_enabled: 1
kern.msgbuf_clear: 0
kern.always_console_output: 0
kern.log_console_add_linefeed: 0
kern.log_console_output: 1
kern.sgrowsiz: 131072
kern.maxssiz: 536870912
kern.dflssiz: 8388608
kern.maxdsiz: 34359738368
kern.dfldsiz: 34359738368
kern.maxtsiz: 34359738368
kern.msgbuf_show_timestamp: 0
kern.log_wakeups_per_second: 5
kern.sched.always_steal: 0
kern.sched.trysteal_limit: 2
kern.sched.steal_thresh: 2
kern.sched.steal_idle: 1
kern.sched.balance_interval: 127
kern.sched.balance: 1
kern.sched.affinity: 1
kern.sched.idlespinthresh: 157
kern.sched.idlespins: 10000
kern.sched.static_boost: 136
kern.sched.preempt_thresh: 48
kern.sched.interact: 30
kern.sched.slice: 12
kern.sched.quantum: 94488
kern.callout_stat: 0
kern.threads.max_threads_per_proc: 1500
kern.timecounter.fast_gettime: 1
kern.timecounter.hardware: TSC-low
kern.timecounter.alloweddeviation: 5
kern.timecounter.stepwarnings: 0
kern.corefile: %N.core
kern.compress_user_cores_level: 6
kern.compress_user_cores: 0
kern.coredump_devctl: 0
kern.nodump_coredump: 0
kern.coredump: 1
kern.capmode_coredump: 0
kern.sugid_coredump: 0
kern.sig_discard_ign: 1
kern.sigfastblock_fetch_always: 0
kern.lognosys: 0
kern.sigqueue.max_pending_per_proc: 128
kern.forcesigexit: 1
kern.kerneldump_gzlevel: 6
kern.suspend_blocked: 0
kern.shutdown.kproc_shutdown_wait: 60
kern.shutdown.poweroff_delay: 5000
kern.shutdown.show_busybufs: 0
kern.powercycle_on_panic: 0
kern.poweroff_on_panic: 0
kern.sync_on_panic: 0
kern.reboot_wait_time: 0
kern.panic_reboot_wait_time: 15
kern.racct.rctl.throttle_pct2: 4294967295
kern.racct.rctl.throttle_pct: 4294967295
kern.racct.rctl.throttle_max: 4294967295
kern.racct.rctl.throttle_min: 4294967295
kern.racct.rctl.devctl_rate_limit: 10
kern.racct.rctl.log_rate_limit: 10
kern.racct.rctl.maxbufsize: 16777216
kern.racct.pcpu_threshold: 1
kern.proc_vmmap_skip_resident_count: 0
kern.ntp_pll.pps_shift: 2
kern.ntp_pll.pps_shiftmax: 8
kern.fallback_elf_brand: -1
kern.pid_max: 99999
kern.module_path: /boot/kernel;/boot/modules;/boot/dtb;/boot/dtb/overlays
kern.ktrace.request_pool: 100
kern.ktrace.filesize_limit_signal: 0
kern.ktrace.genio_size: 4096
kern.randompid: 0
kern.wait_dequeue_sigchld: 1
kern.kill_on_debugger_exit: 1
kern.core_dump_can_intr: 1
kern.disallow_high_osrel: 0
kern.ps_arg_cache_limit: 256
kern.coredump_pack_vmmapinfo: 1
kern.coredump_pack_fileinfo: 1
kern.kq_calloutmax: 4096
kern.eventtimer.periodic: 0
kern.eventtimer.timer: LAPIC
kern.eventtimer.idletick: 0
kern.eventtimer.singlemul: 2
kern.chroot_allow_open_directories: 1
kern.constty_wakeups_per_second: 15
kern.consmsgbuf_size: 65536
kern.console: ttyv0,/uart,ttyv0,
kern.consmute: 0
kern.boottrace.shutdown_trace_threshold: 0
kern.boottrace.shutdown_trace: 0
kern.boottrace.shuttrace:
kern.boottrace.runtrace:
kern.boottrace.boottrace:
kern.acct_chkfreq: 15
kern.acct_resume: 4
kern.acct_suspend: 2
kern.init_shutdown_timeout: 120
kern.elf32.allow_wx: 1
kern.elf32.sigfastblock: 1
kern.elf32.aslr.shared_page: 0
kern.elf32.aslr.stack: 1
kern.elf32.aslr.honor_sbrk: 0
kern.elf32.aslr.pie_enable: 0
kern.elf32.aslr.enable: 0
kern.elf32.pie_base: 8192
kern.elf32.read_exec: 0
kern.elf32.vdso: 1
kern.elf32.nxstack: 1
kern.elf32.fallback_brand: -1
kern.elf64.allow_wx: 1
kern.elf64.sigfastblock: 1
kern.elf64.aslr.shared_page: 1
kern.elf64.aslr.stack: 1
kern.elf64.aslr.honor_sbrk: 0
kern.elf64.aslr.pie_enable: 1
kern.elf64.aslr.enable: 1
kern.elf64.pie_base: 16912384
kern.elf64.vdso: 1
kern.elf64.nxstack: 1
kern.elf64.fallback_brand: -1
kern.geom.raid.raid5.enable: 1
kern.geom.raid.raid1e.enable: 1
kern.geom.raid.raid1e.rebuild_meta_update: 1024
kern.geom.raid.raid1e.rebuild_cluster_idle: 100
kern.geom.raid.raid1e.rebuild_fair_io: 20
kern.geom.raid.raid1e.rebuild_slab_size: 1048576
kern.geom.raid.raid1.enable: 1
kern.geom.raid.raid1.rebuild_meta_update: 1024
kern.geom.raid.raid1.rebuild_cluster_idle: 100
kern.geom.raid.raid1.rebuild_fair_io: 20
kern.geom.raid.raid1.rebuild_slab_size: 1048576
kern.geom.raid.raid0.enable: 1
kern.geom.raid.concat.enable: 1
kern.geom.raid.sii.enable: 1
kern.geom.raid.promise.enable: 1
kern.geom.raid.nvidia.enable: 1
kern.geom.raid.jmicron.enable: 1
kern.geom.raid.intel.enable: 1
kern.geom.raid.ddf.enable: 1
kern.geom.raid.idle_threshold: 1000000
kern.geom.raid.name_format: 0
kern.geom.raid.disconnect_on_failure: 1
kern.geom.raid.clean_time: 5
kern.geom.raid.start_timeout: 30
kern.geom.raid.read_err_thresh: 10
kern.geom.raid.debug: 0
kern.geom.raid.aggressive_spare: 0
kern.geom.raid.enable: 1
kern.geom.part.mbr.enforce_chs: 0
kern.geom.part.gpt.allow_nesting: 0
kern.geom.part.allow_nesting: 0
kern.geom.part.auto_resize: 1
kern.geom.part.check_integrity: 1
kern.geom.label.disk_ident.enable: 1
kern.geom.label.gptid.enable: 1
kern.geom.label.gpt.enable: 1
kern.geom.label.ufs.enable: 1
kern.geom.label.ufsid.enable: 1
kern.geom.label.reiserfs.enable: 1
kern.geom.label.ntfs.enable: 1
kern.geom.label.msdosfs.enable: 1
kern.geom.label.iso9660.enable: 1
kern.geom.label.flashmap.enable: 1
kern.geom.label.ext2fs.enable: 1
kern.geom.label.debug: 0
kern.geom.collectstats: 1
kern.geom.notaste: 0
kern.geom.debugflags: 0
kern.geom.transient_map_retries: 10
kern.geom.disk.nda0.flush_notsup_succeed: 0
kern.geom.disk.nda0.led:
kern.geom.dev.delete_max_sectors: 262144
kern.vt.splash_cpu_duration: 10
kern.vt.splash_cpu_style: 2
kern.vt.splash_ncpu: 0
kern.vt.splash_cpu: 0
kern.vt.kbd_panic: 0
kern.vt.kbd_debug: 1
kern.vt.kbd_reboot: 1
kern.vt.kbd_poweroff: 1
kern.vt.kbd_halt: 1
kern.vt.suspendswitch: 1
kern.vt.deadtimer: 15
kern.vt.debug: 0
kern.vt.enable_bell: 0
kern.vt.enable_altgr: 1
kern.random.fortuna.minpoolsize: 64
kern.random.rdrand.rdrand_independent_seed: 0
kern.random.block_seeded_status: 0
kern.random.harvest.mask: 66015
kern.evdev.sysmouse_t_axis: 0
kern.evdev.rcpt_mask: 12
kern.cam.enc.emulate_array_devices: 1
kern.cam.enc.search_globally: 0
kern.cam.enc.verbose: 0
kern.cam.da.default_softtimeout: 0
kern.cam.da.enable_uma_ccbs: 1
kern.cam.da.disable_wp_detection: 0
kern.cam.da.send_ordered: 1
kern.cam.da.default_timeout: 60
kern.cam.da.retry_count: 4
kern.cam.da.poll_period: 3
kern.cam.ada.enable_uma_ccbs: 1
kern.cam.ada.write_cache: 1
kern.cam.ada.read_ahead: 1
kern.cam.ada.spindown_suspend: 1
kern.cam.ada.spindown_shutdown: 1
kern.cam.ada.send_ordered: 1
kern.cam.ada.default_timeout: 30
kern.cam.ada.retry_count: 4
kern.cam.cd.timeout: 30000
kern.cam.cd.retry_count: 4
kern.cam.cd.poll_period: 3
kern.cam.scsi_delay: 5000
kern.cam.cam_srch_hi: 0
kern.cam.nda.0.trim_ticks: 0
kern.cam.nda.0.trim_goal: 0
kern.cam.nda.0.sort_io_queue: 0
kern.cam.pmp.hide_special: 1
kern.cam.pmp.default_timeout: 30
kern.cam.pmp.retry_count: 1
kern.cam.debug_delay: 0
kern.cam.dflags: 0
kern.cam.mapmem_thresh: 65536
kern.cam.sort_io_queues: 1
vm.v_free_min: 102483
vm.v_free_target: 346254
vm.v_free_reserved: 21226
vm.v_inactive_target: 519381
vm.v_pageout_free_min: 34
vm.swap_enabled: 1
vm.overcommit: 0
vm.domain.0.pidctrl.kdd: 8
vm.domain.0.pidctrl.kid: 4
vm.domain.0.pidctrl.kpd: 3
vm.domain.0.pidctrl.bound: 5540064
vm.domain.0.pidctrl.setpoint: 346254
vm.pmap.allow_2m_x_ept: 0
vm.vmdaemon_timeout: 0
vm.swap_idle_threshold2: 10
vm.swap_idle_threshold1: 2
vm.swap_idle_enabled: 0
vm.oom_pf_secs: 10
vm.max_user_wired: 12902773
vm.background_launder_max: 20480
vm.background_launder_rate: 4096
vm.act_scan_laundry_weight: 3
vm.pageout_oom_seq: 12
vm.disable_swapspace_pageouts: 0
vm.lowmem_period: 10
vm.pageout_update_period: 600
vm.panic_on_oom: 0
vm.old_msync: 0
vm.imply_prot_max: 0
vm.mincore_mapped: 1
vm.old_mlock: 0
vm.v_free_severe: 61854
vm.cluster_anon: 1
vm.kstack_cache_size: 128
vm.pfault_oom_wait: 10
vm.pfault_oom_attempts: 3
vm.zone_warnings: 1
vm.swap_async_max: 4
vm.phys_pager_cluster: 1024
vm.largepages.reclaim_tries: 1
vm.md_malloc_wait: 0
vfs.msdosfs.use_buf_pager: 1
vfs.ufs.dirhash_reclaimpercent: 10
vfs.ufs.dirhash_docheck: 0
vfs.ufs.dirhash_maxmem: 27111424
vfs.ufs.dirhash_minsize: 2560
vfs.nfs.downdelayinitial: 12
vfs.nfs.downdelayinterval: 30
vfs.nfs.defect: 0
vfs.nfs.iodmax: 20
vfs.nfs.iodmin: 0
vfs.nfs.iodmaxidle: 120
vfs.nfs.use_buf_pager: 1
vfs.nfs.fileid_maxwarnings: 10
vfs.nfs.nfs_ip_paranoia: 1
vfs.nfs.maxalloclen: 67108864
vfs.nfs.nfs_directio_allow_mmap: 1
vfs.nfs.nfs_keep_dirty_on_error: 0
vfs.nfs.nfs_directio_enable: 0
vfs.nfs.clean_pages_on_close: 1
vfs.nfs.commit_on_close: 0
vfs.nfs.prime_access_cache: 0
vfs.nfs.access_cache_timeout: 60
vfs.nfs.maxcopyrange: 9223372036854775807
vfs.nfs.dssameconn: 0
vfs.nfs.ignore_eexist: 0
vfs.nfs.pnfsiothreads: -1
vfs.nfs.debuglevel: 0
vfs.nfs.callback_addr:
vfs.nfs.realign_count: 0
vfs.nfs.realign_test: 0
vfs.nfs.enable_uidtostring: 0
vfs.nfs.dsretries: 2
vfs.nfs.skip_wcc_data_onerr: 1
vfs.nfs.nfs3_jukebox_delay: 10
vfs.nfs.bufpackets: 4
vfs.devfs.dotimes: 0
vfs.devfs.rule_depth: 1
vfs.tmpfs.memory_reserved: 4194304
vfs.cd9660.use_buf_pager: 1
vfs.zfs.abort_size: 131072
vfs.zfs.earlyabort_pass: 1
vfs.zfs.sync_pass_rewrite: 2
vfs.zfs.sync_pass_dont_compress: 8
vfs.zfs.sync_pass_deferred_free: 2
vfs.zfs.commit_timeout_pct: 5
vfs.zfs.zil_saxattr: 1
vfs.zfs.immediate_write_sz: 32768
vfs.zfs.history_output_max: 1048576
vfs.zfs.max_nvlist_src_size: 0
vfs.zfs.zap_micro_max_size: 131072
vfs.zfs.zap_iterate_prefetch: 1
vfs.zfs.rebuild_scrub_enabled: 1
vfs.zfs.rebuild_vdev_limit: 67108864
vfs.zfs.rebuild_max_segment: 1048576
vfs.zfs.initialize_chunk_size: 1048576
vfs.zfs.initialize_value: 16045690984833335022
vfs.zfs.embedded_slog_min_ms: 64
vfs.zfs.nocacheflush: 0
vfs.zfs.scan_ignore_errors: 0
vfs.zfs.checksum_events_per_second: 20
vfs.zfs.slow_io_events_per_second: 20
vfs.zfs.read_history_hits: 0
vfs.zfs.read_history: 0
vfs.zfs.special_class_metadata_reserve_pct: 25
vfs.zfs.user_indirect_is_special: 1
vfs.zfs.ddt_data_is_special: 1
vfs.zfs.free_leak_on_eio: 0
vfs.zfs.recover: 0
vfs.zfs.flags: 0
vfs.zfs.min_metaslabs_to_flush: 1
vfs.zfs.max_logsm_summary_length: 10
vfs.zfs.keep_log_spacemaps_at_export: 0
vfs.zfs.max_log_walking: 5
vfs.zfs.unflushed_log_block_pct: 400
vfs.zfs.unflushed_log_txg_max: 1000
vfs.zfs.unflushed_log_block_min: 1000
vfs.zfs.unflushed_log_block_max: 131072
vfs.zfs.unflushed_max_mem_ppm: 1000
vfs.zfs.unflushed_max_mem_amt: 1073741824
vfs.zfs.autoimport_disable: 1
vfs.zfs.max_missing_tvds: 0
vfs.zfs.multilist_num_sublists: 0
vfs.zfs.scrub_error_blocks_per_txg: 4096
vfs.zfs.resilver_disable_defer: 0
vfs.zfs.scan_report_txgs: 0
vfs.zfs.scan_fill_weight: 3
vfs.zfs.scan_strict_mem_lim: 0
vfs.zfs.scan_mem_lim_soft_fact: 20
vfs.zfs.scan_max_ext_gap: 2097152
vfs.zfs.scan_checkpoint_intval: 7200
vfs.zfs.scan_legacy: 0
vfs.zfs.scan_issue_strategy: 0
vfs.zfs.scan_mem_lim_fact: 20
vfs.zfs.scan_blkstats: 0
vfs.zfs.free_bpobj_enabled: 1
vfs.zfs.max_async_dedup_frees: 100000
vfs.zfs.async_block_max_blocks: 18446744073709551615
vfs.zfs.no_scrub_prefetch: 0
vfs.zfs.no_scrub_io: 0
vfs.zfs.scan_suspend_progress: 0
vfs.zfs.resilver_min_time_ms: 3000
vfs.zfs.free_min_time_ms: 1000
vfs.zfs.obsolete_min_time_ms: 500
vfs.zfs.scrub_min_time_ms: 1000
vfs.zfs.scan_vdev_limit: 16777216
vfs.zfs.sync_taskq_batch_pct: 75
vfs.zfs.delay_scale: 500000
vfs.zfs.dirty_data_sync_percent: 20
vfs.zfs.wrlog_data_max: 8589934592
vfs.zfs.dirty_data_max: 4294967296
vfs.zfs.delay_min_dirty_percent: 60
vfs.zfs.disable_ivset_guid_check: 0
vfs.zfs.zvol_enforce_quotas: 1
vfs.zfs.snapshot_history_enabled: 1
vfs.zfs.allow_redacted_dataset_mount: 0
vfs.zfs.max_recordsize: 16777216
vfs.zfs.default_ibs: 17
vfs.zfs.default_bs: 9
vfs.zfs.send_holes_without_birth_time: 1
vfs.zfs.traverse_indirect_prefetch_limit: 32
vfs.zfs.pd_bytes_max: 52428800
vfs.zfs.dmu_object_alloc_chunk_shift: 7
vfs.zfs.dmu_prefetch_max: 134217728
vfs.zfs.dmu_offset_next_sync: 0
vfs.zfs.per_txg_dirty_frees_percent: 30
vfs.zfs.nopwrite_enabled: 1
vfs.zfs.dbuf_state_index: 0
vfs.zfs.btree_verify_intensity: 0
vfs.zfs.compressed_arc_enabled: 1
vfs.zfs.max_dataset_nesting: 50
vfs.zfs.fletcher_4_impl: [fastest] scalar superscalar superscalar4 sse2 ssse3 avx2
vfs.zfs.vol.unmap_enabled: 1
vfs.zfs.vol.recursive: 0
vfs.zfs.vol.mode: 1
vfs.zfs.xattr_compat: 1
vfs.zfs.bclone_enabled: 0
vfs.zfs.debug: 0
vfs.zfs.super_owner: 0
vfs.zfs.dbgmsg_maxsize: 4194304
vfs.zfs.dbgmsg_enable: 1
vfs.zfs.top_maxinflight: 1000
vfs.zfs.max_auto_ashift: 14
vfs.zfs.min_auto_ashift: 12
vfs.zfs.space_map_ibs: 14
vfs.zfs.debugflags: 0
vfs.zfs.max_missing_tvds_scan: 0
vfs.zfs.max_missing_tvds_cachefile: 2
vfs.zfs.ccw_retry_interval: 300
vfs.zfs.removal_suspend_progress: 0
vfs.zfs.remove_max_segment: 16777216
vfs.zfs.condense_pct: 200
vfs.zfs.zfetch.max_idistance: 67108864
vfs.zfs.zfetch.max_distance: 67108864
vfs.zfs.l2arc_norw: 0
vfs.zfs.l2arc_feed_again: 1
vfs.zfs.l2arc_noprefetch: 1
vfs.zfs.l2arc_feed_min_ms: 200
vfs.zfs.l2arc_feed_secs: 1
vfs.zfs.l2arc_headroom_boost: 200
vfs.zfs.l2arc_headroom: 2
vfs.zfs.l2arc_write_boost: 8388608
vfs.zfs.l2arc_write_max: 8388608
vfs.zfs.arc_no_grow_shift: 5
vfs.zfs.arc_free_target: 346254
vfs.zfs.arc_min: 0
vfs.zfs.arc_max: 0
vfs.zfs.zio.deadman_log_all: 0
vfs.zfs.zio.dva_throttle_enabled: 1
vfs.zfs.zio.requeue_io_start_cut_in_line: 1
vfs.zfs.zio.slow_io_ms: 30000
vfs.zfs.zil.maxcopied: 7680
vfs.zfs.zil.maxblocksize: 131072
vfs.zfs.zil.slog_bulk: 786432
vfs.zfs.zil.nocacheflush: 0
vfs.zfs.zil.replay_disable: 0
vfs.zfs.zil.min_commit_timeout: 5000
vfs.zfs.zil.clean_taskq_maxalloc: 1048576
vfs.zfs.zil.clean_taskq_minalloc: 1024
vfs.zfs.zil.clean_taskq_nthr_pct: 100
vfs.zfs.zevent.retain_expire_secs: 900
vfs.zfs.zevent.retain_max: 2000
vfs.zfs.zevent.len_max: 512
vfs.zfs.vnops.read_chunk_size: 1048576
vfs.zfs.vdev.removal_suspend_progress: 0
vfs.zfs.vdev.removal_max_span: 32768
vfs.zfs.vdev.remove_max_segment: 16777216
vfs.zfs.vdev.removal_ignore_errors: 0
vfs.zfs.vdev.def_queue_depth: 32
vfs.zfs.vdev.queue_depth_pct: 1000
vfs.zfs.vdev.nia_delay: 5
vfs.zfs.vdev.nia_credit: 5
vfs.zfs.vdev.rebuild_min_active: 1
vfs.zfs.vdev.rebuild_max_active: 3
vfs.zfs.vdev.trim_min_active: 1
vfs.zfs.vdev.trim_max_active: 2
vfs.zfs.vdev.sync_write_min_active: 10
vfs.zfs.vdev.sync_write_max_active: 10
vfs.zfs.vdev.sync_read_min_active: 10
vfs.zfs.vdev.sync_read_max_active: 10
vfs.zfs.vdev.scrub_min_active: 1
vfs.zfs.vdev.scrub_max_active: 3
vfs.zfs.vdev.removal_min_active: 1
vfs.zfs.vdev.removal_max_active: 2
vfs.zfs.vdev.initializing_min_active: 1
vfs.zfs.vdev.initializing_max_active: 1
vfs.zfs.vdev.async_write_min_active: 2
vfs.zfs.vdev.async_write_max_active: 10
vfs.zfs.vdev.async_read_min_active: 1
vfs.zfs.vdev.async_read_max_active: 3
vfs.zfs.vdev.async_write_active_min_dirty_percent: 30
vfs.zfs.vdev.async_write_active_max_dirty_percent: 60
vfs.zfs.vdev.max_active: 1000
vfs.zfs.vdev.write_gap_limit: 4096
vfs.zfs.vdev.read_gap_limit: 32768
vfs.zfs.vdev.aggregation_limit_non_rotating: 131072
vfs.zfs.vdev.aggregation_limit: 1048576
vfs.zfs.vdev.max_auto_ashift: 14
vfs.zfs.vdev.min_auto_ashift: 12
vfs.zfs.vdev.validate_skip: 0
vfs.zfs.vdev.ms_count_limit: 131072
vfs.zfs.vdev.min_ms_count: 16
vfs.zfs.vdev.max_ms_shift: 34
vfs.zfs.vdev.default_ms_shift: 29
vfs.zfs.vdev.default_ms_count: 200
vfs.zfs.vdev.bio_delete_disable: 0
vfs.zfs.vdev.bio_flush_disable: 0
vfs.zfs.vdev.mirror.non_rotating_seek_inc: 1
vfs.zfs.vdev.mirror.non_rotating_inc: 0
vfs.zfs.vdev.mirror.rotating_seek_offset: 1048576
vfs.zfs.vdev.mirror.rotating_seek_inc: 5
vfs.zfs.vdev.mirror.rotating_inc: 0
vfs.zfs.vdev.file.physical_ashift: 9
vfs.zfs.vdev.file.logical_ashift: 9
vfs.zfs.txg.timeout: 5
vfs.zfs.txg.history: 100
vfs.zfs.trim.queue_limit: 10
vfs.zfs.trim.txg_batch: 32
vfs.zfs.trim.metaslab_skip: 0
vfs.zfs.trim.extent_bytes_min: 32768
vfs.zfs.trim.extent_bytes_max: 134217728
vfs.zfs.spa.slop_shift: 5
vfs.zfs.spa.asize_inflation: 24
vfs.zfs.spa.upgrade_errlog_limit: 0
vfs.zfs.spa.discard_memory_limit: 16777216
vfs.zfs.spa.load_print_vdev_tree: 0
vfs.zfs.spa.load_verify_data: 1
vfs.zfs.spa.load_verify_metadata: 1
vfs.zfs.spa.load_verify_shift: 4
vfs.zfs.send.override_estimate_recordsize: 0
vfs.zfs.send.no_prefetch_queue_ff: 20
vfs.zfs.send.queue_ff: 20
vfs.zfs.send.no_prefetch_queue_length: 1048576
vfs.zfs.send.unmodified_spill_blocks: 1
vfs.zfs.send.queue_length: 16777216
vfs.zfs.send.corrupt_data: 0
vfs.zfs.recv.best_effort_corrective: 0
vfs.zfs.recv.write_batch_size: 1048576
vfs.zfs.recv.queue_ff: 20
vfs.zfs.recv.queue_length: 16777216
vfs.zfs.reconstruct.indirect_combinations_max: 4096
vfs.zfs.prefetch.max_idistance: 67108864
vfs.zfs.prefetch.max_distance: 67108864
vfs.zfs.prefetch.min_distance: 4194304
vfs.zfs.prefetch.max_sec_reap: 2
vfs.zfs.prefetch.min_sec_reap: 1
vfs.zfs.prefetch.max_streams: 8
vfs.zfs.prefetch.disable: 0
vfs.zfs.multihost.history: 0
vfs.zfs.multihost.import_intervals: 20
vfs.zfs.multihost.fail_intervals: 10
vfs.zfs.multihost.interval: 1000
vfs.zfs.mg.fragmentation_threshold: 95
vfs.zfs.mg.noalloc_threshold: 0
vfs.zfs.metaslab.preload_pct: 50
vfs.zfs.metaslab.find_max_tries: 100
vfs.zfs.metaslab.try_hard_before_gang: 0
vfs.zfs.metaslab.mem_limit: 25
vfs.zfs.metaslab.max_size_cache_sec: 3600
vfs.zfs.metaslab.df_use_largest_segment: 0
vfs.zfs.metaslab.df_max_search: 16777216
vfs.zfs.metaslab.force_ganging_pct: 3
vfs.zfs.metaslab.force_ganging: 16777217
vfs.zfs.metaslab.switch_threshold: 2
vfs.zfs.metaslab.segment_weight_enabled: 1
vfs.zfs.metaslab.bias_enabled: 1
vfs.zfs.metaslab.lba_weighting_enabled: 1
vfs.zfs.metaslab.fragmentation_threshold: 70
vfs.zfs.metaslab.fragmentation_factor_enabled: 1
vfs.zfs.metaslab.unload_delay_ms: 600000
vfs.zfs.metaslab.unload_delay: 32
vfs.zfs.metaslab.preload_limit: 10
vfs.zfs.metaslab.preload_enabled: 1
vfs.zfs.metaslab.debug_unload: 0
vfs.zfs.metaslab.debug_load: 0
vfs.zfs.metaslab.aliquot: 1048576
vfs.zfs.metaslab.df_free_pct: 4
vfs.zfs.metaslab.df_alloc_threshold: 131072
vfs.zfs.lua.max_memlimit: 104857600
vfs.zfs.lua.max_instrlimit: 100000000
vfs.zfs.livelist.min_percent_shared: 75
vfs.zfs.livelist.max_entries: 500000
vfs.zfs.livelist.condense.new_alloc: 0
vfs.zfs.livelist.condense.zthr_cancel: 0
vfs.zfs.livelist.condense.sync_cancel: 0
vfs.zfs.livelist.condense.sync_pause: 0
vfs.zfs.livelist.condense.zthr_pause: 0
vfs.zfs.l2arc.exclude_special: 0
vfs.zfs.l2arc.mfuonly: 0
vfs.zfs.l2arc.rebuild_blocks_min_l2size: 1073741824
vfs.zfs.l2arc.rebuild_enabled: 1
vfs.zfs.l2arc.meta_percent: 33
vfs.zfs.l2arc.norw: 0
vfs.zfs.l2arc.feed_again: 1
vfs.zfs.l2arc.noprefetch: 1
vfs.zfs.l2arc.feed_min_ms: 200
vfs.zfs.l2arc.feed_secs: 1
vfs.zfs.l2arc.trim_ahead: 0
vfs.zfs.l2arc.headroom_boost: 200
vfs.zfs.l2arc.headroom: 2
vfs.zfs.l2arc.write_boost: 8388608
vfs.zfs.l2arc.write_max: 8388608
vfs.zfs.dedup.ddt_zap_default_ibs: 15
vfs.zfs.dedup.ddt_zap_default_bs: 15
vfs.zfs.dedup.prefetch: 0
vfs.zfs.deadman.ziotime_ms: 300000
vfs.zfs.deadman.synctime_ms: 600000
vfs.zfs.deadman.failmode: wait
vfs.zfs.deadman.enabled: 1
vfs.zfs.deadman.checktime_ms: 60000
vfs.zfs.dbuf_cache.lowater_pct: 10
vfs.zfs.dbuf_cache.hiwater_pct: 10
vfs.zfs.dbuf_cache.max_bytes: 18446744073709551615
vfs.zfs.dbuf.metadata_cache_shift: 6
vfs.zfs.dbuf.cache_shift: 5
vfs.zfs.dbuf.metadata_cache_max_bytes: 18446744073709551615
vfs.zfs.condense.indirect_commit_entry_delay_ms: 0
vfs.zfs.condense.max_obsolete_bytes: 1073741824
vfs.zfs.condense.min_mapping_bytes: 131072
vfs.zfs.condense.indirect_obsolete_pct: 25
vfs.zfs.condense.indirect_vdevs_enable: 1
vfs.zfs.brt.prefetch: 1
vfs.zfs.arc.prune_task_threads: 1
vfs.zfs.arc.evict_batch_limit: 10
vfs.zfs.arc.eviction_pct: 200
vfs.zfs.arc.dnode_reduce_percent: 10
vfs.zfs.arc.dnode_limit_percent: 10
vfs.zfs.arc.dnode_limit: 0
vfs.zfs.arc.sys_free: 0
vfs.zfs.arc.lotsfree_percent: 10
vfs.zfs.arc.min_prescient_prefetch_ms: 0
vfs.zfs.arc.min_prefetch_ms: 0
vfs.zfs.arc.pc_percent: 0
vfs.zfs.arc.shrink_shift: 0
vfs.zfs.arc.grow_retry: 0
vfs.zfs.arc.meta_balance: 500
vfs.zfs.arc.max: 0
vfs.zfs.arc.min: 0
vfs.zfs.arc.no_grow_shift: 5
vfs.zfs.arc.free_target: 346254
vfs.zfs.abd_scatter_min_size: 4097
vfs.zfs.abd_scatter_enabled: 1
vfs.zfs.sha512_impl: cycle [fastest] generic x64 avx avx2
vfs.zfs.sha256_impl: cycle [fastest] generic x64 ssse3 avx avx2 shani
vfs.zfs.blake3_impl: cycle [fastest] generic sse2 sse41 avx2
vfs.ffs.use_buf_pager: 1
vfs.ffs.enxio_enable: 1
vfs.ffs.compute_summary_at_mount: 0
vfs.ffs.doasyncinodeinit: 1
vfs.ffs.maxclustersearch: 10
vfs.ffs.dotrimcons: 1
vfs.ffs.doreallocblks: 1
vfs.ffs.doasyncfree: 1
vfs.ino64_trunc_error: 0
vfs.timestamp_precision: 2
vfs.wantfreevnodes: 290014
vfs.vnode.vnlru.max_free_per_call: 10000
vfs.vnode.param.wantfree: 290014
vfs.vnode.param.limit: 1160058
vfs.deferred_unmount.retry_delay_hz: 1000
vfs.deferred_unmount.retry_limit: 10
vfs.recursive_forced_unmount: 0
vfs.default_autoro: 0
vfs.usermount: 0
vfs.lookup_cap_dotdot_nonlocal: 1
vfs.lookup_cap_dotdot: 1
vfs.read_min: 1
vfs.read_max: 64
vfs.write_behind: 1
vfs.cache.param.fast_lookup: 1
vfs.cache.param.negminpct: 3
vfs.cache.param.negfactor: 5
vfs.cache.param.sizefactor: 2
vfs.buf_pager_relbuf: 0
vfs.flushbufqtarget: 100
vfs.hifreebuffers: 3840
vfs.lofreebuffers: 2560
vfs.dirtybufthresh: 23851
vfs.hidirtybuffers: 26502
vfs.lodirtybuffers: 13251
vfs.bdwriteskip: 0
vfs.dirtybufferflushes: 0
vfs.hirunningspace: 16777216
vfs.lorunningspace: 11206656
vfs.bufspacethresh: 1691545188
vfs.hibufspace: 1734918144
vfs.lobufspace: 1648172233
vfs.maxmallocbufspace: 86745907
vfs.maxbufspace: 1735573504
vfs.vmiodirenable: 1
vfs.aio.max_buf_aio: 16
vfs.aio.max_aio_queue_per_proc: 256
vfs.aio.max_aio_per_proc: 32
vfs.aio.aiod_lifetime: 30000
vfs.aio.max_aio_queue: 1024
vfs.aio.target_aio_procs: 4
vfs.aio.max_aio_procs: 32
vfs.aio.unsafe_warningcnt: 1
vfs.aio.enable_unsafe: 0
vfs.acl_nfs4_old_semantics: 0
vfs.nfsd.request_space_low: 1386793642
vfs.nfsd.request_space_high: 2080190464
vfs.nfsd.maxthreads: 1
vfs.nfsd.minthreads: 1
vfs.nfsd.cachetcp: 1
vfs.nfsd.tcpcachetimeo: 43200
vfs.nfsd.udphighwater: 500
vfs.nfsd.tcphighwater: 0
vfs.nfsd.srvmaxio: 131072
vfs.nfsd.dsdirsize: 20
vfs.nfsd.pnfsgetdsattr: 1
vfs.nfsd.enable_stringtouid: 0
vfs.nfsd.debuglevel: 0
vfs.nfsd.enable_locallocks: 0
vfs.nfsd.issue_delegations: 0
vfs.nfsd.commit_miss: 0
vfs.nfsd.commit_blks: 0
vfs.nfsd.mirrormnt: 1
vfs.nfsd.enable_v42allocate: 0
vfs.nfsd.owner_minor: 0
vfs.nfsd.owner_major:
vfs.nfsd.scope:
vfs.nfsd.v4openaccess: 1
vfs.nfsd.linux42server: 1
vfs.nfsd.default_flexfile: 0
vfs.nfsd.async: 0
vfs.nfsd.server_max_nfsvers: 4
vfs.nfsd.server_min_nfsvers: 3
vfs.nfsd.nfs_privport: 0
vfs.nfsd.flexlinuxhack: 0
vfs.nfsd.pnfsstrictatime: 0
vfs.nfsd.allowreadforwriteopen: 1
vfs.nfsd.writedelegifpos: 0
vfs.nfsd.v4statelimit: 500000
vfs.nfsd.enable_nogroupcheck: 1
vfs.nfsd.enable_nobodycheck: 1
vfs.nfsd.enable_checkutf8: 1
vfs.nfsd.server_max_minorversion4: 2
vfs.nfsd.server_min_minorversion4: 0
vfs.nfsd.fha.max_reqs_per_nfsd: 0
vfs.nfsd.fha.max_nfsds_per_fh: 8
vfs.nfsd.fha.bin_shift: 22
vfs.nfsd.fha.write: 1
vfs.nfsd.fha.read: 1
vfs.nfsd.fha.enable: 1
net.local.stream.recvspace: 8192
net.local.stream.sendspace: 8192
net.local.dgram.recvspace: 16384
net.local.dgram.maxdgram: 2048
net.local.seqpacket.recvspace: 8192
net.local.seqpacket.maxseqpacket: 8192
net.inet.ip.portrange.randomized: 0
net.inet.ip.portrange.reservedlow: 0
net.inet.ip.portrange.reservedhigh: 1023
net.inet.ip.portrange.hilast: 65535
net.inet.ip.portrange.hifirst: 49152
net.inet.ip.portrange.last: 65500
net.inet.ip.portrange.first: 1024
net.inet.ip.portrange.lowlast: 600
net.inet.ip.portrange.lowfirst: 1023
net.inet.ip.forwarding: 0
net.inet.ip.redirect: 1
net.inet.ip.ttl: 64
net.inet.ip.sourceroute: 0
net.inet.ip.intr_queue_maxlen: 256
net.inet.ip.accept_sourceroute: 0
net.inet.ip.gifttl: 30
net.inet.ip.fragttl: 30
net.inet.ip.maxfragbucketsize: 100
net.inet.ip.maxfragsperpacket: 16
net.inet.ip.maxfragpackets: 51200
net.inet.ip.maxfrags: 126964
net.inet.ip.process_options: 1
net.inet.ip.source_address_validation: 1
net.inet.ip.rfc1122_strong_es: 0
net.inet.ip.mcast.loop: 1
net.inet.ip.mcast.maxsocksrc: 128
net.inet.ip.mcast.maxgrpsrc: 512
net.inet.ip.random_id_period: 0
net.inet.ip.rfc6864: 1
net.inet.ip.random_id: 0
net.inet.ip.loopback_prefixlen: 8
net.inet.ip.allow_net0: 0
net.inet.ip.allow_net240: 0
net.inet.ip.broadcast_lowest: 0
net.inet.ip.no_same_prefix: 0
net.inet.icmp.maskrepl: 0
net.inet.icmp.icmplim: 3000
net.inet.icmp.error_keeptags: 0
net.inet.icmp.tstamprepl: 1
net.inet.icmp.bmcastecho: 0
net.inet.icmp.quotelen: 548
net.inet.icmp.reply_from_interface: 0
net.inet.icmp.reply_src:
net.inet.icmp.redirtimeout: 600
net.inet.icmp.log_redirect: 0
net.inet.icmp.drop_redirect: 0
net.inet.icmp.maskfake: 0
net.inet.icmp.icmplim_output: 1
net.inet.icmp.icmplim_jitter: 16
net.inet.igmp.gsrdelay: 10
net.inet.igmp.default_version: 3
net.inet.igmp.legacysupp: 0
net.inet.igmp.v2enable: 1
net.inet.igmp.v1enable: 1
net.inet.igmp.sendlocal: 1
net.inet.igmp.sendra: 1
net.inet.igmp.recvifkludge: 1
net.inet.tcp.rfc1323: 1
net.inet.tcp.mssdflt: 1460
net.inet.tcp.keepidle: 7200000
net.inet.tcp.keepintvl: 75000
net.inet.tcp.sendspace: 1048576
net.inet.tcp.recvspace: 8388608
net.inet.tcp.keepinit: 75000
net.inet.tcp.delacktime: 40
net.inet.tcp.v6mssdflt: 1220
net.inet.tcp.nolocaltimewait: 1
net.inet.tcp.retries: 12
net.inet.tcp.per_cpu_timers: 0
net.inet.tcp.v6pmtud_blackhole_mss: 1220
net.inet.tcp.pmtud_blackhole_mss: 1200
net.inet.tcp.pmtud_blackhole_detection: 0
net.inet.tcp.maxunacktime: 0
net.inet.tcp.rexmit_drop_options: 0
net.inet.tcp.keepcnt: 8
net.inet.tcp.finwait2_timeout: 3000
net.inet.tcp.fast_finwait2_recycle: 1
net.inet.tcp.always_keepalive: 1
net.inet.tcp.rexmit_slop: 200
net.inet.tcp.rexmit_min: 30
net.inet.tcp.rexmit_initial: 1000
net.inet.tcp.msl: 1000
net.inet.tcp.persmax: 60000
net.inet.tcp.persmin: 5000
net.inet.tcp.syncache.rst_on_sock_fail: 1
net.inet.tcp.syncache.rexmtlimit: 0
net.inet.tcp.syncache.see_other: 0
net.inet.tcp.functions_inherit_listen_socket_stack: 1
net.inet.tcp.syncookies_only: 0
net.inet.tcp.syncookies: 1
net.inet.tcp.udp_tunneling_overhead: 8
net.inet.tcp.udp_tunneling_port: 0
net.inet.tcp.functions_default: freebsd
net.inet.tcp.split_limit: 0
net.inet.tcp.map_limit: 0
net.inet.tcp.isn_reseed_interval: 0
net.inet.tcp.icmp_may_rst: 1
net.inet.tcp.do_tcpdrain: 1
net.inet.tcp.log_debug: 0
net.inet.tcp.pacing_limit: 10000
net.inet.tcp.ts_offset_per_conn: 1
net.inet.tcp.tolerate_missing_ts: 1
net.inet.tcp.minmss: 536
net.inet.tcp.ack_war_cnt: 5
net.inet.tcp.ack_war_timewindow: 1000
net.inet.tcp.sack.globalmaxholes: 65536
net.inet.tcp.sack.maxholes: 128
net.inet.tcp.sack.revised: 1
net.inet.tcp.sack.enable: 1
net.inet.tcp.reass.queueguard: 16
net.inet.tcp.reass.new_limit: 0
net.inet.tcp.reass.maxqueuelen: 100
net.inet.tcp.sendbuf_auto_lowat: 0
net.inet.tcp.sendbuf_max: 8388608
net.inet.tcp.sendbuf_inc: 262144
net.inet.tcp.sendbuf_auto: 1
net.inet.tcp.tso: 0
net.inet.tcp.path_mtu_discovery: 1
net.inet.tcp.bb.log_auto_all: 0
net.inet.tcp.bb.log_auto_mode: 1
net.inet.tcp.bb.log_auto_ratio: 0
net.inet.tcp.bb.disable_all: 0
net.inet.tcp.bb.log_id_tcpcb_limit: 0
net.inet.tcp.bb.log_id_limit: 0
net.inet.tcp.bb.log_global_limit: 5000000
net.inet.tcp.bb.log_session_limit: 5000
net.inet.tcp.bb.log_verbose: 0
net.inet.tcp.bb.tp.count: 0
net.inet.tcp.bb.tp.bbmode: 4
net.inet.tcp.bb.tp.number: 0
net.inet.tcp.recvbuf_max: 4194304
net.inet.tcp.recvbuf_auto: 1
net.inet.tcp.insecure_rst: 0
net.inet.tcp.insecure_syn: 0
net.inet.tcp.abc_l_var: 44
net.inet.tcp.rfc3465: 1
net.inet.tcp.initcwnd_segments: 44
net.inet.tcp.rfc3390: 1
net.inet.tcp.rfc3042: 1
net.inet.tcp.newcwv: 0
net.inet.tcp.do_lrd: 0
net.inet.tcp.do_prr: 1
net.inet.tcp.do_prr_conservative: 0
net.inet.tcp.drop_synfin: 0
net.inet.tcp.delayed_ack: 1
net.inet.tcp.blackhole_local: 0
net.inet.tcp.blackhole: 2
net.inet.tcp.log_in_vain: 0
net.inet.tcp.hostcache.purgenow: 0
net.inet.tcp.hostcache.purge: 0
net.inet.tcp.hostcache.prune: 300
net.inet.tcp.hostcache.expire: 3600
net.inet.tcp.hostcache.enable: 1
net.inet.tcp.fastopen.server_enable: 1
net.inet.tcp.fastopen.psk_enable: 1
net.inet.tcp.fastopen.path_disable_time: 900
net.inet.tcp.fastopen.client_enable: 1
net.inet.tcp.fastopen.ccache_bucket_limit: 16
net.inet.tcp.fastopen.autokey: 120
net.inet.tcp.fastopen.acceptany: 1
net.inet.tcp.ecn.maxretries: 1
net.inet.tcp.ecn.enable: 1
net.inet.tcp.cc.abe_frlossreduce: 0
net.inet.tcp.cc.abe: 1
net.inet.tcp.cc.hystartplusplus.bblogs: 0
net.inet.tcp.cc.hystartplusplus.css_rounds: 5
net.inet.tcp.cc.hystartplusplus.css_growth_div: 4
net.inet.tcp.cc.hystartplusplus.n_rttsamples: 8
net.inet.tcp.cc.hystartplusplus.maxrtt_thresh: 16000
net.inet.tcp.cc.hystartplusplus.minrtt_thresh: 4000
net.inet.tcp.cc.algorithm: cubic
net.inet.udp.checksum: 1
net.inet.udp.maxdgram: 9216
net.inet.udp.recvspace: 1048576
net.inet.udp.blackhole_local: 0
net.inet.udp.blackhole: 0
net.inet.udp.log_in_vain: 0
net.inet.ipsec.debug: 0
net.inet.raw.recvspace: 9216
net.inet.raw.maxdgram: 9216
net.link.ether.inet.allow_multicast: 0
net.link.ether.inet.log_arp_permanent_modify: 1
net.link.ether.inet.log_arp_movements: 1
net.link.ether.inet.log_arp_wrong_iface: 1
net.link.ether.inet.garp_rexmit_count: 0
net.link.ether.inet.max_log_per_second: 1
net.link.ether.inet.maxhold: 16
net.link.ether.inet.wait: 20
net.link.ether.inet.proxyall: 0
net.link.ether.inet.maxtries: 5
net.link.ether.inet.max_age: 1200
net.link.ether.arp.log_level: 6
net.link.vlan.mtag_pcp: 0
net.link.vlan.soft_pad: 0
net.link.gif.max_nesting: 1
net.link.tap.debug: 0
net.link.tap.devfs_cloning: 1
net.link.tap.up_on_open: 0
net.link.tap.user_open: 0
net.link.tun.devfs_cloning: 1
net.link.log_link_state_change: 1
net.key.debug: 0
net.key.spi_trycnt: 1000
net.key.spi_minval: 256
net.key.spi_maxval: 268435455
net.key.int_random: 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.preferred_oldsa: 1
net.key.recvspace: 8192
net.key.sendspace: 8192
net.inet6.udp6.rfc6935_port: 0
net.inet6.ip6.forwarding: 0
net.inet6.ip6.redirect: 1
net.inet6.ip6.hlim: 64
net.inet6.ip6.maxfragpackets: 51200
net.inet6.ip6.accept_rtadv: 1
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.use_deprecated: 1
net.inet6.ip6.rr_prune: 5
net.inet6.ip6.v6only: 1
net.inet6.ip6.use_tempaddr: 0
net.inet6.ip6.temppltime: 86400
net.inet6.ip6.tempvltime: 604800
net.inet6.ip6.auto_linklocal: 1
net.inet6.ip6.prefer_tempaddr: 0
net.inet6.ip6.use_defaultzone: 0
net.inet6.ip6.maxfrags: 126964
net.inet6.ip6.mcast_pmtu: 0
net.inet6.ip6.no_radr: 0
net.inet6.ip6.norbit_raif: 0
net.inet6.ip6.rfc6204w3: 0
net.inet6.ip6.intr_queue_maxlen: 256
net.inet6.ip6.maxfragsperpacket: 64
net.inet6.ip6.maxfragbucketsize: 100
net.inet6.ip6.dad_enhanced: 1
net.inet6.ip6.source_address_validation: 1
net.inet6.ip6.log_cannot_forward: 1
net.inet6.ip6.mcast.loop: 1
net.inet6.ip6.mcast.maxsocksrc: 128
net.inet6.ip6.mcast.maxgrpsrc: 512
net.inet6.ip6.fraglifetime_ms: 60000
net.inet6.ipsec6.debug: 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: 0
net.inet6.icmp6.errppslimit: 100
net.inet6.icmp6.nd6_maxnudhint: 0
net.inet6.icmp6.nd6_debug: 0
net.inet6.icmp6.nd6_maxqueuelen: 16
net.inet6.icmp6.nodeinfo_oldmcprefix: 1
net.inet6.icmp6.nd6_onlink_ns_rfc4861: 0
net.inet6.icmp6.nd6_gctimer: 86400
net.inet6.mld.use_allow: 1
net.inet6.mld.v2enable: 1
net.inet6.mld.v1enable: 1
net.inet6.mld.gsrdelay: 10
net.bluetooth.usb_isoc_enable: 1
net.bluetooth.sco.rtx_timeout: 60
net.bluetooth.l2cap.ertx_timeout: 300
net.bluetooth.l2cap.rtx_timeout: 60
net.bluetooth.hci.max_neighbor_age: 600
net.bluetooth.hci.connection_timeout: 60
net.bluetooth.hci.command_timeout: 5
net.hvsock.hvs_dbg_level: 0
net.netlink.nl_maxsockbuf: 536870912
net.netlink.recvspace: 65536
net.netlink.sendspace: 65536
net.netlink.debug.nl_route_debug_level: 6
net.netlink.debug.nl_nhop_debug_level: 6
net.netlink.debug.nl_neigh_debug_level: 6
net.netlink.debug.nl_iface_debug_level: 6
net.netlink.debug.nl_iface_drivers_debug_level: 6
net.netlink.debug.nl_route_core_debug_level: 6
net.netlink.debug.nl_mod_debug_level: 6
net.netlink.debug.nl_writer_debug_level: 6
net.netlink.debug.nl_io_debug_level: 6
net.netlink.debug.nl_generic_debug_level: 6
net.netlink.debug.nl_domain_debug_level: 6
net.netlink.debug.nl_parser_debug_level: 6
net.netlink.debug.nl_generic_kpi_debug_level: 6
net.netdump.arp_retries: 3
net.netdump.retries: 10
net.netdump.polls: 2000
net.netdump.path:
net.netdump.debug: 0
net.wlan.mesh.maxholding: 2
net.wlan.mesh.maxretries: 2
net.wlan.mesh.backofftimeout: 5000
net.wlan.mesh.confirmtimeout: 40
net.wlan.mesh.holdingtimeout: 40
net.wlan.mesh.retrytimeout: 40
net.wlan.mesh.gateint: 10000
net.wlan.hwmp.inact: 5000
net.wlan.hwmp.rannint: 1000
net.wlan.hwmp.rootint: 2000
net.wlan.hwmp.roottimeout: 5000
net.wlan.hwmp.net_diameter_traversal_time: 512
net.wlan.hwmp.maxpreq_retries: 3
net.wlan.hwmp.pathlifetime: 5000
net.wlan.hwmp.targetonly: 0
net.wlan.addba_maxtries: 3
net.wlan.addba_backoff: 10000
net.wlan.addba_timeout: 250
net.wlan.recv_bar: 1
net.wlan.ampdu_age: 500
net.wlan.debug: 0
net.wlan.cac_timeout: 60
net.wlan.nol_timeout: 1800
net.rtsock.recvspace: 8192
net.rtsock.sendspace: 8192
net.route.netisr_maxqlen: 256
net.route.debug.rtsock_debug_level: 6
net.route.debug.rt_helpers_debug_level: 6
net.route.debug.route_ctl_debug_level: 6
net.route.debug.nhop_ctl_debug_level: 6
net.route.debug.nhop_debug_level: 6
net.route.debug.nhgrp_ctl_debug_level: 6
net.route.debug.nhgrp_debug_level: 6
net.route.ipv6_nexthop: 1
net.route.multipath: 1
net.route.algo.debug_level: 5
net.route.algo.inet.algo: radix4_lockless
net.route.algo.inet6.algo: radix6_lockless
net.route.algo.fib_max_sync_delay_ms: 1000
net.route.algo.bucket_change_threshold_rate: 500
net.route.algo.bucket_time_ms: 50
net.fibs: 1
net.add_addr_allfibs: 0
net.debugnet.arp_nretries: 3
net.debugnet.fib: 0
net.debugnet.nretries: 10
net.debugnet.npolls: 2000
net.debugnet.debug: 0
net.isr.dispatch: direct
net.iflib.timer_default: 500
net.iflib.no_tx_batch: 0
net.iflib.min_tx_latency: 0
net.ifdescr_maxlen: 1024
net.bpf.maxbufsize: 524288
net.bpf.bufsize: 4096
net.bpf.optimize_writers: 0
net.bpf.zerocopy_enable: 0
net.bpf.maxinsns: 512
net.accf.unloadable: 0
debug.x86bios.int: 0
debug.x86bios.call: 0
debug.link_elf_obj_leak_locals: 1
debug.efi_time: 0
debug.minidump: 1
debug.hwpstate_pstate_limit: 0
debug.hwpstate_verify: 0
debug.hwpstate_verbose: 0
debug.fdc.settle: 0
debug.fdc.spec2: 16
debug.fdc.spec1: 175
debug.fdc.retries: 10
debug.fdc.debugflags: 0
debug.fdc.fifo: 8
debug.psm.pkterrthresh: 2
debug.psm.usecs: 500000
debug.psm.secs: 0
debug.psm.errusecs: 0
debug.psm.errsecs: 2
debug.psm.hz: 20
debug.psm.loglevel: 0
debug.vnode_domainset: <NULL>
debug.uma_reclaim_domain: 0
debug.uma_reclaim: 0
debug.vm_lowmem: 0
debug.dircheck: 0
debug.dobkgrdwrite: 1
debug.bigcgs: 0
debug.softdep.print_threads: 0
debug.softdep.flushcache: 0
debug.softdep.tickdelay: 2
debug.softdep.max_softdeps: 4640232
debug.nlm_debug: 0
debug.if_tun_debug: 0
debug.vn_lock_pair_pause_max: 10
debug.vn_io_pgcache_read_enable: 1
debug.vn_io_fault_prefault: 0
debug.vn_io_fault_enable: 1
debug.max_vnlru_free: 10000
debug.rush_requests: 0
debug.devfs_iosize_max_clamp: 1
debug.iosize_max_clamp: 0
debug.clock_do_io: 0
debug.clock_show_io: 0
debug.rman_debug: 0
debug.lock.delay_loops: 10000
debug.lock.delay_retries: 10
debug.lock.delay_max: 8192
debug.lock.delay_base: 1
debug.kdb.enter_securelevel: 0
debug.kdb.alt_break_to_debugger: 0
debug.kdb.break_to_debugger: 0
debug.kdb.stack_overflow: 0
debug.kdb.trap_code: 0
debug.kdb.trap: 0
debug.kdb.panic_str:
debug.kdb.panic: 0
debug.kdb.enter: 0
debug.kdb.current:
debug.bioq_batchsize: 128
debug.clocktime: 0
debug.obsolete_panic: 0
debug.link_elf_leak_locals: 1
debug.umtx.robust_faults_verbose: 1
debug.allow_insane_settime: 0
debug.ncores: 5
debug.trace_all_panics: 1
debug.trace_on_panic: 1
debug.debugger_on_trap: 0
debug.debugger_on_recursive_panic: 0
debug.debugger_on_panic: 1
debug.osd: 0
debug.adaptive_machine_arch: 1
debug.lockmgr.adaptive_spinning: 1
debug.fail_point.nlm_deny_grant: off
debug.fail_point.fill_kinfo_vnode__random_path: off
debug.fail_point.sysctl_running: off
debug.fail_point.test_fail_point: off
debug.fail_point.nfscl_force_fileid_warning: off
debug.fail_point.random_fortuna_pre_read: off
debug.cpufreq.verbose: 0
debug.cpufreq.lowest: 0
debug.bootverbose: 0
debug.elf32_legacy_coredump: 0
debug.elf64_legacy_coredump: 0
debug.mddebug: 0
debug.iwi: 0
debug.ipw: 0
debug.acpi.resume_beep: 0
debug.acpi.batt.batt_sleep_ms: 0
debug.acpi.ec.timeout: 750
debug.acpi.ec.polled: 0
debug.acpi.ec.burst: 0
debug.acpi.suspend_bounce: 0
debug.acpi.enable_debug_objects: 0
hw.acpi.thermal.tz0._TSP: -1
hw.acpi.thermal.tz0._TC2: -1
hw.acpi.thermal.tz0._TC1: -1
hw.acpi.thermal.tz0._CRT: 105.1C
hw.acpi.thermal.tz0._HOT: -1
hw.acpi.thermal.tz0._CR3: -1
hw.acpi.thermal.tz0._PSV: -1
hw.acpi.thermal.tz0.passive_cooling: 0
hw.acpi.thermal.tz0.active: -1
hw.acpi.thermal.user_override: 0
hw.acpi.thermal.polling_rate: 10
hw.acpi.thermal.min_runtime: 0
hw.acpi.cpu.cx_lowest: C1
hw.acpi.reset_video: 0
hw.acpi.handle_reboot: 1
hw.acpi.disable_on_reboot: 0
hw.acpi.verbose: 0
hw.acpi.s4bios: 0
hw.acpi.sleep_delay: 1
hw.acpi.suspend_state: S3
hw.acpi.standby_state: NONE
hw.acpi.lid_switch_state: NONE
hw.acpi.sleep_button_state: S3
hw.acpi.power_button_state: S5
hw.apic.ds_idle_timeout: 1000000
hw.vmd.max_msix: 3
hw.vmd.max_msi: 1
hw.vmd.bypass_msi: 1
hw.mca.cmc_throttle: 60
hw.mca.force_scan: 0
hw.mca.interval: 300
hw.mca.maxcount: -1
hw.mca.log_corrected: 1
hw.intrbalance: 0
hw.mds_disable: 0
hw.spec_store_bypass_disable: 0
hw.ibrs_disable: 1
hw.iommu.dmar.timeout: 1000000
hw.iommu.dmar.batch_coalesce: 100
hw.hvtimesync.sample_verbose: 0
hw.hvtimesync.sample_thresh: 100
hw.hvtimesync.ignore_sync: 0
hw.storvsc.use_win8ext_flags: 1
hw.hn.vf_xpnt_attwait: 2
hw.hn.udpcs_fixup_mtu: 1420
hw.psm.tap_timeout: 125000
hw.psm.tap_threshold: 25
hw.psm.tap_enabled: -1
hw.atkbd.hz: 0
hw.mlx5.calibr.normal: 30
hw.mlx5.calibr.fast: 1
hw.mlx5.calibr.duration: 20
hw.mlx5.relaxed_ordering_write: 0
hw.mlx5.fast_unload_enabled: 1
hw.mlx5.prof_sel: 2
hw.mlx5.debug_mask: 0
hw.mlx5.sw_reset_timeout: 1200
hw.mlx5.fw_reset_enable: 1
hw.bus.disable_failed_devices: 0
hw.bus.devctl_queue: 1000
hw.intr_hwpmc_waiting_report_threshold: 1
hw.intr_epoch_batch: 1000
hw.intr_storm_threshold: 0
hw.usb.wmt.debug: 0
hw.usb.usbhid.debug: 0
hw.usb.usbhid.enable: 0
hw.usb.ums.debug: 0
hw.usb.uhid.debug: 0
hw.usb.ukbd.pollrate: 0
hw.usb.ukbd.no_leds: 0
hw.usb.ukbd.debug: 0
hw.usb.full_ddesc: 0
hw.usb.no_cs_fail: 0
hw.usb.proc.debug: 0
hw.usb.disable_port_power: 0
hw.usb.disable_enumeration: 0
hw.usb.power_timeout: 30
hw.usb.uhub.debug: 0
hw.usb.ugen.debug: 0
hw.usb.usb_lang_mask: 255
hw.usb.usb_lang_id: 9
hw.usb.template: -1
hw.usb.dev.debug: 0
hw.usb.timings.enum_nice_time: 16
hw.usb.timings.extra_power_up_time: 20
hw.usb.timings.resume_recovery: 50
hw.usb.timings.resume_wait: 50
hw.usb.timings.resume_delay: 250
hw.usb.timings.set_address_settle: 10
hw.usb.timings.port_resume_delay: 40
hw.usb.timings.port_powerup_delay: 300
hw.usb.timings.port_reset_recovery: 10
hw.usb.timings.port_root_reset_delay: 200
hw.usb.timings.port_reset_delay: 50
hw.usb.debug: 0
hw.usb.umass.throttle: 0
hw.usb.umass.debug: 0
hw.usb.no_shutdown_wait: 0
hw.usb.no_suspend_wait: 0
hw.usb.ctrl.debug: 0
hw.usb.xhci.ctlstep: 0
hw.usb.xhci.dma32: 0
hw.usb.xhci.use_polling: 0
hw.usb.xhci.xhci_port_route: 0
hw.usb.xhci.debug: 0
hw.usb.xhci.dcepquirk: 0
hw.usb.xhci.ctlquirk: 1
hw.usb.xhci.streams: 0
hw.usb.uhci.loop: 0
hw.usb.uhci.debug: 0
hw.usb.ohci.debug: 0
hw.usb.ehci.lostintrbug: 0
hw.usb.ehci.iaadbug: 0
hw.usb.ehci.no_hs: 0
hw.usb.ehci.debug: 0
hw.broken_txfifo: 0
hw.syscons.sc_no_suspend_vtswitch: 0
hw.syscons.kbd_debug: 1
hw.syscons.kbd_reboot: 1
hw.syscons.bell: 1
hw.syscons.saver.keybonly: 1
hw.midi.seq.debug: 0
hw.midi.instroff: 0
hw.midi.dumpraw: 0
hw.midi.debug: 0
hw.midi.stat.verbose: 0
hw.snd.maxautovchans: 16
hw.snd.default_unit: 0
hw.snd.default_auto: 1
hw.snd.verbose: 0
hw.snd.vpc_mixer_bypass: 1
hw.snd.feeder_rate_quality: 1
hw.snd.feeder_rate_round: 25
hw.snd.feeder_rate_max: 2016000
hw.snd.feeder_rate_min: 1
hw.snd.feeder_rate_polyphase_max: 183040
hw.snd.feeder_eq_exact_rate: 0
hw.snd.basename_clone: 1
hw.snd.compat_linux_mmap: 0
hw.snd.syncdelay: -1
hw.snd.usefrags: 0
hw.snd.vpc_reset: 0
hw.snd.vpc_0db: 45
hw.snd.vpc_autoreset: 1
hw.snd.timeout: 5
hw.snd.latency_profile: 1
hw.snd.latency: 2
hw.snd.report_soft_matrix: 1
hw.snd.report_soft_formats: 1
hw.sdhci.quirk_set: 0
hw.sdhci.quirk_clear: 0
hw.sdhci.debug: 0
hw.pci.enable_pcie_ei: 0
hw.pci.iov_max_config: 1048576
hw.pci.enable_mps_tune: 1
hw.pci.clear_aer_on_attach: 0
hw.pci.msix_rewrite_table: 0
hw.pci.enable_msix: 1
hw.pci.enable_msi: 1
hw.pci.do_power_suspend: 1
hw.pci.do_power_resume: 1
hw.pci.do_power_nodriver: 0
hw.pci.realloc_bars: 1
hw.pci.enable_io_modes: 1
hw.cbb.debug: 0
hw.cbb.start_32_io: 4096
hw.cbb.start_16_io: 256
hw.cbb.start_memory: 2281701376
hw.nvme.verbose_cmd_dump: 0
hw.mwl.rxdmalow: 3
hw.mwl.rxquota: 640
hw.mwl.txcoalesce: 8
hw.mwl.txbuf: 256
hw.mwl.rxbuf: 640
hw.mwl.rxdesc: 256
hw.mmc.debug: 0
hw.mfi.cmd_timeout: 30
hw.mfi.polled_cmd_timeout: 60
hw.mfi.detect_jbod_change: 1
hw.mfi.event_class: 0
hw.mfi.event_locale: 65535
hw.malo.pci.msi_disable: 0
hw.malo.txbuf: 256
hw.malo.rxquota: 256
hw.malo.rxbuf: 256
hw.malo.txcoalesce: 8
hw.kbd.keymap_restrict_change: 0
hw.ix.enable_aim: 0
hw.i2c.iicbb_debug: 0
hw.hid.debug: 0
hw.efi.poweroff: 1
hw.cardbus.cis_debug: 0
hw.cardbus.debug: 0
hw.ath.bstuck: 4
hw.ath.txbuf_mgmt: 32
hw.ath.txbuf: 512
hw.ath.rxbuf: 512
hw.ath.anical: 100
hw.ath.resetcal: 1200
hw.ath.shortcal: 100
hw.ath.longcal: 30
hw.ata.ata_dma_check_80pin: 1
machdep.vga_aspect_scale: 100
machdep.syscall_ret_flush_l1d: 0
machdep.nmi_flush_l1d_sw: 0
machdep.uprintf_signal: 0
machdep.dump_retry_count: 5
machdep.tsc_freq: 2918402980
machdep.stop_mwait: 0
machdep.nmi_is_broadcast: 1
machdep.panic_on_nmi: 255
machdep.idle: acpi
machdep.idle_apl31: 0
machdep.idle_mwait: 1
machdep.i8254_freq: 1193182
machdep.acpi_timer_freq: 3579545
machdep.prot_fault_translation: 0
machdep.disable_rtc_set: 0
machdep.wall_cmos_clock: 0
machdep.adjkerntz: 0
machdep.rtc_save_period: 1800
machdep.mitigations.zenbleed.enable: 2
machdep.mitigations.rngds.enable: 1
machdep.mitigations.flush_rsb_ctxsw: 1
machdep.mitigations.taa.enable: 0
machdep.mitigations.mds.disable: 0
machdep.mitigations.ssb.disable: 0
machdep.mitigations.ibrs.disable: 1
machdep.enable_panic_key: 0
machdep.efi_rt_handle_faults: 1
user.localbase: /usr/local
p1003_1b.sem_nsems_max: 0
dev.pcm.0.bitperfect: 0
dev.pcm.0.rec.vchanformat: s16le:2.0
dev.pcm.0.rec.vchanrate: 48000
dev.pcm.0.rec.vchanmode: fixed
dev.pcm.0.rec.vchans: 1
dev.pcm.0.rec.autosrc: 2
dev.pcm.0.rec.32bit: 24
dev.pcm.0.play.vchanformat: s16le:2.0
dev.pcm.0.play.vchanrate: 48000
dev.pcm.0.play.vchanmode: fixed
dev.pcm.0.play.vchans: 1
dev.pcm.0.play.32bit: 24
dev.hdaa.0.init_clear: 0
dev.hdaa.0.reconfig: 0
dev.hdaa.0.gpo_config:
dev.hdaa.0.gpio_config: 0=keep 1=keep
dev.hdaa.0.config: forcestereo,ivref50,ivref80,ivref100,ivref,vref
dev.hdaa.0.nid30_config: 0x411111f0 as=15 seq=0 device=Speaker conn=None ctype=1/8 loc=Rear color=Black misc=1
dev.hdaa.0.nid29_config: 0x40420205 as=0 seq=5 device=SPDIF-out conn=None ctype=1/4 loc=0x00 color=Unknown misc=2
dev.hdaa.0.nid27_config: 0x411111f0 as=15 seq=0 device=Speaker conn=None ctype=1/8 loc=Rear color=Black misc=1
dev.hdaa.0.nid26_config: 0x411111f0 as=15 seq=0 device=Speaker conn=None ctype=1/8 loc=Rear color=Black misc=1
dev.hdaa.0.nid25_config: 0x411111f0 as=15 seq=0 device=Speaker conn=None ctype=1/8 loc=Rear color=Black misc=1
dev.hdaa.0.nid24_config: 0x04a19020 as=2 seq=0 device=Mic conn=Jack ctype=1/8 loc=Right color=Pink misc=0
dev.hdaa.0.nid23_config: 0x411111f0 as=15 seq=0 device=Speaker conn=None ctype=1/8 loc=Rear color=Black misc=1
dev.hdaa.0.nid21_config: 0x04214010 as=1 seq=0 device=Headphones conn=Jack ctype=1/8 loc=Right color=Green misc=0
dev.hdaa.0.nid20_config: 0x411111f0 as=15 seq=0 device=Speaker conn=None ctype=1/8 loc=Rear color=Black misc=1
dev.hdaa.0.nid18_config: 0x40000000 as=0 seq=0 device=Line-out conn=None ctype=Unknown loc=0x00 color=Unknown misc=0
dev.uhub.4.disable_port_power: 0
dev.uhub.4.disable_enumeration: 0
dev.uhub.3.disable_port_power: 0
dev.uhub.3.disable_enumeration: 0
dev.uhub.2.disable_port_power: 0
dev.uhub.2.disable_enumeration: 0
dev.uhub.1.disable_port_power: 0
dev.uhub.1.disable_enumeration: 0
dev.uhub.0.disable_port_power: 0
dev.uhub.0.disable_enumeration: 0
dev.hwpstate_intel.19.epp: 50
dev.hwpstate_intel.18.epp: 50
dev.hwpstate_intel.17.epp: 50
dev.hwpstate_intel.16.epp: 50
dev.hwpstate_intel.15.epp: 50
dev.hwpstate_intel.14.epp: 50
dev.hwpstate_intel.13.epp: 50
dev.hwpstate_intel.12.epp: 50
dev.hwpstate_intel.11.epp: 50
dev.hwpstate_intel.10.epp: 50
dev.hwpstate_intel.9.epp: 50
dev.hwpstate_intel.8.epp: 50
dev.hwpstate_intel.7.epp: 50
dev.hwpstate_intel.6.epp: 50
dev.hwpstate_intel.5.epp: 50
dev.hwpstate_intel.4.epp: 50
dev.hwpstate_intel.3.epp: 50
dev.hwpstate_intel.2.epp: 50
dev.hwpstate_intel.1.epp: 50
dev.hwpstate_intel.0.epp: 50
dev.uart.1.pps_mode: 2
dev.uart.0.pps_mode: 2
dev.cpu.19.cx_lowest: C1
dev.cpu.19.freq: 2918
dev.cpu.18.cx_lowest: C1
dev.cpu.18.freq: 2816
dev.cpu.17.cx_lowest: C1
dev.cpu.17.freq: 2816
dev.cpu.16.cx_lowest: C1
dev.cpu.16.freq: 2457
dev.cpu.15.cx_lowest: C1
dev.cpu.15.freq: 2113
dev.cpu.14.cx_lowest: C1
dev.cpu.14.freq: 2113
dev.cpu.13.cx_lowest: C1
dev.cpu.13.freq: 2107
dev.cpu.12.cx_lowest: C1
dev.cpu.12.freq: 2011
dev.cpu.11.cx_lowest: C1
dev.cpu.11.freq: 2011
dev.cpu.10.cx_lowest: C1
dev.cpu.10.freq: 1911
dev.cpu.9.cx_lowest: C1
dev.cpu.9.freq: 1870
dev.cpu.8.cx_lowest: C1
dev.cpu.8.freq: 1809
dev.cpu.7.cx_lowest: C1
dev.cpu.7.freq: 1710
dev.cpu.6.cx_lowest: C1
dev.cpu.6.freq: 1710
dev.cpu.5.cx_lowest: C1
dev.cpu.5.freq: 1637
dev.cpu.4.cx_lowest: C1
dev.cpu.4.freq: 1608
dev.cpu.3.cx_lowest: C1
dev.cpu.3.freq: 1608
dev.cpu.2.cx_lowest: C1
dev.cpu.2.freq: 1509
dev.cpu.1.cx_lowest: C1
dev.cpu.1.freq: 1509
dev.cpu.0.cx_lowest: C1
dev.cpu.0.freq: 1509
dev.hdac.0.polling: 0
dev.hdac.0.pindump: 0
dev.hdac.0.wake: 0
dev.nvme.0.ioq7.dump_debug: 0
dev.nvme.0.ioq6.dump_debug: 0
dev.nvme.0.ioq5.dump_debug: 0
dev.nvme.0.ioq4.dump_debug: 0
dev.nvme.0.ioq3.dump_debug: 0
dev.nvme.0.ioq2.dump_debug: 0
dev.nvme.0.ioq1.dump_debug: 0
dev.nvme.0.ioq0.dump_debug: 0
dev.nvme.0.adminq.dump_debug: 0
dev.nvme.0.reset_stats: 0
dev.nvme.0.timeout_period: 30
dev.nvme.0.int_coal_threshold: 0
dev.nvme.0.int_coal_time: 0
dev.nvme.0.wake: 0
dev.igc.1.wake: 0
dev.igc.1.eee_control: 1
dev.igc.1.itr: 488
dev.igc.1.tx_abs_int_delay: 66
dev.igc.1.rx_abs_int_delay: 66
dev.igc.1.tx_int_delay: 66
dev.igc.1.rx_int_delay: 0
dev.igc.1.rs_dump: 0
dev.igc.1.fc: 3
dev.igc.1.debug: -1
dev.igc.1.nvm: -1
dev.igc.1.iflib.override_nrxds: 0
dev.igc.1.iflib.override_ntxds: 0
dev.igc.1.iflib.tx_abdicate: 0
dev.igc.1.iflib.rx_budget: 0
dev.igc.1.iflib.disable_msix: 0
dev.igc.1.iflib.override_qs_enable: 0
dev.igc.1.iflib.override_nrxqs: 0
dev.igc.1.iflib.override_ntxqs: 0
dev.igc.0.wake: 0
dev.igc.0.eee_control: 1
dev.igc.0.itr: 488
dev.igc.0.tx_abs_int_delay: 66
dev.igc.0.rx_abs_int_delay: 66
dev.igc.0.tx_int_delay: 66
dev.igc.0.rx_int_delay: 0
dev.igc.0.rs_dump: 0
dev.igc.0.fc: 3
dev.igc.0.debug: -1
dev.igc.0.nvm: -1
dev.igc.0.iflib.override_nrxds: 0
dev.igc.0.iflib.override_ntxds: 0
dev.igc.0.iflib.tx_abdicate: 0
dev.igc.0.iflib.rx_budget: 0
dev.igc.0.iflib.disable_msix: 0
dev.igc.0.iflib.override_qs_enable: 0
dev.igc.0.iflib.override_nrxqs: 0
dev.igc.0.iflib.override_ntxqs: 0
dev.xhci.1.wake: 0
dev.xhci.0.wake: 0
dev.ixl.1.link_active_on_if_down: 1
dev.ixl.1.eee.enable: 0
dev.ixl.1.fw_lldp: 1
dev.ixl.1.dynamic_tx_itr: 0
dev.ixl.1.dynamic_rx_itr: 0
dev.ixl.1.rx_itr: 62
dev.ixl.1.tx_itr: 122
dev.ixl.1.advertise_speed: 6
dev.ixl.1.fc: 0
dev.ixl.1.iflib.override_nrxds: 0
dev.ixl.1.iflib.override_ntxds: 0
dev.ixl.1.iflib.tx_abdicate: 0
dev.ixl.1.iflib.rx_budget: 0
dev.ixl.1.iflib.disable_msix: 0
dev.ixl.1.iflib.override_qs_enable: 0
dev.ixl.1.iflib.override_nrxqs: 0
dev.ixl.1.iflib.override_ntxqs: 0
dev.ixl.0.wake: 0
dev.ixl.0.link_active_on_if_down: 1
dev.ixl.0.eee.enable: 0
dev.ixl.0.fw_lldp: 1
dev.ixl.0.dynamic_tx_itr: 0
dev.ixl.0.dynamic_rx_itr: 0
dev.ixl.0.rx_itr: 62
dev.ixl.0.tx_itr: 122
dev.ixl.0.advertise_speed: 6
dev.ixl.0.fc: 0
dev.ixl.0.iflib.override_nrxds: 0
dev.ixl.0.iflib.override_ntxds: 0
dev.ixl.0.iflib.tx_abdicate: 0
dev.ixl.0.iflib.rx_budget: 0
dev.ixl.0.iflib.disable_msix: 0
dev.ixl.0.iflib.override_qs_enable: 0
dev.ixl.0.iflib.override_nrxqs: 0
dev.ixl.0.iflib.override_ntxqs: 0
dev.pci.6.wake: 0
dev.pci.5.wake: 0
dev.pci.4.wake: 0
dev.pci.3.wake: 0
dev.pci.2.wake: 0
dev.pci.1.wake: 0
dev.pcib.8.wake: 0
dev.pcib.7.wake: 0
dev.pcib.6.wake: 0
dev.pcib.5.wake: 0
dev.pcib.4.wake: 0
dev.pcib.3.wake: 0
dev.pcib.2.wake: 0
dev.pcib.1.wake: 0
dev.hpet.0.mmap_allow_write: 0
dev.hpet.0.mmap_allow: 1
dev.acpi_sysresource.0.wake: 0
dev.netmap.iflib_rx_miss_bufs: 0
dev.netmap.iflib_rx_miss: 0
dev.netmap.iflib_crcstrip: 1
dev.netmap.bridge_batch: 1024
dev.netmap.default_pipes: 0
dev.netmap.priv_buf_num: 4098
dev.netmap.priv_buf_size: 2048
dev.netmap.buf_num: 163840
dev.netmap.buf_size: 2048
dev.netmap.priv_ring_num: 4
dev.netmap.priv_ring_size: 20480
dev.netmap.ring_num: 200
dev.netmap.ring_size: 36864
dev.netmap.priv_if_num: 2
dev.netmap.priv_if_size: 1024
dev.netmap.if_num: 100
dev.netmap.if_size: 1024
dev.netmap.ptnet_vnet_hdr: 1
dev.netmap.generic_rings: 1
dev.netmap.generic_ringsize: 1024
dev.netmap.generic_mit: 100000
dev.netmap.generic_hwcsum: 0
dev.netmap.admode: 0
dev.netmap.fwd: 0
dev.netmap.txsync_retry: 2
dev.netmap.no_pendintr: 1
dev.netmap.no_timestamp: 0
dev.netmap.verbose: 0
security.mac.ntpd.uid: 123
security.mac.ntpd.enabled: 1
security.mac.mmap_revocation_via_cow: 0
security.mac.mmap_revocation: 1
security.bsd.stack_guard_page: 1
security.bsd.unprivileged_get_quota: 0
security.bsd.allow_read_dir: 0
security.bsd.hardlink_check_gid: 0
security.bsd.hardlink_check_uid: 0
security.bsd.unprivileged_chroot: 0
security.bsd.unprivileged_idprio: 0
security.bsd.allow_ptrace: 1
security.bsd.unprivileged_proc_debug: 1
security.bsd.conservative_signals: 1
security.bsd.see_jail_proc: 1
security.bsd.see_other_gids: 1
security.bsd.see_other_uids: 1
security.bsd.unprivileged_read_msgbuf: 1
security.bsd.unprivileged_mlock: 1
security.bsd.suser_enabled: 1
security.bsd.map_at_zero: 0
security.jail.mount_zfs_allowed: 0
security.jail.mount_tmpfs_allowed: 0
security.jail.mount_procfs_allowed: 0
security.jail.mount_devfs_allowed: 0
security.jail.param.zfs.mount_snapshot: 0
security.jail.param.zfs.: 0
security.jail.param.sysvshm.: 0
security.jail.param.sysvsem.: 0
security.jail.param.sysvmsg.: 0
security.jail.param.allow.mount.zfs: 0
security.jail.param.allow.mount.tmpfs: 0
security.jail.param.allow.mount.procfs: 0
security.jail.param.allow.mount.devfs: 0
security.jail.param.allow.mount.: 0
security.jail.param.allow.nfsd: 0
security.jail.param.allow.suser: 0
security.jail.param.allow.unprivileged_proc_debug: 0
security.jail.param.allow.read_msgbuf: 0
security.jail.param.allow.reserved_ports: 0
security.jail.param.allow.mlock: 0
security.jail.param.allow.socket_af: 0
security.jail.param.allow.quotas: 0
security.jail.param.allow.chflags: 0
security.jail.param.allow.raw_sockets: 0
security.jail.param.allow.sysvipc: 0
security.jail.param.allow.set_hostname: 0
security.jail.param.ip6.saddrsel: 0
security.jail.param.ip4.saddrsel: 0
security.jail.param.host.hostid: 0
security.jail.param.host.hostuuid: 64
security.jail.param.host.domainname: 256
security.jail.param.host.hostname: 256
security.jail.param.host.: 0
security.jail.param.children.max: 0
security.jail.param.persist: 0
security.jail.param.devfs_ruleset: 0
security.jail.param.enforce_statfs: 0
security.jail.param.securelevel: 0
security.jail.param.name: 256
security.jail.enforce_statfs: 2
security.jail.mount_allowed: 0
security.jail.chflags_allowed: 0
security.jail.allow_raw_sockets: 0
security.jail.sysvipc_allowed: 0
security.jail.socket_unixiproute_only: 1
security.jail.set_hostname_allowed: 1
security.jail.jail_max_af_ips: 255
compat.ia32.maxvmem: 0
compat.ia32.maxssiz: 67108864
compat.ia32.maxdsiz: 536870912
compat.linuxkpi.iwlwifi_uapsd_disable: 3
compat.linuxkpi.iwlwifi_debug: 0
compat.linuxkpi.net_ratelimit: 99
compat.linuxkpi.warn_dump_stack: 0
compat.linuxkpi.debug: 0
このウェブサイトはクッキーを使用しています。 Webサイトを使用することで、あなたはあなたのコンピュータにクッキーを保存することに同意します。 また、あなたはあなたが私たちのプライバシーポリシーを読んで理解したことを認めます。 同意しない場合はウェブサイトを離れてください。クッキーに関する詳細情報
tech/benchmark/ms-01.txt · 最終更新: 2024/05/15 04:00 by seirios

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki