Hello!

On a host with Invariant TSC, vmm advertises to the guest support for
cpuid leaves up to 0x15 (in the response to leaf 0x00), but when the
guest asks for leaves higher than the host's cpuid level,
vmm_handle_cpuid serves the response for host's highest cpuid leaf
instead.

A Linux guest asks for cpuid leaf 0x15 in native_calibrate_tsc[1] and it
instead gets the answer say for 0x0B because that is the host's cpuid
level.

[1] 
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/tree/arch/x86/kernel/tsc.c?h=52f6ded2a377#n628

The Linux guest then ends up using TSC as its clock source with a wild
conversion factor.  Its clock runs say 6 times slower than real-time.
A 10-second sleep takes 60 seconds and the clock drifts faster than ntpd
can correct.

The patch below moves the logic that decides to emulate cpuid leaves up
in the code, so that the advertisement agrees with what will be actually
handled.

That fixes the clock speed problem in a Linux guest under vmm on my
laptop.

The host (laptop) is "Intel(R) Celeron(R) CPU N2940 @ 1.83GHz, 1833.34
MHz, 06-37-08" running OpenBSD/amd64 6.8-current.  The CPU supports ITSC:

machdep.tscfreq=1833336925
machdep.invarianttsc=1

The host's cpuid_level is 11 (0x0B).

The guest is Linux 5.4.72 (from alpine-virt-3.12.1-x86_64.iso).  Without
this patch in vmm.c, the guest's clock source selection goes like this:

$ grep -i tsc linux_dmesg_before.txt
[    0.000000] tsc: Fast TSC calibration failed
[    0.020000] tsc: Using PIT calibration value
[    0.020000] tsc: Detected 11004.239 MHz processor
[    0.000002] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 
0x9e9ea4eaf13, max_idle_ns: 440795518199 ns
[    3.552382] clocksource: Switched to clocksource tsc-early
[    3.711267] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 
0x9e9ea4eaf13, max_idle_ns: 440795518199 ns
[    3.715133] clocksource: Switched to clocksource tsc

With the patch applied on the host, the Linux guest detects the correct CPU
speed and its clock runs at the correct speed:

$ grep -i tsc linux_dmesg_after.txt
[    0.000000] tsc: Fast TSC calibration failed
[    0.000000] tsc: Detected 1833.300 MHz processor
[    0.642162] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 
0x34da15b7553, max_idle_ns: 881590669491 ns
[    1.404442] clocksource: Switched to clocksource tsc-early
[    1.722187] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 
0x34da15b7553, max_idle_ns: 881590669491 ns
[    1.730739] clocksource: Switched to clocksource tsc


The patch is here inline.  Full dmesgs are attached.  Please let me know
what you think.  Thank you!


Index: ./arch/amd64/amd64/vmm.c
===================================================================
RCS file: /cvs/src/sys/arch/amd64/amd64/vmm.c,v
retrieving revision 1.274
diff -u -p -u -r1.274 vmm.c
--- ./arch/amd64/amd64/vmm.c    10 Sep 2020 17:03:03 -0000      1.274
+++ ./arch/amd64/amd64/vmm.c    28 Nov 2020 08:33:37 -0000
@@ -6592,6 +6592,7 @@ vmm_handle_cpuid(struct vcpu *vcpu)
        struct vmcb *vmcb;
        uint32_t eax, ebx, ecx, edx;
        struct vmx_msr_store *msr_store;
+       int vmm_cpuid_level;
 
        if (vmm_softc->mode == VMM_MODE_VMX ||
            vmm_softc->mode == VMM_MODE_EPT) {
@@ -6625,6 +6626,17 @@ vmm_handle_cpuid(struct vcpu *vcpu)
        vcpu->vc_gueststate.vg_rip += insn_length;
 
        /*
+        * If the host CPU does not implement the CPUID leaf 0x15
+        * ("Time Stamp Counter and Nominal Core Crystal Clock Information")
+        * and TSC is a reliable time source, then we will emulate the leaf
+        * for the guest.  This helps a Linux guest pick TSC as the clock 
source.
+        */
+       if (cpuid_level < 0x15 && tsc_is_invariant)
+               vmm_cpuid_level = 0x15;
+       else
+               vmm_cpuid_level = cpuid_level;
+
+       /*
         * "If a value entered for CPUID.EAX is higher than the maximum input
         *  value for basic or extended function for that processor then the
         *  data for the highest basic information leaf is returned."
@@ -6638,13 +6650,13 @@ vmm_handle_cpuid(struct vcpu *vcpu)
         * going to reassign it a new value (based on the input parameter)
         * later anyway.
         */
-       if ((*rax > cpuid_level && *rax < 0x40000000) ||
+       if ((*rax > vmm_cpuid_level && *rax < 0x40000000) ||
            (*rax > curcpu()->ci_pnfeatset)) {
                DPRINTF("%s: invalid cpuid input leaf 0x%llx, guest rip="
                    "0x%llx - resetting to 0x%x\n", __func__, *rax,
                    vcpu->vc_gueststate.vg_rip - insn_length,
-                   cpuid_level);
-               *rax = cpuid_level;
+                   vmm_cpuid_level);
+               *rax = vmm_cpuid_level;
        }
 
        /*
@@ -6664,10 +6676,7 @@ vmm_handle_cpuid(struct vcpu *vcpu)
 
        switch (*rax) {
        case 0x00:      /* Max level and vendor ID */
-               if (cpuid_level < 0x15 && tsc_is_invariant)
-                       *rax = 0x15;
-               else
-                       *rax = cpuid_level;
+               *rax = vmm_cpuid_level;
                *rbx = *((uint32_t *)&cpu_vendor);
                *rdx = *((uint32_t *)&cpu_vendor + 1);
                *rcx = *((uint32_t *)&cpu_vendor + 2);
OpenBSD 6.8-current (PATCHED.MP) #0: Fri Nov 27 20:05:00 PST 2020
    jozef@think.jhnet:/sys/arch/amd64/compile/PATCHED.MP
real mem = 8450998272 (8059MB)
avail mem = 8179576832 (7800MB)
random: good seed from bootblocks
mpath0 at root
scsibus0 at mpath0: 256 targets
mainbus0 at root
bios0 at mainbus0: SMBIOS rev. 2.7 @ 0xe0840 (40 entries)
bios0: vendor LENOVO version "N15ET65W (1.25)" date 09/15/2015
bios0: LENOVO 20D90020US
acpi0 at bios0: ACPI 5.0
acpi0: sleep states S0 S3 S4 S5
acpi0: tables DSDT FACP SLIC UEFI HPET LPIT APIC MCFG SSDT SSDT SSDT SSDT SSDT 
SSDT TCPA SSDT UEFI MSDM BATB FPDT UEFI
acpi0: wakeup devices RP01(S4) RP03(S4) RP04(S4) EHC1(S4) LID_(S4) SLPB(S3)
acpitimer0 at acpi0: 3579545 Hz, 24 bits
acpihpet0 at acpi0: 14318179 Hz
acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat
cpu0 at mainbus0: apid 0 (boot processor)
cpu0: Intel(R) Celeron(R) CPU N2940 @ 1.83GHz, 1833.68 MHz, 06-37-08
cpu0: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,SSE4.1,SSE4.2,MOVBE,POPCNT,DEADLINE,RDRAND,NXE,RDTSCP,LONG,LAHF,3DNOWP,PERF,ITSC,TSC_ADJUST,SMEP,ERMS,MD_CLEAR,IBRS,IBPB,STIBP,SENSOR,ARAT,MELTDOWN
cpu0: 1MB 64b/line 16-way L2 cache
cpu0: smt 0, core 0, package 0
mtrr: Pentium Pro MTRR support, 8 var ranges, 88 fixed ranges
cpu0: apic clock running at 83MHz
cpu0: mwait min=64, max=64, C-substates=0.2.0.0.0.0.3.3, IBE
cpu1 at mainbus0: apid 2 (application processor)
cpu1: Intel(R) Celeron(R) CPU N2940 @ 1.83GHz, 1833.36 MHz, 06-37-08
cpu1: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,SSE4.1,SSE4.2,MOVBE,POPCNT,DEADLINE,RDRAND,NXE,RDTSCP,LONG,LAHF,3DNOWP,PERF,ITSC,TSC_ADJUST,SMEP,ERMS,MD_CLEAR,IBRS,IBPB,STIBP,SENSOR,ARAT,MELTDOWN
cpu1: 1MB 64b/line 16-way L2 cache
cpu1: smt 0, core 1, package 0
cpu2 at mainbus0: apid 4 (application processor)
cpu2: Intel(R) Celeron(R) CPU N2940 @ 1.83GHz, 1833.37 MHz, 06-37-08
cpu2: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,SSE4.1,SSE4.2,MOVBE,POPCNT,DEADLINE,RDRAND,NXE,RDTSCP,LONG,LAHF,3DNOWP,PERF,ITSC,TSC_ADJUST,SMEP,ERMS,MD_CLEAR,IBRS,IBPB,STIBP,SENSOR,ARAT,MELTDOWN
cpu2: 1MB 64b/line 16-way L2 cache
cpu2: smt 0, core 2, package 0
cpu3 at mainbus0: apid 6 (application processor)
cpu3: Intel(R) Celeron(R) CPU N2940 @ 1.83GHz, 1833.36 MHz, 06-37-08
cpu3: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,SSE4.1,SSE4.2,MOVBE,POPCNT,DEADLINE,RDRAND,NXE,RDTSCP,LONG,LAHF,3DNOWP,PERF,ITSC,TSC_ADJUST,SMEP,ERMS,MD_CLEAR,IBRS,IBPB,STIBP,SENSOR,ARAT,MELTDOWN
cpu3: 1MB 64b/line 16-way L2 cache
cpu3: smt 0, core 3, package 0
ioapic0 at mainbus0: apid 2 pa 0xfec00000, version 20, 87 pins
acpimcfg0 at acpi0
acpimcfg0: addr 0xe0000000, bus 0-63
acpiprt0 at acpi0: bus 0 (PCI0)
acpiprt1 at acpi0: bus 2 (RP01)
acpiprt2 at acpi0: bus 4 (RP03)
acpiprt3 at acpi0: bus 5 (RP04)
acpiec0 at acpi0
"INT3396" at acpi0 not configured
acpicmos0 at acpi0
acpipci0 at acpi0 PCI0: 0x00000004 0x00000011 0x00000001
acpithinkpad0 at acpi0: version 1.0
"LEN0049" at acpi0 not configured
acpiac0 at acpi0: AC unit offline
acpibat0 at acpi0: BAT1 model "45N1749" serial  6345 type LiP oem "LGC"
acpibtn0 at acpi0: LID_
"PNP0C14" at acpi0 not configured
"PNP0C14" at acpi0 not configured
"PNP0C14" at acpi0 not configured
acpibtn1 at acpi0: PWRB
acpibtn2 at acpi0: SLPB
"BCM2E1A" at acpi0 not configured
"BCM4752" at acpi0 not configured
"INT33BD" at acpi0 not configured
"INT3401" at acpi0 not configured
"INT3400" at acpi0 not configured
tpm0 at acpi0 TPM_ addr 0xfed40000/0x5000, device 0x0000104a rev 0x4e
acpicpu0 at acpi0: C3(10@1500 mwait.1@0x52), C2(10@500 mwait.1@0x51), C1(1000@1 
mwait.1), PSS
acpicpu1 at acpi0: C3(10@1500 mwait.1@0x52), C2(10@500 mwait.1@0x51), C1(1000@1 
mwait.1), PSS
acpicpu2 at acpi0: C3(10@1500 mwait.1@0x52), C2(10@500 mwait.1@0x51), C1(1000@1 
mwait.1), PSS
acpicpu3 at acpi0: C3(10@1500 mwait.1@0x52), C2(10@500 mwait.1@0x51), C1(1000@1 
mwait.1), PSS
acpipwrres0 at acpi0: USBC, resource for OTG1, EHC1
acpitz0 at acpi0: critical temperature is 100 degC
acpivideo0 at acpi0: GFX0
acpivout0 at acpivideo0: DD1F
cpu0: using VERW MDS workaround
cpu0: Enhanced SpeedStep 1833 MHz: speeds: 1827, 1826, 1660, 1494, 1328, 1162, 
996, 830, 664, 498 MHz
pci0 at mainbus0 bus 0
pchb0 at pci0 dev 0 function 0 "Intel Bay Trail Host" rev 0x0e
inteldrm0 at pci0 dev 2 function 0 "Intel Bay Trail Video" rev 0x0e
drm0 at inteldrm0
inteldrm0: msi, VALLEYVIEW, gen 7
ahci0 at pci0 dev 19 function 0 "Intel Bay Trail AHCI" rev 0x0e: msi, AHCI 1.3
ahci0: port 0: 3.0Gb/s
scsibus1 at ahci0: 32 targets
sd0 at scsibus1 targ 0 lun 0: <ATA, SAMSUNG MZ7LN128, EMT0> naa.5002538d00000000
sd0: 122104MB, 512 bytes/sector, 250069680 sectors, thin
"Intel Bay Trail TXE" rev 0x0e at pci0 dev 26 function 0 not configured
azalia0 at pci0 dev 27 function 0 "Intel Bay Trail HD Audio" rev 0x0e: msi
azalia0: codecs: Realtek ALC283, Intel/0x2882, using Realtek ALC283
audio0 at azalia0
ppb0 at pci0 dev 28 function 0 "Intel Bay Trail PCIE" rev 0x0e: msi
pci1 at ppb0 bus 2
ppb1 at pci0 dev 28 function 2 "Intel Bay Trail PCIE" rev 0x0e: msi
pci2 at ppb1 bus 4
iwm0 at pci2 dev 0 function 0 "Intel Dual Band Wireless AC 7260" rev 0xc3, msi
ppb2 at pci0 dev 28 function 3 "Intel Bay Trail PCIE" rev 0x0e: msi
pci3 at ppb2 bus 5
re0 at pci3 dev 0 function 0 "Realtek 8168" rev 0x10: RTL8168GU/8111GU 
(0x5080), msi, address 54:ab:3a:29:b2:e2
rgephy0 at re0 phy 7: RTL8251 PHY, rev. 0
ehci0 at pci0 dev 29 function 0 "Intel Bay Trail EHCI" rev 0x0e: apic 2 int 23
usb0 at ehci0: USB revision 2.0
uhub0 at usb0 configuration 1 interface 0 "Intel EHCI root hub" rev 2.00/1.00 
addr 1
pcib0 at pci0 dev 31 function 0 "Intel Bay Trail LPC" rev 0x0e
ichiic0 at pci0 dev 31 function 3 "Intel Bay Trail SMBus" rev 0x0e: apic 2 int 
18
iic0 at ichiic0
iic0: addr 0x2c 80=04 81=04 82=04 83=04 84=04 85=04 86=04 87=04 fd=01 words 
00=ffff 01=ffff 02=ffff 03=ffff 04=ffff 05=ffff 06=ffff 07=ffff
spdmem0 at iic0 addr 0x50: 8GB DDR3 SDRAM PC3-12800 SO-DIMM
isa0 at pcib0
isadma0 at isa0
com0 at isa0 port 0x3f8/8 irq 4: ns16550a, 16 byte fifo
pckbc0 at isa0 port 0x60/5 irq 1 irq 12
pckbd0 at pckbc0 (kbd slot)
wskbd0 at pckbd0: console keyboard
pms0 at pckbc0 (aux slot)
wsmouse0 at pms0 mux 0
pms0: Synaptics clickpad, firmware 8.1, 0x1e2b1 0x840300 0x2ca440 0xd00123 
0x12e800
pcppi0 at isa0 port 0x61
spkr0 at pcppi0
vmm0 at mainbus0: VMX/EPT (using slow L1TF mitigation)
efifb at mainbus0 not configured
uhub1 at uhub0 port 1 configuration 1 interface 0 "Intel product 0x07e6" rev 
2.00/0.14 addr 2
uhub2 at uhub1 port 4 configuration 1 interface 0 "Genesys Logic USB2.0 Hub" 
rev 2.00/32.98 addr 3
uvideo0 at uhub2 port 2 configuration 1 interface 0 "SunplusIT Inc Integrated 
Camera" rev 2.00/0.09 addr 4
video0 at uvideo0
vscsi0 at root
scsibus2 at vscsi0: 256 targets
softraid0 at root
scsibus3 at softraid0: 256 targets
sd1 at scsibus3 targ 1 lun 0: <OPENBSD, SR CRYPTO, 006>
sd1: 121904MB, 512 bytes/sector, 249659425 sectors
root on sd1a (5f158d0263f96071.a) swap on sd1b dump on sd1b
inteldrm0: 1366x768, 32bpp
wsdisplay0 at inteldrm0 mux 1: console (std, vt100 emulation), using wskbd0
wsdisplay0: screen 1-5 added (std, vt100 emulation)
iwm0: hw rev 0x140, fw ver 17.3216344376.0, address 4c:eb:42:c2:3c:6f
OpenBSD 6.8-current (PATCHED.MP) #5: Sat Nov 28 00:34:52 PST 2020
    jozef@think.jhnet:/usr/src/sys/arch/amd64/compile/PATCHED.MP
real mem = 8450998272 (8059MB)
avail mem = 8179576832 (7800MB)
random: good seed from bootblocks
mpath0 at root
scsibus0 at mpath0: 256 targets
mainbus0 at root
bios0 at mainbus0: SMBIOS rev. 2.7 @ 0xe0840 (40 entries)
bios0: vendor LENOVO version "N15ET65W (1.25)" date 09/15/2015
bios0: LENOVO 20D90020US
acpi0 at bios0: ACPI 5.0
acpi0: sleep states S0 S3 S4 S5
acpi0: tables DSDT FACP SLIC UEFI HPET LPIT APIC MCFG SSDT SSDT SSDT SSDT SSDT 
SSDT TCPA SSDT UEFI MSDM BATB FPDT UEFI
acpi0: wakeup devices RP01(S4) RP03(S4) RP04(S4) EHC1(S4) LID_(S4) SLPB(S3)
acpitimer0 at acpi0: 3579545 Hz, 24 bits
acpihpet0 at acpi0: 14318179 Hz
acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat
cpu0 at mainbus0: apid 0 (boot processor)
cpu0: Intel(R) Celeron(R) CPU N2940 @ 1.83GHz, 1833.67 MHz, 06-37-08
cpu0: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,SSE4.1,SSE4.2,MOVBE,POPCNT,DEADLINE,RDRAND,NXE,RDTSCP,LONG,LAHF,3DNOWP,PERF,ITSC,TSC_ADJUST,SMEP,ERMS,MD_CLEAR,IBRS,IBPB,STIBP,SENSOR,ARAT,MELTDOWN
cpu0: 1MB 64b/line 16-way L2 cache
cpu0: smt 0, core 0, package 0
mtrr: Pentium Pro MTRR support, 8 var ranges, 88 fixed ranges
cpu0: apic clock running at 83MHz
cpu0: mwait min=64, max=64, C-substates=0.2.0.0.0.0.3.3, IBE
cpu1 at mainbus0: apid 2 (application processor)
cpu1: Intel(R) Celeron(R) CPU N2940 @ 1.83GHz, 1833.34 MHz, 06-37-08
cpu1: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,SSE4.1,SSE4.2,MOVBE,POPCNT,DEADLINE,RDRAND,NXE,RDTSCP,LONG,LAHF,3DNOWP,PERF,ITSC,TSC_ADJUST,SMEP,ERMS,MD_CLEAR,IBRS,IBPB,STIBP,SENSOR,ARAT,MELTDOWN
cpu1: 1MB 64b/line 16-way L2 cache
cpu1: smt 0, core 1, package 0
cpu2 at mainbus0: apid 4 (application processor)
cpu2: Intel(R) Celeron(R) CPU N2940 @ 1.83GHz, 1833.35 MHz, 06-37-08
cpu2: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,SSE4.1,SSE4.2,MOVBE,POPCNT,DEADLINE,RDRAND,NXE,RDTSCP,LONG,LAHF,3DNOWP,PERF,ITSC,TSC_ADJUST,SMEP,ERMS,MD_CLEAR,IBRS,IBPB,STIBP,SENSOR,ARAT,MELTDOWN
cpu2: 1MB 64b/line 16-way L2 cache
cpu2: smt 0, core 2, package 0
cpu3 at mainbus0: apid 6 (application processor)
cpu3: Intel(R) Celeron(R) CPU N2940 @ 1.83GHz, 1833.35 MHz, 06-37-08
cpu3: 
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,SSE4.1,SSE4.2,MOVBE,POPCNT,DEADLINE,RDRAND,NXE,RDTSCP,LONG,LAHF,3DNOWP,PERF,ITSC,TSC_ADJUST,SMEP,ERMS,MD_CLEAR,IBRS,IBPB,STIBP,SENSOR,ARAT,MELTDOWN
cpu3: 1MB 64b/line 16-way L2 cache
cpu3: smt 0, core 3, package 0
ioapic0 at mainbus0: apid 2 pa 0xfec00000, version 20, 87 pins
acpimcfg0 at acpi0
acpimcfg0: addr 0xe0000000, bus 0-63
acpiprt0 at acpi0: bus 0 (PCI0)
acpiprt1 at acpi0: bus 2 (RP01)
acpiprt2 at acpi0: bus 4 (RP03)
acpiprt3 at acpi0: bus 5 (RP04)
acpiec0 at acpi0
"INT3396" at acpi0 not configured
acpicmos0 at acpi0
acpipci0 at acpi0 PCI0: 0x00000004 0x00000011 0x00000001
acpithinkpad0 at acpi0: version 1.0
"LEN0049" at acpi0 not configured
acpiac0 at acpi0: AC unit online
acpibat0 at acpi0: BAT1 model "45N1749" serial  6345 type LiP oem "LGC"
acpibtn0 at acpi0: LID_
"PNP0C14" at acpi0 not configured
"PNP0C14" at acpi0 not configured
"PNP0C14" at acpi0 not configured
acpibtn1 at acpi0: PWRB
acpibtn2 at acpi0: SLPB
"BCM2E1A" at acpi0 not configured
"BCM4752" at acpi0 not configured
"INT33BD" at acpi0 not configured
"INT3401" at acpi0 not configured
"INT3400" at acpi0 not configured
tpm0 at acpi0 TPM_ addr 0xfed40000/0x5000, device 0x0000104a rev 0x4e
acpicpu0 at acpi0: C3(10@1500 mwait.1@0x52), C2(10@500 mwait.1@0x51), C1(1000@1 
mwait.1), PSS
acpicpu1 at acpi0: C3(10@1500 mwait.1@0x52), C2(10@500 mwait.1@0x51), C1(1000@1 
mwait.1), PSS
acpicpu2 at acpi0: C3(10@1500 mwait.1@0x52), C2(10@500 mwait.1@0x51), C1(1000@1 
mwait.1), PSS
acpicpu3 at acpi0: C3(10@1500 mwait.1@0x52), C2(10@500 mwait.1@0x51), C1(1000@1 
mwait.1), PSS
acpipwrres0 at acpi0: USBC, resource for OTG1, EHC1
acpitz0 at acpi0: critical temperature is 100 degC
acpivideo0 at acpi0: GFX0
acpivout0 at acpivideo0: DD1F
cpu0: using VERW MDS workaround
cpu0: Enhanced SpeedStep 1833 MHz: speeds: 1827, 1826, 1660, 1494, 1328, 1162, 
996, 830, 664, 498 MHz
pci0 at mainbus0 bus 0
pchb0 at pci0 dev 0 function 0 "Intel Bay Trail Host" rev 0x0e
inteldrm0 at pci0 dev 2 function 0 "Intel Bay Trail Video" rev 0x0e
drm0 at inteldrm0
inteldrm0: msi, VALLEYVIEW, gen 7
ahci0 at pci0 dev 19 function 0 "Intel Bay Trail AHCI" rev 0x0e: msi, AHCI 1.3
ahci0: port 0: 3.0Gb/s
scsibus1 at ahci0: 32 targets
sd0 at scsibus1 targ 0 lun 0: <ATA, SAMSUNG MZ7LN128, EMT0> naa.5002538d00000000
sd0: 122104MB, 512 bytes/sector, 250069680 sectors, thin
"Intel Bay Trail TXE" rev 0x0e at pci0 dev 26 function 0 not configured
azalia0 at pci0 dev 27 function 0 "Intel Bay Trail HD Audio" rev 0x0e: msi
azalia0: codecs: Realtek ALC283, Intel/0x2882, using Realtek ALC283
audio0 at azalia0
ppb0 at pci0 dev 28 function 0 "Intel Bay Trail PCIE" rev 0x0e: msi
pci1 at ppb0 bus 2
ppb1 at pci0 dev 28 function 2 "Intel Bay Trail PCIE" rev 0x0e: msi
pci2 at ppb1 bus 4
iwm0 at pci2 dev 0 function 0 "Intel Dual Band Wireless AC 7260" rev 0xc3, msi
ppb2 at pci0 dev 28 function 3 "Intel Bay Trail PCIE" rev 0x0e: msi
pci3 at ppb2 bus 5
re0 at pci3 dev 0 function 0 "Realtek 8168" rev 0x10: RTL8168GU/8111GU 
(0x5080), msi, address 54:ab:3a:29:b2:e2
rgephy0 at re0 phy 7: RTL8251 PHY, rev. 0
ehci0 at pci0 dev 29 function 0 "Intel Bay Trail EHCI" rev 0x0e: apic 2 int 23
usb0 at ehci0: USB revision 2.0
uhub0 at usb0 configuration 1 interface 0 "Intel EHCI root hub" rev 2.00/1.00 
addr 1
pcib0 at pci0 dev 31 function 0 "Intel Bay Trail LPC" rev 0x0e
ichiic0 at pci0 dev 31 function 3 "Intel Bay Trail SMBus" rev 0x0e: apic 2 int 
18
iic0 at ichiic0
iic0: addr 0x2c 80=04 81=04 82=04 83=04 84=04 85=04 86=04 87=04 fd=01 words 
00=ffff 01=ffff 02=ffff 03=ffff 04=ffff 05=ffff 06=ffff 07=ffff
spdmem0 at iic0 addr 0x50: 8GB DDR3 SDRAM PC3-12800 SO-DIMM
isa0 at pcib0
isadma0 at isa0
com0 at isa0 port 0x3f8/8 irq 4: ns16550a, 16 byte fifo
pckbc0 at isa0 port 0x60/5 irq 1 irq 12
pckbd0 at pckbc0 (kbd slot)
wskbd0 at pckbd0: console keyboard
pms0 at pckbc0 (aux slot)
wsmouse0 at pms0 mux 0
pms0: Synaptics clickpad, firmware 8.1, 0x1e2b1 0x840300 0x2ca440 0xd00123 
0x12e800
pcppi0 at isa0 port 0x61
spkr0 at pcppi0
vmm0 at mainbus0: VMX/EPT (using slow L1TF mitigation)
efifb at mainbus0 not configured
uhub1 at uhub0 port 1 configuration 1 interface 0 "Intel product 0x07e6" rev 
2.00/0.14 addr 2
uhub2 at uhub1 port 4 configuration 1 interface 0 "Genesys Logic USB2.0 Hub" 
rev 2.00/32.98 addr 3
uvideo0 at uhub2 port 2 configuration 1 interface 0 "SunplusIT Inc Integrated 
Camera" rev 2.00/0.09 addr 4
video0 at uvideo0
vscsi0 at root
scsibus2 at vscsi0: 256 targets
softraid0 at root
scsibus3 at softraid0: 256 targets
sd1 at scsibus3 targ 1 lun 0: <OPENBSD, SR CRYPTO, 006>
sd1: 121904MB, 512 bytes/sector, 249659425 sectors
root on sd1a (5f158d0263f96071.a) swap on sd1b dump on sd1b
inteldrm0: 1366x768, 32bpp
wsdisplay0 at inteldrm0 mux 1: console (std, vt100 emulation), using wskbd0
wsdisplay0: screen 1-5 added (std, vt100 emulation)
iwm0: hw rev 0x140, fw ver 17.3216344376.0, address 4c:eb:42:c2:3c:6f
kern.ostype=OpenBSD
kern.osrelease=6.8
kern.osrevision=202010
kern.version=OpenBSD 6.8-current (PATCHED.MP) #5: Sat Nov 28 00:34:52 PST 2020
    jozef@think.jhnet:/usr/src/sys/arch/amd64/compile/PATCHED.MP

kern.maxvnodes=6407
kern.maxproc=1310
kern.maxfiles=7030
kern.argmax=524288
kern.securelevel=1
kern.hostname=think.jhnet
kern.hostid=0
kern.clockrate=tick = 10000, tickadj = 40, hz = 100, profhz = 100, stathz = 100
kern.posix1version=200809
kern.ngroups=16
kern.job_control=1
kern.saved_ids=1
kern.boottime=Sat Nov 28 15:45:22 2020
kern.domainname=
kern.maxpartitions=16
kern.rawpartition=2
kern.maxthread=1950
kern.nthreads=105
kern.osversion=PATCHED.MP#5
kern.somaxconn=128
kern.sominconn=80
kern.nosuidcoredump=1
kern.fsync=1
kern.sysvmsg=1
kern.sysvsem=1
kern.sysvshm=1
kern.msgbufsize=131032
kern.malloc.buckets=16,32,64,128,256,512,1024,2048,4096,8192,16384,32768,65536,131072,262144,524288
kern.malloc.bucket.16=(calls = 9463 total_allocated = 1024 total_free = 187 
elements = 256 high watermark = 1280 could_free = 0)
kern.malloc.bucket.32=(calls = 7628 total_allocated = 1408 total_free = 153 
elements = 128 high watermark = 640 could_free = 0)
kern.malloc.bucket.64=(calls = 6673 total_allocated = 2176 total_free = 71 
elements = 64 high watermark = 320 could_free = 0)
kern.malloc.bucket.128=(calls = 36180 total_allocated = 8608 total_free = 57 
elements = 32 high watermark = 160 could_free = 556)
kern.malloc.bucket.256=(calls = 3732 total_allocated = 224 total_free = 24 
elements = 16 high watermark = 80 could_free = 0)
kern.malloc.bucket.512=(calls = 3848 total_allocated = 192 total_free = 25 
elements = 8 high watermark = 40 could_free = 0)
kern.malloc.bucket.1024=(calls = 4082 total_allocated = 2668 total_free = 5 
elements = 4 high watermark = 20 could_free = 0)
kern.malloc.bucket.2048=(calls = 2841 total_allocated = 1096 total_free = 2 
elements = 2 high watermark = 10 could_free = 0)
kern.malloc.bucket.4096=(calls = 1448 total_allocated = 60 total_free = 2 
elements = 1 high watermark = 5 could_free = 0)
kern.malloc.bucket.8192=(calls = 428 total_allocated = 49 total_free = 1 
elements = 1 high watermark = 5 could_free = 0)
kern.malloc.bucket.16384=(calls = 666 total_allocated = 22 total_free = 0 
elements = 1 high watermark = 5 could_free = 0)
kern.malloc.bucket.32768=(calls = 34 total_allocated = 14 total_free = 0 
elements = 1 high watermark = 5 could_free = 0)
kern.malloc.bucket.65536=(calls = 745 total_allocated = 6 total_free = 0 
elements = 1 high watermark = 5 could_free = 0)
kern.malloc.bucket.131072=(calls = 1 total_allocated = 1 total_free = 0 
elements = 1 high watermark = 5 could_free = 0)
kern.malloc.bucket.262144=(calls = 7 total_allocated = 7 total_free = 0 
elements = 1 high watermark = 5 could_free = 0)
kern.malloc.bucket.524288=(calls = 5 total_allocated = 5 total_free = 0 
elements = 1 high watermark = 5 could_free = 0)
kern.malloc.kmemnames=free,,devbuf,,pcb,rtable,,,,ifaddr,soopts,sysctl,counters,,ioctlops,,,,,iov,mount,,NFS_req,NFS_mount,,vnodes,namecache,UFS_quota,UFS_mount,shm,VM_map,sem,dirhash,ACPI,VM_pmap,,,,file,file_desc,sigio,proc,subproc,VFS_cluster,,,MFS_node,,,Export_Host,NFS_srvsock,,NFS_daemon,ip_moptions,in_multi,ether_multi,mrt,ISOFS_mount,ISOFS_node,MSDOSFS_mount,MSDOSFS_fat,MSDOSFS_node,ttys,exec,miscfs_mount,fusefs_mount,,,,,,,,,pfkey_data,tdb,xform_data,,pagedep,inodedep,newblk,,,indirdep,,,,,,,,,VM_swap,,,,,,UVM_amap,UVM_aobj,,USB,USB_device,USB_HC,witness,memdesc,,,crypto_data,,IPsec_creds,,,,emuldata,,,,,,,,,ip6_options,NDP,,,temp,NTFS_mount,NTFS_node,NTFS_fnode,NTFS_dir,NTFS_hash,NTFS_attr,NTFS_data,NTFS_decomp,NTFS_vrun,kqueue,,SYN_cache,UDF_mount,UDF_file_entry,UDF_file_id,,AGP_Memory,DRM
kern.malloc.kmemstat.free=(inuse = 0, calls = 0, memuse = 0K, limblocks = 0, 
maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.devbuf=(inuse = 5597, calls = 6617, memuse = 9806K, 
limblocks = 0, maxused = 9806K, limit = 78644K, spare = 0, sizes = 
(16,32,64,128,256,512,1024,2048,4096,8192,16384,32768,65536,131072,262144,524288))
kern.malloc.kmemstat.pcb=(inuse = 13, calls = 13, memuse = 9K, limblocks = 0, 
maxused = 9K, limit = 78644K, spare = 0, sizes = (16,32,1024))
kern.malloc.kmemstat.rtable=(inuse = 80, calls = 474, memuse = 4K, limblocks = 
0, maxused = 5K, limit = 78644K, spare = 0, sizes = (16,32,64,128,256))
kern.malloc.kmemstat.ifaddr=(inuse = 162, calls = 163, memuse = 18K, limblocks 
= 0, maxused = 18K, limit = 78644K, spare = 0, sizes = (32,64,128,256,4096))
kern.malloc.kmemstat.soopts=(inuse = 0, calls = 0, memuse = 0K, limblocks = 0, 
maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.sysctl=(inuse = 3, calls = 3, memuse = 2K, limblocks = 0, 
maxused = 2K, limit = 78644K, spare = 0, sizes = (64,256,1024))
kern.malloc.kmemstat.counters=(inuse = 83, calls = 83, memuse = 68K, limblocks 
= 0, maxused = 68K, limit = 78644K, spare = 0, sizes = 
(64,128,256,512,1024,4096,8192))
kern.malloc.kmemstat.ioctlops=(inuse = 0, calls = 1490, memuse = 0K, limblocks 
= 0, maxused = 4K, limit = 78644K, spare = 0, sizes = (256,512,1024,2048,4096))
kern.malloc.kmemstat.iov=(inuse = 0, calls = 0, memuse = 0K, limblocks = 0, 
maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.mount=(inuse = 10, calls = 11, memuse = 10K, limblocks = 
0, maxused = 10K, limit = 78644K, spare = 0, sizes = (1024))
kern.malloc.kmemstat.NFS_req=(inuse = 0, calls = 0, memuse = 0K, limblocks = 0, 
maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.NFS_mount=(inuse = 0, calls = 0, memuse = 0K, limblocks = 
0, maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.vnodes=(inuse = 1192, calls = 1204, memuse = 76K, 
limblocks = 0, maxused = 76K, limit = 78644K, spare = 0, sizes = (64,128,256))
kern.malloc.kmemstat.namecache=(inuse = 0, calls = 0, memuse = 0K, limblocks = 
0, maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.UFS_quota=(inuse = 1, calls = 1, memuse = 32K, limblocks = 
0, maxused = 32K, limit = 78644K, spare = 0, sizes = (32768))
kern.malloc.kmemstat.UFS_mount=(inuse = 41, calls = 45, memuse = 83K, limblocks 
= 0, maxused = 83K, limit = 78644K, spare = 0, sizes = 
(16,32,128,512,1024,2048,8192,32768))
kern.malloc.kmemstat.shm=(inuse = 5, calls = 16, memuse = 14K, limblocks = 0, 
maxused = 22K, limit = 78644K, spare = 0, sizes = (256,1024,4096))
kern.malloc.kmemstat.VM_map=(inuse = 2, calls = 2, memuse = 1K, limblocks = 0, 
maxused = 1K, limit = 78644K, spare = 0, sizes = (256))
kern.malloc.kmemstat.sem=(inuse = 2, calls = 2, memuse = 1K, limblocks = 0, 
maxused = 1K, limit = 78644K, spare = 0, sizes = (32,128))
kern.malloc.kmemstat.dirhash=(inuse = 66, calls = 66, memuse = 15K, limblocks = 
0, maxused = 15K, limit = 78644K, spare = 0, sizes = (16,32,64,128,256,512))
kern.malloc.kmemstat.ACPI=(inuse = 7734, calls = 31137, memuse = 897K, 
limblocks = 0, maxused = 914K, limit = 78644K, spare = 0, sizes = 
(16,32,64,128,256,512,2048,4096))
kern.malloc.kmemstat.VM_pmap=(inuse = 0, calls = 0, memuse = 0K, limblocks = 0, 
maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.file=(inuse = 0, calls = 0, memuse = 0K, limblocks = 0, 
maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.file_desc=(inuse = 2, calls = 3, memuse = 1K, limblocks = 
0, maxused = 2K, limit = 78644K, spare = 0, sizes = (512))
kern.malloc.kmemstat.sigio=(inuse = 0, calls = 0, memuse = 0K, limblocks = 0, 
maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.proc=(inuse = 231, calls = 922, memuse = 110K, limblocks = 
0, maxused = 119K, limit = 78644K, spare = 0, sizes = (16,32,64,1024,4096,8192))
kern.malloc.kmemstat.subproc=(inuse = 0, calls = 0, memuse = 0K, limblocks = 0, 
maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.VFS_cluster=(inuse = 0, calls = 0, memuse = 0K, limblocks 
= 0, maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.MFS_node=(inuse = 2, calls = 2, memuse = 1K, limblocks = 
0, maxused = 1K, limit = 78644K, spare = 0, sizes = (128))
kern.malloc.kmemstat.Export_Host=(inuse = 0, calls = 0, memuse = 0K, limblocks 
= 0, maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.NFS_srvsock=(inuse = 1, calls = 1, memuse = 1K, limblocks 
= 0, maxused = 1K, limit = 78644K, spare = 0, sizes = (128))
kern.malloc.kmemstat.NFS_daemon=(inuse = 1, calls = 1, memuse = 16K, limblocks 
= 0, maxused = 16K, limit = 78644K, spare = 0, sizes = (16384))
kern.malloc.kmemstat.ip_moptions=(inuse = 0, calls = 0, memuse = 0K, limblocks 
= 0, maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.in_multi=(inuse = 18, calls = 18, memuse = 2K, limblocks = 
0, maxused = 2K, limit = 78644K, spare = 0, sizes = (32,64,128))
kern.malloc.kmemstat.ether_multi=(inuse = 3, calls = 3, memuse = 1K, limblocks 
= 0, maxused = 1K, limit = 78644K, spare = 0, sizes = (32))
kern.malloc.kmemstat.mrt=(inuse = 0, calls = 0, memuse = 0K, limblocks = 0, 
maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.ISOFS_mount=(inuse = 1, calls = 1, memuse = 32K, limblocks 
= 0, maxused = 32K, limit = 78644K, spare = 0, sizes = (32768))
kern.malloc.kmemstat.ISOFS_node=(inuse = 0, calls = 0, memuse = 0K, limblocks = 
0, maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.MSDOSFS_mount=(inuse = 1, calls = 1, memuse = 16K, 
limblocks = 0, maxused = 16K, limit = 78644K, spare = 0, sizes = (16384))
kern.malloc.kmemstat.MSDOSFS_fat=(inuse = 0, calls = 0, memuse = 0K, limblocks 
= 0, maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.MSDOSFS_node=(inuse = 0, calls = 0, memuse = 0K, limblocks 
= 0, maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.ttys=(inuse = 67, calls = 67, memuse = 230K, limblocks = 
0, maxused = 230K, limit = 78644K, spare = 0, sizes = 
(512,1024,4096,8192,16384))
kern.malloc.kmemstat.exec=(inuse = 0, calls = 664, memuse = 0K, limblocks = 0, 
maxused = 3K, limit = 78644K, spare = 0, sizes = (16,32,256,1024))
kern.malloc.kmemstat.miscfs_mount=(inuse = 0, calls = 0, memuse = 0K, limblocks 
= 0, maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.fusefs_mount=(inuse = 0, calls = 0, memuse = 0K, limblocks 
= 0, maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.pfkey_data=(inuse = 0, calls = 0, memuse = 0K, limblocks = 
0, maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.tdb=(inuse = 0, calls = 0, memuse = 0K, limblocks = 0, 
maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.xform_data=(inuse = 0, calls = 0, memuse = 0K, limblocks = 
0, maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.pagedep=(inuse = 1, calls = 1, memuse = 8K, limblocks = 0, 
maxused = 8K, limit = 78644K, spare = 0, sizes = (8192))
kern.malloc.kmemstat.inodedep=(inuse = 1, calls = 1, memuse = 32K, limblocks = 
0, maxused = 32K, limit = 78644K, spare = 0, sizes = (32768))
kern.malloc.kmemstat.newblk=(inuse = 1, calls = 1, memuse = 1K, limblocks = 0, 
maxused = 1K, limit = 78644K, spare = 0, sizes = (512))
kern.malloc.kmemstat.indirdep=(inuse = 0, calls = 0, memuse = 0K, limblocks = 
0, maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.VM_swap=(inuse = 7, calls = 7, memuse = 579K, limblocks = 
0, maxused = 579K, limit = 78644K, spare = 0, sizes = 
(16,64,2048,262144,524288))
kern.malloc.kmemstat.UVM_amap=(inuse = 332, calls = 3287, memuse = 32K, 
limblocks = 0, maxused = 42K, limit = 78644K, spare = 0, sizes = 
(16,32,64,128,256,8192,16384))
kern.malloc.kmemstat.UVM_aobj=(inuse = 57, calls = 385, memuse = 10K, limblocks 
= 0, maxused = 12K, limit = 78644K, spare = 0, sizes = 
(16,32,64,128,256,512,1024,2048))
kern.malloc.kmemstat.USB=(inuse = 52, calls = 60, memuse = 19K, limblocks = 0, 
maxused = 19K, limit = 78644K, spare = 0, sizes = 
(16,32,64,128,256,1024,2048,8192))
kern.malloc.kmemstat.USB_device=(inuse = 12, calls = 12, memuse = 2K, limblocks 
= 0, maxused = 2K, limit = 78644K, spare = 0, sizes = (16,32,256,512))
kern.malloc.kmemstat.USB_HC=(inuse = 0, calls = 0, memuse = 0K, limblocks = 0, 
maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.witness=(inuse = 0, calls = 0, memuse = 0K, limblocks = 0, 
maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.memdesc=(inuse = 1, calls = 1, memuse = 4K, limblocks = 0, 
maxused = 4K, limit = 78644K, spare = 0, sizes = (4096))
kern.malloc.kmemstat.crypto_data=(inuse = 20, calls = 20, memuse = 259K, 
limblocks = 0, maxused = 259K, limit = 78644K, spare = 0, sizes = 
(64,256,1024,16384))
kern.malloc.kmemstat.IPsec_creds=(inuse = 0, calls = 0, memuse = 0K, limblocks 
= 0, maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.emuldata=(inuse = 0, calls = 0, memuse = 0K, limblocks = 
0, maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.ip6_options=(inuse = 0, calls = 0, memuse = 0K, limblocks 
= 0, maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.NDP=(inuse = 6, calls = 6, memuse = 1K, limblocks = 0, 
maxused = 1K, limit = 78644K, spare = 0, sizes = (32))
kern.malloc.kmemstat.temp=(inuse = 37, calls = 11205, memuse = 3941K, limblocks 
= 0, maxused = 4068K, limit = 78644K, spare = 0, sizes = 
(16,32,64,128,256,512,1024,2048,4096,8192,16384,65536,524288))
kern.malloc.kmemstat.NTFS_mount=(inuse = 0, calls = 0, memuse = 0K, limblocks = 
0, maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.NTFS_node=(inuse = 0, calls = 0, memuse = 0K, limblocks = 
0, maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.NTFS_fnode=(inuse = 0, calls = 0, memuse = 0K, limblocks = 
0, maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.NTFS_dir=(inuse = 0, calls = 0, memuse = 0K, limblocks = 
0, maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.NTFS_hash=(inuse = 0, calls = 0, memuse = 0K, limblocks = 
0, maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.NTFS_attr=(inuse = 0, calls = 0, memuse = 0K, limblocks = 
0, maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.NTFS_data=(inuse = 0, calls = 0, memuse = 0K, limblocks = 
0, maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.NTFS_decomp=(inuse = 0, calls = 0, memuse = 0K, limblocks 
= 0, maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.NTFS_vrun=(inuse = 0, calls = 0, memuse = 0K, limblocks = 
0, maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.kqueue=(inuse = 30, calls = 31, memuse = 44K, limblocks = 
0, maxused = 44K, limit = 78644K, spare = 0, sizes = (512,2048))
kern.malloc.kmemstat.SYN_cache=(inuse = 2, calls = 2, memuse = 16K, limblocks = 
0, maxused = 16K, limit = 78644K, spare = 0, sizes = (8192))
kern.malloc.kmemstat.UDF_mount=(inuse = 0, calls = 0, memuse = 0K, limblocks = 
0, maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.UDF_file_entry=(inuse = 0, calls = 0, memuse = 0K, 
limblocks = 0, maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.UDF_file_id=(inuse = 0, calls = 0, memuse = 0K, limblocks 
= 0, maxused = 0K, limit = 78644K, spare = 0, sizes = (none))
kern.malloc.kmemstat.AGP_Memory=(inuse = 1, calls = 1, memuse = 1K, limblocks = 
0, maxused = 1K, limit = 78644K, spare = 0, sizes = (32))
kern.malloc.kmemstat.DRM=(inuse = 1155, calls = 19751, memuse = 393K, limblocks 
= 0, maxused = 513K, limit = 78644K, spare = 0, sizes = 
(16,32,64,128,256,512,1024,2048,4096,8192,16384,32768,65536))
kern.cp_time=635,0,1183,197,11,18407
kern.nchstats.good_hits=91122
kern.nchstats.negative_hits=1736
kern.nchstats.bad_hits=95
kern.nchstats.false_hits=1
kern.nchstats.misses=5301
kern.nchstats.long_names=336
kern.nchstats.pass2=145
kern.nchstats.2passes=268
kern.nchstats.ncs_revhits=134
kern.nchstats.ncs_revmiss=0
kern.nchstats.ncs_dothits=0
kern.nchstats.nch_dotdothits=0
kern.forkstat.forks=413
kern.forkstat.vforks=4
kern.forkstat.tforks=3
kern.forkstat.kthreads=45
kern.forkstat.fork_pages=10193
kern.forkstat.vfork_pages=26
kern.forkstat.tfork_pages=0
kern.forkstat.kthread_pages=0
kern.nselcoll=0
kern.tty.tk_nin=20201
kern.tty.tk_nout=28793
kern.tty.tk_rawcc=20200
kern.tty.tk_cancc=1
kern.ccpu=1948
kern.fscale=2048
kern.nprocs=102
kern.stackgap_random=262144
kern.allowkmem=0
kern.splassert=1
kern.nfiles=210
kern.ttycount=11
kern.numvnodes=2789
kern.seminfo.semmni=10
kern.seminfo.semmns=60
kern.seminfo.semmnu=30
kern.seminfo.semmsl=60
kern.seminfo.semopm=100
kern.seminfo.semume=10
kern.seminfo.semusz=112
kern.seminfo.semvmx=32767
kern.seminfo.semaem=16384
kern.shminfo.shmmax=33554432
kern.shminfo.shmmin=1
kern.shminfo.shmmni=128
kern.shminfo.shmseg=128
kern.shminfo.shmall=8192
kern.allowdt=0
kern.maxclusters=262144
kern.timecounter.tick=1
kern.timecounter.timestepwarnings=0
kern.timecounter.hardware=tsc
kern.timecounter.choice=i8254(0) tsc(2000) acpihpet0(1000) acpitimer0(1000)
kern.maxlocksperuid=1024
kern.bufcachepercent=20
kern.wxabort=0
kern.consdev=ttyC0
kern.netlivelocks=0
kern.pool_debug=1
kern.global_ptrace=0
kern.consbufsize=16344
kern.audio.record=0
kern.timeout_stats=added = 65730, cancelled = 17574, deleted = 18479, late = 
25, pending = 40, readded = 12642, scheduled = 17528, rescheduled = 301, 
run_softclock = 33811, run_thread = 1663, softclocks = 20645, thread_wakeups = 
1539
kern.utc_offset=0
vm.loadavg=0.15 0.12 0.05
vm.psstrings=0x7f7ffffece70
vm.swapencrypt.enable=1
vm.swapencrypt.keyscreated=0
vm.swapencrypt.keysdeleted=0
vm.nkmempages=32768
vm.anonmin=10
vm.vtextmin=5
vm.vnodemin=10
vm.malloc_conf=
fs.posix.setuid=1
net.inet.ip.forwarding=1
net.inet.ip.redirect=1
net.inet.ip.ttl=64
net.inet.ip.sourceroute=0
net.inet.ip.directed-broadcast=0
net.inet.ip.portfirst=1024
net.inet.ip.portlast=49151
net.inet.ip.porthifirst=49152
net.inet.ip.porthilast=65535
net.inet.ip.maxqueue=300
net.inet.ip.encdebug=0
net.inet.ip.ipsec-expire-acquire=30
net.inet.ip.ipsec-invalid-life=60
net.inet.ip.ipsec-pfs=1
net.inet.ip.ipsec-soft-allocs=0
net.inet.ip.ipsec-allocs=0
net.inet.ip.ipsec-soft-bytes=0
net.inet.ip.ipsec-bytes=0
net.inet.ip.ipsec-timeout=86400
net.inet.ip.ipsec-soft-timeout=80000
net.inet.ip.ipsec-soft-firstuse=3600
net.inet.ip.ipsec-firstuse=7200
net.inet.ip.ipsec-enc-alg=aes
net.inet.ip.ipsec-auth-alg=hmac-sha1
net.inet.ip.mtudisc=1
net.inet.ip.mtudisctimeout=600
net.inet.ip.ipsec-comp-alg=deflate
net.inet.ip.mforwarding=0
net.inet.ip.multipath=0
net.inet.ip.mrtproto=19
net.inet.ip.arpqueued=0
net.inet.ip.arptimeout=1200
net.inet.ip.arpdown=20
net.inet.ip.arpq.len=0
net.inet.ip.arpq.maxlen=50
net.inet.ip.arpq.drops=0
net.inet.icmp.maskrepl=0
net.inet.icmp.bmcastecho=0
net.inet.icmp.errppslimit=100
net.inet.icmp.rediraccept=0
net.inet.icmp.redirtimeout=600
net.inet.icmp.tstamprepl=1
net.inet.ipip.allow=0
net.inet.tcp.rfc1323=1
net.inet.tcp.keepinittime=150
net.inet.tcp.keepidle=14400
net.inet.tcp.keepintvl=150
net.inet.tcp.slowhz=2
net.inet.tcp.baddynamic=1,7,9,11,13,15,17,18,19,20,21,22,23,25,37,42,43,49,53,57,67,68,70,77,79,80,87,88,95,101,102,103,104,105,106,107,109,110,111,113,115,117,119,123,129,135,137,138,139,143,152,163,164,177,178,179,191,194,199,201,202,204,206,210,213,220,372,389,427,433,443,444,445,464,465,468,512,513,514,515,521,526,530,531,532,540,543,544,545,548,554,556,587,631,636,646,705,706,749,750,751,754,760,853,871,873,901,993,995,1080,1109,1127,1433,1434,1524,1525,1529,1723,1900,2049,2105,2106,2108,2110,2111,2112,2120,2121,2401,2600,2601,2602,2603,2604,2605,2606,2607,2608,2627,2983,3031,3109,3260,3306,3389,3517,3689,3690,4190,4444,4500,4559,5002,5060,5222,5269,5280,5298,5353,5354,5432,5680,5900,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6514,6566,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7326,8025,8026,8140,8953,9418,10050,10051,16992,16993,16994,16995,20005
net.inet.tcp.sack=1
net.inet.tcp.mssdflt=512
net.inet.tcp.rstppslimit=100
net.inet.tcp.ackonpush=0
net.inet.tcp.ecn=0
net.inet.tcp.syncachelimit=10255
net.inet.tcp.synbucketlimit=105
net.inet.tcp.rfc3390=2
net.inet.tcp.reasslimit=32768
net.inet.tcp.sackholelimit=32768
net.inet.tcp.always_keepalive=0
net.inet.tcp.synuselimit=100000
net.inet.tcp.rootonly=2049
net.inet.tcp.synhashsize=293
net.inet.udp.checksum=1
net.inet.udp.baddynamic=7,9,13,18,19,22,37,39,49,53,67,68,69,70,80,88,105,107,109,110,111,123,129,135,137,138,139,143,161,162,163,164,177,178,179,191,194,199,201,202,204,206,210,213,220,372,389,427,444,445,464,468,500,512,513,514,517,518,520,525,533,546,547,548,554,587,623,631,636,646,664,706,749,750,751,853,993,995,1433,1434,1524,1525,1645,1646,1701,1723,1812,1813,1900,2049,2401,3031,3517,3689,3784,3785,4190,4444,4500,4559,4754,4755,4789,5002,5060,5298,5353,5354,5432,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7784,8025,8067,9418,10050,10051,16992,16993,16994,16995,20005,26740
net.inet.udp.recvspace=41600
net.inet.udp.sendspace=9216
net.inet.udp.rootonly=2049
net.inet.gre.allow=0
net.inet.gre.wccp=0
net.inet.esp.enable=1
net.inet.esp.udpencap=1
net.inet.esp.udpencap_port=4500
net.inet.ah.enable=1
net.inet.etherip.allow=0
net.inet.ipcomp.enable=0
net.inet.carp.allow=1
net.inet.carp.preempt=0
net.inet.carp.log=2
net.inet.divert.recvspace=65636
net.inet.divert.sendspace=65636
net.inet6.ip6.forwarding=0
net.inet6.ip6.redirect=1
net.inet6.ip6.hlim=64
net.inet6.ip6.mrtproto=0
net.inet6.ip6.maxfragpackets=200
net.inet6.ip6.log_interval=5
net.inet6.ip6.hdrnestlimit=10
net.inet6.ip6.dad_count=1
net.inet6.ip6.auto_flowlabel=1
net.inet6.ip6.defmcasthlim=1
net.inet6.ip6.use_deprecated=1
net.inet6.ip6.maxfrags=200
net.inet6.ip6.mforwarding=0
net.inet6.ip6.multipath=0
net.inet6.ip6.multicast_mtudisc=0
net.inet6.ip6.neighborgcthresh=2048
net.inet6.ip6.maxdynroutes=4096
net.inet6.ip6.dad_pending=0
net.inet6.ip6.mtudisctimeout=600
net.inet6.icmp6.redirtimeout=600
net.inet6.icmp6.nd6_delay=5
net.inet6.icmp6.nd6_umaxtries=3
net.inet6.icmp6.nd6_mmaxtries=3
net.inet6.icmp6.errppslimit=100
net.inet6.icmp6.nd6_maxnudhint=0
net.inet6.icmp6.mtudisc_hiwat=1280
net.inet6.icmp6.mtudisc_lowat=256
net.inet6.icmp6.nd6_debug=0
net.inet6.divert.recvspace=65636
net.inet6.divert.sendspace=65636
net.bpf.bufsize=32768
net.bpf.maxbufsize=2097152
net.mpls.ttl=255
net.mpls.mapttl_ip=1
net.mpls.mapttl_ip6=0
net.pipex.enable=0
hw.machine=amd64
hw.model=Intel(R) Celeron(R) CPU N2940 @ 1.83GHz
hw.ncpu=4
hw.byteorder=1234
hw.pagesize=4096
hw.disknames=sd0:a2b8bfe13cc73adc,sd1:5f158d0263f96071
hw.diskcount=2
hw.sensors.cpu0.temp0=37.00 degC
hw.sensors.acpithinkpad0.fan0=0 RPM
hw.sensors.acpithinkpad0.indicator0=Off (port replicator), UNKNOWN
hw.sensors.acpiac0.indicator0=On (power supply)
hw.sensors.acpibat0.volt0=7.40 VDC (voltage)
hw.sensors.acpibat0.volt1=8.29 VDC (current voltage)
hw.sensors.acpibat0.power0=2.16 W (rate)
hw.sensors.acpibat0.watthour0=36.13 Wh (last full capacity)
hw.sensors.acpibat0.watthour1=1.70 Wh (warning capacity)
hw.sensors.acpibat0.watthour2=0.34 Wh (low capacity)
hw.sensors.acpibat0.watthour3=36.08 Wh (remaining capacity), OK
hw.sensors.acpibat0.watthour4=34.04 Wh (design capacity)
hw.sensors.acpibat0.raw0=2 (battery charging), OK
hw.sensors.acpibtn0.indicator0=On (lid open)
hw.sensors.acpitz0.temp0=39.00 degC (zone temperature)
hw.sensors.softraid0.drive0=online (sd1), OK
hw.cpuspeed=498
hw.setperf=0
hw.vendor=LENOVO
hw.product=20D90020US
hw.version=ThinkPad 11e
hw.serialno=LR04M8KE
hw.uuid=816aeb69-b24f-cb11-bfc8-c8a1a2c86c8f
hw.physmem=8450998272
hw.usermem=8419946496
hw.ncpufound=4
hw.allowpowerdown=1
hw.perfpolicy=auto
hw.smt=0
hw.ncpuonline=4
machdep.console_device=ttyC0
machdep.bios.diskinfo.128=bootdev = 0xa0000204, cylinders = 0, heads = 0, 
sectors = 0
machdep.bios.cksumlen=1
machdep.allowaperture=0
machdep.cpuvendor=GenuineIntel
machdep.cpuid=0x30678
machdep.cpufeature=0xbffbfbff
machdep.kbdreset=0
machdep.xcrypt=0
machdep.lidaction=1
machdep.forceukbd=0
machdep.tscfreq=1833336925
machdep.invarianttsc=1
machdep.pwraction=1
ddb.radix=16
ddb.max_width=80
ddb.max_line=24
ddb.tab_stop_width=8
ddb.panic=1
ddb.console=0
ddb.log=1
ddb.trigger=0
vfs.mounts.ffs has 9 mounted instances
vfs.mounts.mfs has 1 mounted instance
vfs.ffs.max_softdeps=23704
vfs.ffs.sd_tickdelay=2
vfs.ffs.sd_worklist_push=0
vfs.ffs.sd_blk_limit_push=0
vfs.ffs.sd_ino_limit_push=0
vfs.ffs.sd_blk_limit_hit=0
vfs.ffs.sd_ino_limit_hit=0
vfs.ffs.sd_sync_limit_hit=0
vfs.ffs.sd_indir_blk_ptrs=0
vfs.ffs.sd_inode_bitmap=0
vfs.ffs.sd_direct_blk_ptrs=0
vfs.ffs.sd_dir_entry=0
vfs.ffs.dirhash_dirsize=2560
vfs.ffs.dirhash_maxmem=5242880
vfs.ffs.dirhash_mem=190556
vfs.nfs.iothreads=-1
vfs.fuse.fusefs_open_devices=0
vfs.fuse.fusefs_fbufs_in=0
vfs.fuse.fusefs_fbufs_wait=0
vfs.fuse.fusefs_pool_pages=0
[    0.000000] Linux version 5.4.72-0-virt (buildozer@build-3-12-x86_64) (gcc 
version 9.3.0 (Alpine 9.3.0)) #1-Alpine SMP Mon, 19 Oct 2020 06:22:29 UTC
[    0.000000] Command line: BOOT_IMAGE=vmlinuz-virt 
root=UUID=61f10b63-9f6f-40c3-8ef5-4382bd25b56b modules=sd-mod,usb-storage,ext4 
rootfstype=ext4 console=ttyS0,115200 initrd=initramfs-virt
[    0.000000] Disabled fast string operations
[    0.000000] x86/fpu: x87 FPU will use FXSAVE
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f7ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007fffdfff] usable
[    0.000000] BIOS-e820: [mem 0x000000007fffe000-0x000000007fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.4 present.
[    0.000000] DMI: OpenBSD VMM, BIOS 1.11.0p3-OpenBSD-vmm 01/01/2011
[    0.000000] tsc: Fast TSC calibration failed
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] last_pfn = 0x7fffe max_arch_pfn = 0x400000000
[    0.000000] Disabled
[    0.000000] x86/PAT: MTRRs disabled, skipping PAT initialization too.
[    0.000000] x86/PAT: Configuration [0-7]: WB  WT  UC- UC  WB  WT  UC- UC  
[    0.000000] RAMDISK: [mem 0x7fb13000-0x7fffdfff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI BIOS Error (bug): A valid RSDP was not found 
(20190816/tbxfroot-210)
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x000000007fffdfff]
[    0.000000]   Normal   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000007fffdfff]
[    0.000000] Zeroed struct page in unavailable ranges: 100 pages
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000007fffdfff]
[    0.000000] On node 0 totalpages: 524188
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 21 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 8128 pages used for memmap
[    0.000000]   DMA32 zone: 520190 pages, LIFO batch:63
[    0.000000] No local APIC present
[    0.000000] APIC: disable apic facility
[    0.000000] APIC: switched to apic NOOP
[    0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs
[    0.000000] [mem 0x80000000-0xfffbffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 
0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:1 
nr_node_ids:1
[    0.000000] percpu: Embedded 52 pages/cpu s174616 r8192 d30184 u2097152
[    0.000000] pcpu-alloc: s174616 r8192 d30184 u2097152 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 515975
[    0.000000] Kernel command line: BOOT_IMAGE=vmlinuz-virt 
root=UUID=61f10b63-9f6f-40c3-8ef5-4382bd25b56b modules=sd-mod,usb-storage,ext4 
rootfstype=ext4 console=ttyS0,115200 initrd=initramfs-virt
[    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 
bytes, linear)
[    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, 
linear)
[    0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off
[    0.000000] Memory: 2035000K/2096752K available (8195K kernel code, 948K 
rwdata, 2460K rodata, 1224K init, 1332K bss, 61752K reserved, 0K cma-reserved)
[    0.000000] random: get_random_u64 called from 
cache_random_seq_create+0x77/0x130 with crng_init=0
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[    0.000000] Kernel/User page tables isolation: enabled
[    0.000000] rcu: Hierarchical RCU implementation.
[    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 
jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
[    0.000000] NR_IRQS: 16640, nr_irqs: 32, preallocated irqs: 16
[    0.000000] random: crng done (trusting CPU's manufacturer)
[    0.000000] Console: colour *CGA 80x25
[    0.000000] printk: console [ttyS0] enabled
[    0.000000] APIC disabled by BIOS
[    0.000000] APIC: Keep in PIC mode(8259)
[    0.020000] tsc: Using PIT calibration value
[    0.020000] tsc: Detected 11004.239 MHz processor
[    0.000002] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 
0x9e9ea4eaf13, max_idle_ns: 440795518199 ns
[    0.001735] Calibrating delay loop (skipped), value calculated using timer 
frequency.. 22008.47 BogoMIPS (lpj=110042390)
[    0.011739] pid_max: default: 32768 minimum: 301
[    0.012431] LSM: Security Framework initializing
[    0.013192] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, 
linear)
[    0.021762] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 
bytes, linear)
[    0.023246] Disabled fast string operations
[    0.023939] Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0
[    0.031740] Last level dTLB entries: 4KB 128, 2MB 16, 4MB 16, 1GB 0
[    0.032710] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user 
pointer sanitization
[    0.033945] Spectre V2 : Mitigation: Full generic retpoline
[    0.041741] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on 
context switch
[    0.042922] MDS: Mitigation: Clear CPU buffers
[    0.052707] Freeing SMP alternatives memory: 28K
[    0.053713] smpboot: weird, boot CPU (#0) not listed by the BIOS
[    0.054578] smpboot: SMP disabled
[    0.061960] Performance Events: unsupported p6 CPU model 55 no PMU driver, 
software events only.
[    0.063475] rcu: Hierarchical SRCU implementation.
[    0.064276] NMI watchdog: Perf NMI watchdog permanently disabled
[    0.071805] smp: Bringing up secondary CPUs ...
[    0.072524] smp: Brought up 1 node, 1 CPU
[    0.073093] smpboot: Max logical packages: 1
[    0.073745] ----------------
[    0.074219] | NMI testsuite:
[    0.074639] --------------------
[    0.081767]   remote IPI:  ok  |
[    0.082273]    local IPI:TIMEOUT|
[    3.223188] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.72-0-virt #1-Alpine
[    3.228828] Hardware name: OpenBSD VMM, BIOS 1.11.0p3-OpenBSD-vmm 01/01/2011
[    3.231339] Call Trace:
[    3.231733]  dump_stack+0x66/0x90
[    3.231733]  dotest.constprop.0+0x49/0x6e
[    3.231733]  nmi_selftest+0x7f/0x156
[    3.231733]  native_smp_cpus_done+0x15/0x96
[    3.231733]  kernel_init_freeable+0xd3/0x1f9
[    3.231733]  ? rest_init+0xa0/0xa0
[    3.231733]  kernel_init+0x5/0x100
[    3.231733]  ret_from_fork+0x35/0x40
[    3.231751] --------------------
[    3.232908] BUG:   1 unexpected failures (out of   2) - debugging disabled! |
[    3.241749] -----------------------------------------------------------------
[    3.251757] smpboot: Total of 1 processors activated (22008.47 BogoMIPS)
[    3.262051] devtmpfs: initialized
[    3.263362] x86/mm: Memory block size: 128MB
[    3.272383] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, 
max_idle_ns: 19112604462750000 ns
[    3.281782] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
[    3.292434] NET: Registered protocol family 16
[    3.301894] audit: initializing netlink subsys (disabled)
[    3.304076] cpuidle: using governor ladder
[    3.311755] cpuidle: using governor menu
[    3.313619] PCI: Using configuration type 1 for base access
[    3.351766] audit: type=2000 audit(1606606791.320:1): state=initialized 
audit_enabled=0 res=1
[    3.382252] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    3.392214] ACPI: Interpreter disabled.
[    3.393580] iommu: Default domain type: Translated 
[    3.401849] SCSI subsystem initialized
[    3.403532] libata version 3.00 loaded.
[    3.403556] pps_core: LinuxPPS API ver. 1 registered
[    3.411758] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo 
Giometti <giome...@linux.it>
[    3.421754] PTP clock support registered
[    3.423685] PCI: Probing PCI hardware
[    3.431757] PCI: root bus 00: using default resources
[    3.431758] PCI: Probing PCI hardware (bus 00)
[    3.431782] PCI host bridge to bus 0000:00
[    3.433326] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
[    3.441749] pci_bus 0000:00: root bus resource [mem 0x00000000-0xfffffffff]
[    3.451748] pci_bus 0000:00: No busn resource found for root bus, will use 
[bus 00-ff]
[    3.461831] pci 0000:00:00.0: [0b5d:0666] type 00 class 0x060000
[    3.472229] pci 0000:00:01.0: [1af4:1005] type 00 class 0x088000
[    3.474627] pci 0000:00:01.0: reg 0x10: [io  0x1000-0x1fff]
[    3.482893] pci 0000:00:02.0: [1af4:1000] type 00 class 0x088000
[    3.492019] pci 0000:00:02.0: reg 0x10: [io  0x2000-0x2fff]
[    3.502882] pci 0000:00:03.0: [1af4:1001] type 00 class 0x010000
[    3.512012] pci 0000:00:03.0: reg 0x10: [io  0x3000-0x3fff]
[    3.522767] pci 0000:00:04.0: [0b5d:0777] type 00 class 0x078000
[    3.531959] pci 0000:00:04.0: reg 0x10: [io  0x4000-0x4fff]
[    3.542365] pci_bus 0000:00: busn_res: [bus 00-ff] end is updated to 00
[    3.544929] PCI: pci_cache_line_size set to 64 bytes
[    3.551849] e820: reserve RAM buffer [mem 0x0009f800-0x0009ffff]
[    3.551851] e820: reserve RAM buffer [mem 0x7fffe000-0x7fffffff]
[    3.552382] clocksource: Switched to clocksource tsc-early
[    3.575694] VFS: Disk quotas dquot_6.6.0
[    3.577067] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    3.579817] pnp: PnP ACPI: disabled
[    3.585114] thermal_sys: Registered thermal governor 'step_wise'
[    3.585133] pci_bus 0000:00: resource 4 [io  0x0000-0xffff]
[    3.589259] pci_bus 0000:00: resource 5 [mem 0x00000000-0xfffffffff]
[    3.591955] NET: Registered protocol family 2
[    3.593676] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 
16384 bytes, linear)
[    3.596916] TCP established hash table entries: 16384 (order: 5, 131072 
bytes, linear)
[    3.599866] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, 
linear)
[    3.602658] TCP: Hash tables configured (established 16384 bind 16384)
[    3.605126] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    3.607759] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    3.610355] NET: Registered protocol family 1
[    3.612101] NET: Registered protocol family 44
[    3.613851] PCI: CLS 0 bytes, default 64
[    3.616583] Unpacking initramfs...
[    3.709850] Freeing initrd memory: 5036K
[    3.711267] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 
0x9e9ea4eaf13, max_idle_ns: 440795518199 ns
[    3.715133] clocksource: Switched to clocksource tsc
[    3.717006] platform rtc_cmos: registered platform RTC device (no PNP device 
found)
[    3.720214] Initialise system trusted keyrings
[    3.722636] workingset: timestamp_bits=46 max_order=19 bucket_order=0
[    3.727073] Key type asymmetric registered
[    3.728510] Asymmetric key parser 'x509' registered
[    3.730484] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 
250)
[    3.741340] io scheduler mq-deadline registered
[    3.742905] io scheduler kyber registered
[    3.744679] ERST DBG: ERST support is disabled.
[    3.746591] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    3.749118] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is 
a 8250
[    3.752767] VMware PVSCSI driver - version 1.0.7.0-k
[    3.754675] i8042: PNP: No PS/2 controller found.
[    3.756501] i8042: Probing ports directly.
[    4.840739] i8042: No controller found
[    4.844955] rtc_cmos rtc_cmos: registered as rtc0
[    4.846622] rtc_cmos rtc_cmos: alarms up to one day, 114 bytes nvram
[    4.849336] intel_pstate: CPU model not supported
[    4.851131] gre: GRE over IPv4 demultiplexor driver
[    4.852952] Key type dns_resolver registered
[    4.854673] IPI shorthand broadcast: enabled
[    4.856247] sched_clock: Marking stable (4872859454, 
-18266542)->(2513472152, 2341120760)
[    4.859730] registered taskstats version 1
[    4.861226] Loading compiled-in X.509 certificates
[    4.865803] Loaded X.509 cert 'Build time autogenerated kernel key: 
822755a63582cee180ca0cb9933a0dd6692baab6'
[    4.869591] Key type ._fscrypt registered
[    4.871122] Key type .fscrypt registered
[    4.873054] rtc_cmos rtc_cmos: setting system clock to 2020-11-28T23:40:04 
UTC (1606606804)
[    4.876739] Freeing unused kernel image memory: 1224K
[    4.892343] Write protecting the kernel read-only data: 14336k
[    4.894850] Freeing unused kernel image memory: 2016K
[    4.896932] Freeing unused kernel image memory: 1636K
[    4.899003] rodata_test: all tests were successful
[    4.900733] Run /init as init process
[    4.928752] usbcore: registered new interface driver usbfs
[    4.930858] usbcore: registered new interface driver hub
[    4.932793] usbcore: registered new device driver usb
[    4.937069] usbcore: registered new interface driver usb-storage
[    4.969087] loop: module loaded
[    4.996770] virtio-pci 0000:00:01.0: virtio_pci: leaving for legacy driver
[    4.999595] virtio-pci 0000:00:02.0: virtio_pci: leaving for legacy driver
[    5.002505] virtio-pci 0000:00:03.0: virtio_pci: leaving for legacy driver
[    5.013476] virtio_blk virtio2: [vda] 16777216 512-byte logical blocks (8.59 
GB/8.00 GiB)
[    5.022776]  vda: vda1 vda2 vda3
[    5.384015] EXT4-fs (vda3): mounted filesystem with ordered data mode. Opts: 
(null)
[    6.187971] cryptd: max_cpu_qlen set to 1000
[    6.401723] NET: Registered protocol family 17
[    6.440389] NET: Registered protocol family 10
[    6.453436] Segment Routing with IPv6
[    6.598096] EXT4-fs (vda3): re-mounted. Opts: (null)
[    6.633654] Adding 2097148k swap on /dev/vda2.  Priority:-2 extents:1 
across:2097148k 
[    6.667877] EXT4-fs (vda1): mounted filesystem with ordered data mode. Opts: 
(null)
[    6.667884] ext4 filesystem being mounted at /boot supports timestamps until 
2038 (0x7fffffff)
[    0.000000] Linux version 5.4.72-0-virt (buildozer@build-3-12-x86_64) (gcc 
version 9.3.0 (Alpine 9.3.0)) #1-Alpine SMP Mon, 19 Oct 2020 06:22:29 UTC
[    0.000000] Command line: BOOT_IMAGE=vmlinuz-virt 
root=UUID=61f10b63-9f6f-40c3-8ef5-4382bd25b56b modules=sd-mod,usb-storage,ext4 
rootfstype=ext4 console=ttyS0,115200 initrd=initramfs-virt
[    0.000000] Disabled fast string operations
[    0.000000] x86/fpu: x87 FPU will use FXSAVE
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f7ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007fffdfff] usable
[    0.000000] BIOS-e820: [mem 0x000000007fffe000-0x000000007fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.4 present.
[    0.000000] DMI: OpenBSD VMM, BIOS 1.11.0p3-OpenBSD-vmm 01/01/2011
[    0.000000] tsc: Fast TSC calibration failed
[    0.000000] tsc: Detected 1833.300 MHz processor
[    0.000161] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000164] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000170] last_pfn = 0x7fffe max_arch_pfn = 0x400000000
[    0.000173] Disabled
[    0.000176] x86/PAT: MTRRs disabled, skipping PAT initialization too.
[    0.000188] x86/PAT: Configuration [0-7]: WB  WT  UC- UC  WB  WT  UC- UC  
[    0.000578] RAMDISK: [mem 0x7fb13000-0x7fffdfff]
[    0.000626] ACPI: Early table checksum verification disabled
[    0.000765] ACPI BIOS Error (bug): A valid RSDP was not found 
(20190816/tbxfroot-210)
[    0.000918] Zone ranges:
[    0.000922]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000925]   DMA32    [mem 0x0000000001000000-0x000000007fffdfff]
[    0.000928]   Normal   empty
[    0.000930] Movable zone start for each node
[    0.000932] Early memory node ranges
[    0.000935]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.000938]   node   0: [mem 0x0000000000100000-0x000000007fffdfff]
[    0.001003] Zeroed struct page in unavailable ranges: 100 pages
[    0.001006] Initmem setup node 0 [mem 0x0000000000001000-0x000000007fffdfff]
[    0.001011] On node 0 totalpages: 524188
[    0.001013]   DMA zone: 64 pages used for memmap
[    0.001014]   DMA zone: 21 pages reserved
[    0.001016]   DMA zone: 3998 pages, LIFO batch:0
[    0.001806]   DMA32 zone: 8128 pages used for memmap
[    0.001808]   DMA32 zone: 520190 pages, LIFO batch:63
[    0.112955] No local APIC present
[    0.112963] APIC: disable apic facility
[    0.112965] APIC: switched to apic NOOP
[    0.112968] smpboot: Allowing 1 CPUs, 0 hotplug CPUs
[    0.113011] [mem 0x80000000-0xfffbffff] available for PCI devices
[    0.113015] Booting paravirtualized kernel on bare hardware
[    0.113019] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 
0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.245620] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:1 
nr_node_ids:1
[    0.253680] percpu: Embedded 52 pages/cpu s174616 r8192 d30184 u2097152
[    0.253696] pcpu-alloc: s174616 r8192 d30184 u2097152 alloc=1*2097152
[    0.253698] pcpu-alloc: [0] 0 
[    0.253755] Built 1 zonelists, mobility grouping on.  Total pages: 515975
[    0.253760] Kernel command line: BOOT_IMAGE=vmlinuz-virt 
root=UUID=61f10b63-9f6f-40c3-8ef5-4382bd25b56b modules=sd-mod,usb-storage,ext4 
rootfstype=ext4 console=ttyS0,115200 initrd=initramfs-virt
[    0.261719] Dentry cache hash table entries: 262144 (order: 9, 2097152 
bytes, linear)
[    0.265648] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, 
linear)
[    0.265743] mem auto-init: stack:off, heap alloc:on, heap free:off
[    0.280970] Memory: 2035000K/2096752K available (8195K kernel code, 948K 
rwdata, 2460K rodata, 1224K init, 1332K bss, 61752K reserved, 0K cma-reserved)
[    0.281255] random: get_random_u64 called from 
cache_random_seq_create+0x77/0x130 with crng_init=0
[    0.281636] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[    0.281722] Kernel/User page tables isolation: enabled
[    0.282955] rcu: Hierarchical RCU implementation.
[    0.282959] rcu:     RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=1.
[    0.282963] rcu: RCU calculated value of scheduler-enlistment delay is 10 
jiffies.
[    0.282965] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
[    0.290465] NR_IRQS: 16640, nr_irqs: 32, preallocated irqs: 16
[    0.291507] random: crng done (trusting CPU's manufacturer)
[    0.291748] Console: colour *CGA 80x25
[    0.631413] printk: console [ttyS0] enabled
[    0.635403] APIC disabled by BIOS
[    0.638646] APIC: Keep in PIC mode(8259)
[    0.642162] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 
0x34da15b7553, max_idle_ns: 881590669491 ns
[    0.652007] Calibrating delay loop (skipped), value calculated using timer 
frequency.. 3666.60 BogoMIPS (lpj=18333000)
[    0.662032] pid_max: default: 32768 minimum: 301
[    0.666004] LSM: Security Framework initializing
[    0.670590] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, 
linear)
[    0.672166] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 
bytes, linear)
[    0.680709] Disabled fast string operations
[    0.681993] Last level iTLB entries: 4KB 48, 2MB 0, 4MB 0
[    0.682041] Last level dTLB entries: 4KB 128, 2MB 16, 4MB 16, 1GB 0
[    0.687846] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user 
pointer sanitization
[    0.691993] Spectre V2 : Mitigation: Full generic retpoline
[    0.692039] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on 
context switch
[    0.700023] MDS: Mitigation: Clear CPU buffers
[    0.709035] Freeing SMP alternatives memory: 28K
[    0.711993] smpboot: weird, boot CPU (#0) not listed by the BIOS
[    0.711993] smpboot: SMP disabled
[    0.713115] Performance Events: unsupported p6 CPU model 55 no PMU driver, 
software events only.
[    0.721993] rcu: Hierarchical SRCU implementation.
[    0.721993] NMI watchdog: Perf NMI watchdog permanently disabled
[    0.722674] smp: Bringing up secondary CPUs ...
[    0.726926] smp: Brought up 1 node, 1 CPU
[    0.730371] smpboot: Max logical packages: 1
[    0.731993] ----------------
[    0.731993] | NMI testsuite:
[    0.731993] --------------------
[    0.732052]   remote IPI:  ok  |
[    0.738448]    local IPI:TIMEOUT|
[    1.271993] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.72-0-virt #1-Alpine
[    1.271993] Hardware name: OpenBSD VMM, BIOS 1.11.0p3-OpenBSD-vmm 01/01/2011
[    1.271993] Call Trace:
[    1.271993]  dump_stack+0x66/0x90
[    1.271993]  dotest.constprop.0+0x49/0x6e
[    1.271993]  nmi_selftest+0x7f/0x156
[    1.271993]  native_smp_cpus_done+0x15/0x96
[    1.271993]  kernel_init_freeable+0xd3/0x1f9
[    1.271993]  ? rest_init+0xa0/0xa0
[    1.271993]  kernel_init+0x5/0x100
[    1.271993]  ret_from_fork+0x35/0x40
[    1.272042] --------------------
[    1.275103] BUG:   1 unexpected failures (out of   2) - debugging disabled! |
[    1.281642] -----------------------------------------------------------------
[    1.282036] smpboot: Total of 1 processors activated (3666.60 BogoMIPS)
[    1.288953] devtmpfs: initialized
[    1.291993] x86/mm: Memory block size: 128MB
[    1.291993] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, 
max_idle_ns: 19112604462750000 ns
[    1.292191] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
[    1.299132] NET: Registered protocol family 16
[    1.301993] audit: initializing netlink subsys (disabled)
[    1.303537] cpuidle: using governor ladder
[    1.307338] cpuidle: using governor menu
[    1.311789] PCI: Using configuration type 1 for base access
[    1.316888] audit: type=2000 audit(1606607201.650:1): state=initialized 
audit_enabled=0 res=1
[    1.335862] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    1.341993] ACPI: Interpreter disabled.
[    1.341993] iommu: Default domain type: Translated 
[    1.341993] SCSI subsystem initialized
[    1.343096] libata version 3.00 loaded.
[    1.343165] pps_core: LinuxPPS API ver. 1 registered
[    1.347975] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo 
Giometti <giome...@linux.it>
[    1.351993] PTP clock support registered
[    1.354139] PCI: Probing PCI hardware
[    1.357872] PCI: root bus 00: using default resources
[    1.357881] PCI: Probing PCI hardware (bus 00)
[    1.357974] PCI host bridge to bus 0000:00
[    1.361659] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
[    1.361993] pci_bus 0000:00: root bus resource [mem 0x00000000-0xfffffffff]
[    1.362112] pci_bus 0000:00: No busn resource found for root bus, will use 
[bus 00-ff]
[    1.369462] pci 0000:00:00.0: [0b5d:0666] type 00 class 0x060000
[    1.371993] pci 0000:00:01.0: [1af4:1005] type 00 class 0x088000
[    1.372756] pci 0000:00:01.0: reg 0x10: [io  0x1000-0x1fff]
[    1.380517] pci 0000:00:02.0: [1af4:1000] type 00 class 0x088000
[    1.381993] pci 0000:00:02.0: reg 0x10: [io  0x2000-0x2fff]
[    1.384589] pci 0000:00:03.0: [1af4:1001] type 00 class 0x010000
[    1.391021] pci 0000:00:03.0: reg 0x10: [io  0x3000-0x3fff]
[    1.392546] pci 0000:00:04.0: [0b5d:0777] type 00 class 0x078000
[    1.398487] pci 0000:00:04.0: reg 0x10: [io  0x4000-0x4fff]
[    1.401993] pci_bus 0000:00: busn_res: [bus 00-ff] end is updated to 00
[    1.402307] PCI: pci_cache_line_size set to 64 bytes
[    1.402980] e820: reserve RAM buffer [mem 0x0009f800-0x0009ffff]
[    1.402988] e820: reserve RAM buffer [mem 0x7fffe000-0x7fffffff]
[    1.404442] clocksource: Switched to clocksource tsc-early
[    1.449275] VFS: Disk quotas dquot_6.6.0
[    1.452735] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.458176] pnp: PnP ACPI: disabled
[    1.458176] thermal_sys: Registered thermal governor 'step_wise'
[    1.458176] pci_bus 0000:00: resource 4 [io  0x0000-0xffff]
[    1.480626] pci_bus 0000:00: resource 5 [mem 0x00000000-0xfffffffff]
[    1.486573] NET: Registered protocol family 2
[    1.490254] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 
16384 bytes, linear)
[    1.490254] TCP established hash table entries: 16384 (order: 5, 131072 
bytes, linear)
[    1.490254] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, 
linear)
[    1.514052] TCP: Hash tables configured (established 16384 bind 16384)
[    1.520671] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    1.523760] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    1.523760] NET: Registered protocol family 1
[    1.523760] NET: Registered protocol family 44
[    1.542273] PCI: CLS 0 bytes, default 64
[    1.549975] Unpacking initramfs...
[    1.698464] Freeing initrd memory: 5036K
[    1.722187] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 
0x34da15b7553, max_idle_ns: 881590669491 ns
[    1.730739] clocksource: Switched to clocksource tsc
[    1.731880] platform rtc_cmos: registered platform RTC device (no PNP device 
found)
[    1.731880] Initialise system trusted keyrings
[    1.731880] workingset: timestamp_bits=46 max_order=19 bucket_order=0
[    1.759384] Key type asymmetric registered
[    1.762907] Asymmetric key parser 'x509' registered
[    1.764066] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 
250)
[    1.788259] io scheduler mq-deadline registered
[    1.788259] io scheduler kyber registered
[    1.788259] ERST DBG: ERST support is disabled.
[    1.788259] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.810953] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is 
a 8250
[    1.819466] VMware PVSCSI driver - version 1.0.7.0-k
[    1.819691] i8042: PNP: No PS/2 controller found.
[    1.819691] i8042: Probing ports directly.
[    3.326256] i8042: No controller found
[    3.352398] rtc_cmos rtc_cmos: registered as rtc0
[    3.358475] rtc_cmos rtc_cmos: alarms up to one day, 114 bytes nvram
[    3.358475] intel_pstate: CPU model not supported
[    3.390030] gre: GRE over IPv4 demultiplexor driver
[    3.399216] Key type dns_resolver registered
[    3.399216] IPI shorthand broadcast: enabled
[    3.421768] sched_clock: Marking stable (3060786245, 
360602477)->(4196023292, -774634570)
[    3.441379] registered taskstats version 1
[    3.451541] Loading compiled-in X.509 certificates
[    3.469250] Loaded X.509 cert 'Build time autogenerated kernel key: 
822755a63582cee180ca0cb9933a0dd6692baab6'
[    3.491988] Key type ._fscrypt registered
[    3.501341] Key type .fscrypt registered
[    3.513049] rtc_cmos rtc_cmos: setting system clock to 2020-11-28T23:46:45 
UTC (1606607205)
[    3.536266] Freeing unused kernel image memory: 1224K
[    3.578796] Write protecting the kernel read-only data: 14336k
[    3.593994] Freeing unused kernel image memory: 2016K
[    3.607027] Freeing unused kernel image memory: 1636K
[    3.619479] rodata_test: all tests were successful
[    3.630348] Run /init as init process
[    3.795176] usbcore: registered new interface driver usbfs
[    3.808208] usbcore: registered new interface driver hub
[    3.820221] usbcore: registered new device driver usb
[    3.846425] usbcore: registered new interface driver usb-storage
[    4.040741] loop: module loaded
[    4.203965] virtio-pci 0000:00:01.0: virtio_pci: leaving for legacy driver
[    4.223054] virtio-pci 0000:00:02.0: virtio_pci: leaving for legacy driver
[    4.241328] virtio-pci 0000:00:03.0: virtio_pci: leaving for legacy driver
[    4.363731] virtio_blk virtio2: [vda] 16777216 512-byte logical blocks (8.59 
GB/8.00 GiB)
[    4.385564]  vda: vda1 vda2 vda3
[    6.491465] EXT4-fs (vda3): mounted filesystem with ordered data mode. Opts: 
(null)
[   11.468886] cryptd: max_cpu_qlen set to 1000
[   13.069074] NET: Registered protocol family 17
[   13.375747] NET: Registered protocol family 10
[   13.440006] Segment Routing with IPv6
[   14.525167] EXT4-fs (vda3): re-mounted. Opts: (null)
[   14.779638] Adding 2097148k swap on /dev/vda2.  Priority:-2 extents:1 
across:2097148k 
[   15.024253] EXT4-fs (vda1): mounted filesystem with ordered data mode. Opts: 
(null)
[   15.024300] ext4 filesystem being mounted at /boot supports timestamps until 
2038 (0x7fffffff)
$ time ssh root@100.64.1.3 sleep 10
    1m01.03s real     0m00.20s user     0m00.09s system
$ time ssh root@100.64.1.3 sleep 10
    0m10.59s real     0m00.06s user     0m00.08s system

Reply via email to