On Thu, Sep 26, 2019 at 11:54:03AM +0200, Mark Patruck wrote: > When running OpenBSD 6.6-beta on bare metal with hw.smt=0... > > ...and SMT disabled in BIOS > > hw.machine=amd64 > hw.model=AMD EPYC 7402P 24-Core Processor > hw.ncpu=24 > hw.ncpufound=24 > hw.smt=0 > hw.ncpuonline=24 > > > ...and SMT enabled in BIOS > > hw.machine=amd64 > hw.model=AMD EPYC 7402P 24-Core Processor > hw.ncpu=48 > hw.ncpufound=48 > hw.smt=0 > hw.ncpuonline=24 > > Regarding ESXi, i wonder if there are any special settings needed > (cores/socket, socket/cores). According to Vmware docs, every core assigned > to the VM should be presented as "real core" w/o SMT at all. > > Back to the OpenBSD machine running on bare metal. > > Though it looks better, the counting seems weird. (this is for SMT off) > As you can see, some cores are skipped somehow... >
Those are the APIC IDs that come from cpuid. I've seen them be non-consecutive in the past on big machines like this. I don't think this means anything. One way to debug this further is to instrument a kernel that pinpoints where and why init is being sent a SIGSEGV, (maybe printing this information in the trap function). I'm wondering if it's the same place every time or if init is segfaulting at random places. Thinking out loud, does bsd.sp exhibit the same issues? -ml > # dmesg | grep smt > cpu0: smt 0, core 0, package 0 > cpu1: smt 0, core 1, package 0 > cpu2: smt 0, core 2, package 0 > cpu3: smt 0, core 4, package 0 > cpu4: smt 0, core 5, package 0 > cpu5: smt 0, core 6, package 0 > cpu6: smt 0, core 8, package 0 > cpu7: smt 0, core 9, package 0 > cpu8: smt 0, core 10, package 0 > cpu9: smt 0, core 12, package 0 > cpu10: smt 0, core 13, package 0 > cpu11: smt 0, core 14, package 0 > cpu12: smt 0, core 16, package 0 > cpu13: smt 0, core 17, package 0 > cpu14: smt 0, core 18, package 0 > cpu15: smt 0, core 20, package 0 > cpu16: smt 0, core 21, package 0 > cpu17: smt 0, core 22, package 0 > cpu18: smt 0, core 24, package 0 > cpu19: smt 0, core 25, package 0 > cpu20: smt 0, core 26, package 0 > cpu21: smt 0, core 28, package 0 > cpu22: smt 0, core 29, package 0 > cpu23: smt 0, core 30, package 0 > > > See "dmesg_smt_off", "dmesg_smt_on" for more details (long) > > In the end, i didn't get to the login, as init died (Segmentation > fault). This looks similar to OpenBSD 6.6-beta running as VM...as well > as the following panic i catched during one of the reboots (SMT off in > BIOS, hw.smt=0) > > .... > root on sd4a (96d2f4e21ea90b51.a) swap on sd4b dump on sd4b > panic: init died (signal 11, exit 0) > Stopped at db_enter+0x10: popq %rbp > TID PID UID PRFLAGS PFLAGS CPU COMMAND > 332879 7766 0 0 0 0 init > * 86645 1 0 0x802 0x2000 7K init > db_enter() at db_enter+0x10 > panic() at panic+0x128 > exit1(ffff8000fffff8b0,8b,1) at exit1+0x5c4 > trapsignal(ffff8000fffff8b0,b,6,1,0) at trapsignal+0x13a > pageflttrap() at pageflttrap+0x287 > usertrap(ffff8000228d03e0) at usertrap+0x1b0 > recall_trap(6,0,1a3c866037d5,4,7f7fffff6740,0) at recall_trap+0x8 > end of kernel > end trace frame: 0x7f7fffff40d0, count: 8 > https://www.openbsd.org/ddb.html describes the minimum info required in bug > reports. Insufficient info makes it difficult to find and fix bugs. > ddb{2}> trace > db_enter() at db_enter+0x10 > panic() at panic+0x128 > exit1(ffff8000fffff8b0,8b,1) at exit1+0x5c4 > trapsignal(ffff8000fffff8b0,b,6,1,0) at trapsignal+0x13a > pageflttrap() at pageflttrap+0x287 > usertrap(ffff8000228d03e0) at usertrap+0x1b0 > recall_trap(6,0,1a3c8660375d5,4,7f7fffff6740,0) at recall_trap+0x8 > end of kernel > end trace frame: 0x7f7fffff40d0, count: -7 > ddb{2}> ps > > > > On 9/25/19 7:31 PM, Mike Larkin wrote: > > On Wed, Sep 25, 2019 at 06:57:20PM +0200, Mark Patruck wrote: > > > After trying lots of different combinations in ESXi (VM templates, Cores > > > per Socket) w/o luck, i've even disabled SMT in BIOS. Although ESXi says > > > "SMT disabled" now, OpenBSD still shows the following: > > > > > > > Does it work if you eliminate ESXi from the equation? > > > > > $ dmesg | grep smt > > > cpu0: smt 0, core 0, package 0 > > > cpu1: smt 1, core 0, package 0 > > > cpu2: smt 2, core 0, package 0 > > > cpu3: smt 3, core 0, package 0 > > > cpu4: smt 4, core 0, package 0 > > > cpu5: smt 5, core 0, package 0 > > > > > > instead of "core 0, core 1, core 2, ..." > > > > > > Aside from that i see lots of *.core files lying around directly after > > > setting hw.smt=1 (sshd.core, ksh.core, sh.core, tmux.core), but after > > > additional 10-20sec the system becomes more stable. > > > > > > On 9/24/19 6:36 PM, Mark Patruck wrote: > > > > As written earlier, when booting bsd.mp leaving smt off, everything's > > > > fine - the system boots till the end. > > > > > > > > The interesting thing is, it seems like turning hw.smt=1 instantly kills > > > > the current shell and because of that, turning hw.smt=1 via sysctl.conf > > > > stops the whole /etc/rc stuff after sysctl has been called. > > > > > > > > For example: > > > > > > > > The system is up and running with hw.smt=0 > > > > > > > > $ su > > > > Password: > > > > # sysctl hw.ncpuonline > > > > hw.ncpuonline=1 > > > > > > > > # sysctl hw.smt=1 > > > > Segmentation fault > > > > -----ssh connection gets dropped-- -> reconnect----- > > > > $ sysctl hw.ncpuonline > > > > hw.ncpuonline=6 > > > > > > > > $ ls /home > > > > ksh.core > > > > > > > > > > > > Besides that, i'm also wondering why dmesg says, the L3 cache is > > > > disabled... > > > > > > > > ---- > > > > cpu0: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > > > > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > > > > ---- > > > > > > > > > > > > On 9/24/19 12:56 PM, Mark Patruck wrote: > > > > > Hi, > > > > > > > > > > while doing some tests on an AMD Epyc VM on ESXi 6.7 with a fresh > > > > > OpenBSD 6.6-beta (2019-09-23), the system crashes as soon as SMT is > > > > > involved (either by manually setting # sysctl hw.smt=1 after boot, > > > > > or via /etc/sysctl.conf) and you've assigned more than 2 cpus > > > > > (hw.ncpu > 2) > > > > > > > > > > dmesg, panic, trace, ps attached. > > > > > > > > > > Thanks, > > > > > > > > > > -Mark > > > > > > > > > > > > > > > -- > > > Mark Patruck ( mark at wrapped.cx ) > > > GPG key 0xF2865E51 / 187F F6D3 EE04 1DCE 1C74 F644 0D3C F66F F286 5E51 > > > > > > https://www.wrapped.cx > > > > > > > -- > Mark Patruck ( mark at wrapped.cx ) > GPG key 0xF2865E51 / 187F F6D3 EE04 1DCE 1C74 F644 0D3C F66F F286 5E51 > > https://www.wrapped.cx > OpenBSD 6.6-beta (GENERIC.MP) #325: Wed Sep 25 17:05:46 MDT 2019 > [email protected]:/usr/src/sys/arch/amd64/compile/GENERIC.MP > real mem = 137281155072 (130921MB) > avail mem = 133107920896 (126941MB) > mpath0 at root > scsibus0 at mpath0: 256 targets > mainbus0 at root > bios0 at mainbus0: SMBIOS rev. 3.2 @ 0xa8eba000 (70 entries) > bios0: vendor American Megatrends Inc. version "2.0a" date 08/08/2019 > bios0: Supermicro Super Server > acpi0 at bios0: ACPI 6.2 > acpi0: sleep states S0 S5 > acpi0: tables DSDT FACP SSDT SPMI FPDT FIDT MCFG SSDT SSDT BERT EINJ HPET > UEFI PCCT SSDT CRAT CDIT SSDT WSMT APIC HEST ERST > acpi0: wakeup devices S0D0(S3) BC00(S3) S0D1(S3) BC01(S3) S0D2(S3) BC02(S3) > S0D3(S3) BC03(S3) S1D0(S3) BC10(S3) S1D1(S3) BC11(S3) S1D2(S3) BC12(S3) > S1D3(S3) BC13(S3) > acpitimer0 at acpi0: 3579545 Hz, 32 bits > acpimcfg0 at acpi0 > acpimcfg0: addr 0xe0000000, bus 0-255 > acpihpet0 at acpi0: 14318180 Hz > acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat > cpu0 at mainbus0: apid 0 (boot processor) > cpu0: AMD EPYC 7402P 24-Core Processor, 2800.37 MHz, 17-31-00 > cpu0: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu0: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu0: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu0: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=0 observed drift=0 > cpu0: smt 0, core 0, package 0 > mtrr: Pentium Pro MTRR support, 8 var ranges, 88 fixed ranges > cpu0: apic clock running at 100MHz > cpu0: mwait min=64, max=64, C-substates=1.1, IBE > cpu1 at mainbus0: apid 1 (application processor) > TSC skew=-28 > cpu1: AMD EPYC 7402P 24-Core Processor, 2800.00 MHz, 17-31-00 > cpu1: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu1: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu1: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu1: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-28 observed drift=0 > cpu1: smt 0, core 1, package 0 > cpu2 at mainbus0: apid 2 (application processor) > TSC skew=-14 > cpu2: AMD EPYC 7402P 24-Core Processor, 2800.00 MHz, 17-31-00 > cpu2: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu2: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu2: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu2: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-14 observed drift=0 > cpu2: smt 0, core 2, package 0 > cpu3 at mainbus0: apid 4 (application processor) > TSC skew=-196 > cpu3: AMD EPYC 7402P 24-Core Processor, 2800.00 MHz, 17-31-00 > cpu3: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu3: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu3: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu3: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-196 observed drift=0 > cpu3: smt 0, core 4, package 0 > cpu4 at mainbus0: apid 5 (application processor) > TSC skew=-210 > cpu4: AMD EPYC 7402P 24-Core Processor, 2800.00 MHz, 17-31-00 > cpu4: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu4: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu4: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu4: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-210 observed drift=0 > cpu4: smt 0, core 5, package 0 > cpu5 at mainbus0: apid 6 (application processor) > TSC skew=-182 > cpu5: AMD EPYC 7402P 24-Core Processor, 2800.00 MHz, 17-31-00 > cpu5: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu5: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu5: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu5: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-182 observed drift=0 > cpu5: smt 0, core 6, package 0 > cpu6 at mainbus0: apid 8 (application processor) > TSC skew=-196 > cpu6: AMD EPYC 7402P 24-Core Processor, 2800.00 MHz, 17-31-00 > cpu6: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu6: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu6: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu6: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-196 observed drift=0 > cpu6: smt 0, core 8, package 0 > cpu7 at mainbus0: apid 9 (application processor) > TSC skew=-196 > cpu7: AMD EPYC 7402P 24-Core Processor, 2800.00 MHz, 17-31-00 > cpu7: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu7: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu7: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu7: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-196 observed drift=0 > cpu7: smt 0, core 9, package 0 > cpu8 at mainbus0: apid 10 (application processor) > TSC skew=-224 > cpu8: AMD EPYC 7402P 24-Core Processor, 2800.00 MHz, 17-31-00 > cpu8: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu8: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu8: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu8: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-224 observed drift=0 > cpu8: smt 0, core 10, package 0 > cpu9 at mainbus0: apid 12 (application processor) > TSC skew=-196 > cpu9: AMD EPYC 7402P 24-Core Processor, 2799.99 MHz, 17-31-00 > cpu9: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu9: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu9: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu9: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-196 observed drift=0 > cpu9: smt 0, core 12, package 0 > cpu10 at mainbus0: apid 13 (application processor) > TSC skew=-224 > cpu10: AMD EPYC 7402P 24-Core Processor, 2800.00 MHz, 17-31-00 > cpu10: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu10: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu10: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu10: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-224 observed drift=0 > cpu10: smt 0, core 13, package 0 > cpu11 at mainbus0: apid 14 (application processor) > TSC skew=-210 > cpu11: AMD EPYC 7402P 24-Core Processor, 2800.00 MHz, 17-31-00 > cpu11: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu11: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu11: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu11: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-210 observed drift=0 > cpu11: smt 0, core 14, package 0 > cpu12 at mainbus0: apid 16 (application processor) > TSC skew=-280 > cpu12: AMD EPYC 7402P 24-Core Processor, 2800.00 MHz, 17-31-00 > cpu12: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu12: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu12: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu12: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-280 observed drift=0 > cpu12: smt 0, core 16, package 0 > cpu13 at mainbus0: apid 17 (application processor) > TSC skew=-210 > cpu13: AMD EPYC 7402P 24-Core Processor, 2800.00 MHz, 17-31-00 > cpu13: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu13: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu13: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu13: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-210 observed drift=0 > cpu13: smt 0, core 17, package 0 > cpu14 at mainbus0: apid 18 (application processor) > TSC skew=-210 > cpu14: AMD EPYC 7402P 24-Core Processor, 2799.99 MHz, 17-31-00 > cpu14: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu14: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu14: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu14: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-210 observed drift=0 > cpu14: smt 0, core 18, package 0 > cpu15 at mainbus0: apid 20 (application processor) > TSC skew=-14 > cpu15: AMD EPYC 7402P 24-Core Processor, 2800.00 MHz, 17-31-00 > cpu15: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu15: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu15: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu15: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-14 observed drift=0 > cpu15: smt 0, core 20, package 0 > cpu16 at mainbus0: apid 21 (application processor) > TSC skew=-280 > cpu16: AMD EPYC 7402P 24-Core Processor, 2800.00 MHz, 17-31-00 > cpu16: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu16: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu16: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu16: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-280 observed drift=0 > cpu16: smt 0, core 21, package 0 > cpu17 at mainbus0: apid 22 (application processor) > TSC skew=-210 > cpu17: AMD EPYC 7402P 24-Core Processor, 2800.00 MHz, 17-31-00 > cpu17: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu17: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu17: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu17: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-210 observed drift=0 > cpu17: smt 0, core 22, package 0 > cpu18 at mainbus0: apid 24 (application processor) > TSC skew=-28 > cpu18: AMD EPYC 7402P 24-Core Processor, 2800.00 MHz, 17-31-00 > cpu18: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu18: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu18: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu18: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-28 observed drift=0 > cpu18: smt 0, core 24, package 0 > cpu19 at mainbus0: apid 25 (application processor) > TSC skew=-266 > cpu19: AMD EPYC 7402P 24-Core Processor, 2800.00 MHz, 17-31-00 > cpu19: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu19: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu19: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu19: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-266 observed drift=0 > cpu19: smt 0, core 25, package 0 > cpu20 at mainbus0: apid 26 (application processor) > TSC skew=-294 > cpu20: AMD EPYC 7402P 24-Core Processor, 2800.00 MHz, 17-31-00 > cpu20: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu20: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu20: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu20: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-294 observed drift=0 > cpu20: smt 0, core 26, package 0 > cpu21 at mainbus0: apid 28 (application processor) > TSC skew=-70 > cpu21: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu21: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu21: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu21: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu21: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-70 observed drift=0 > cpu21: smt 0, core 28, package 0 > cpu22 at mainbus0: apid 29 (application processor) > TSC skew=-266 > cpu22: AMD EPYC 7402P 24-Core Processor, 2800.00 MHz, 17-31-00 > cpu22: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu22: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu22: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu22: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-266 observed drift=0 > cpu22: smt 0, core 29, package 0 > cpu23 at mainbus0: apid 30 (application processor) > TSC skew=-224 > cpu23: AMD EPYC 7402P 24-Core Processor, 2800.00 MHz, 17-31-00 > cpu23: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu23: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu23: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu23: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-224 observed drift=0 > cpu23: smt 0, core 30, package 0 > ioapic0 at mainbus0: apid 240 pa 0xfec00000, version 21, 24 pins, can't remap > ioapic1 at mainbus0: apid 241 pa 0xb5280000, version 21, 32 pins, can't remap > ioapic2 at mainbus0: apid 242 pa 0xf4180000, version 21, 32 pins, can't remap > ioapic3 at mainbus0: apid 243 pa 0xb4180000, version 21, 32 pins, can't remap > ioapic4 at mainbus0: apid 244 pa 0xf5180000, version 21, 32 pins, can't remap > acpiprt0 at acpi0: bus 192 (S0D0) > acpiprt1 at acpi0: bus 194 (D0A0) > acpiprt2 at acpi0: bus -1 (BR0E) > acpiprt3 at acpi0: bus 197 (D0A3) > acpiprt4 at acpi0: bus 198 (D0A4) > acpiprt5 at acpi0: bus 193 (D0B0) > acpiprt6 at acpi0: bus 199 (S0D0) > acpiprt7 at acpi0: bus 200 (BC00) > acpiprt8 at acpi0: bus -1 (BR1F) > acpiprt9 at acpi0: bus -1 (BR21) > acpiprt10 at acpi0: bus 128 (S0D1) > acpiprt11 at acpi0: bus 129 (D1A0) > acpiprt12 at acpi0: bus -1 (D1B2) > acpiprt13 at acpi0: bus -1 (D1B3) > acpiprt14 at acpi0: bus 132 (S0D1) > acpiprt15 at acpi0: bus 133 (BC01) > acpiprt16 at acpi0: bus 134 (BR3F) > acpiprt17 at acpi0: bus 135 (BR41) > acpiprt18 at acpi0: bus 64 (S0D2) > acpiprt19 at acpi0: bus 65 (D2A2) > acpiprt20 at acpi0: bus -1 (D2B0) > acpiprt21 at acpi0: bus 66 (S0D2) > acpiprt22 at acpi0: bus 67 (BC02) > acpiprt23 at acpi0: bus 68 (BR5F) > acpiprt24 at acpi0: bus 69 (BR61) > acpiprt25 at acpi0: bus 0 (PCI0) > acpiprt26 at acpi0: bus -1 (D3B0) > acpiprt27 at acpi0: bus 1 (S0D3) > acpiprt28 at acpi0: bus 2 (BC03) > acpiprt29 at acpi0: bus -1 (BR80) > acpiprt30 at acpi0: bus -1 (BR82) > acpipwrres0 at acpi0: P0SA > acpipwrres1 at acpi0: P3SA > acpipwrres2 at acpi0: P0SA > acpipwrres3 at acpi0: P3SA > acpipwrres4 at acpi0: P0SA > acpipwrres5 at acpi0: P3SA > acpipwrres6 at acpi0: P0SA > acpipwrres7 at acpi0: P3SA > acpipwrres8 at acpi0: P0SA > acpipwrres9 at acpi0: P3SA > acpipwrres10 at acpi0: P0SA > acpipwrres11 at acpi0: P3SA > acpipwrres12 at acpi0: P0SA > acpipwrres13 at acpi0: P3SA > acpipwrres14 at acpi0: P0SA > acpipwrres15 at acpi0: P3SA > acpipwrres16 at acpi0: P0SA > acpipwrres17 at acpi0: P3SA > acpipwrres18 at acpi0: P0SA > acpipwrres19 at acpi0: P3SA > acpipwrres20 at acpi0: P0SA > acpipwrres21 at acpi0: P3SA > acpipwrres22 at acpi0: P0SA > acpipwrres23 at acpi0: P3SA > acpipwrres24 at acpi0: P0SA > acpipwrres25 at acpi0: P3SA > acpipwrres26 at acpi0: P0SA > acpipwrres27 at acpi0: P3SA > acpipwrres28 at acpi0: P0SA > acpipwrres29 at acpi0: P3SA > acpipwrres30 at acpi0: P0SA > acpipwrres31 at acpi0: P3SA > acpipci0 at acpi0 S0D0: 0x00000010 0x00000011 0x00000000 > acpipci1 at acpi0 S0D1: 0x00000010 0x00000011 0x00000000 > acpipci2 at acpi0 S0D2: 0x00000010 0x00000011 0x00000000 > acpipci3 at acpi0 PCI0: 0x00000010 0x00000011 0x00000000 > acpicmos0 at acpi0 > "IPI0001" at acpi0 not configured > "AMDI0030" at acpi0 not configured > acpibtn0 at acpi0: PWRB > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "PNP0C33" at acpi0 not configured > ipmi at mainbus0 not configured > pci0 at mainbus0 bus 0 > pchb0 at pci0 dev 0 function 0 vendor "AMD", unknown product 0x1480 rev 0x00 > pchb1 at pci0 dev 1 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb2 at pci0 dev 2 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb3 at pci0 dev 3 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb4 at pci0 dev 4 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb5 at pci0 dev 5 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb6 at pci0 dev 7 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > ppb0 at pci0 dev 7 function 1 vendor "AMD", unknown product 0x1484 rev 0x00 > pci1 at ppb0 bus 1 > vendor "AMD", unknown product 0x148a (class instrumentation unknown subclass > 0x00, rev 0x00) at pci1 dev 0 function 0 not configured > vendor "AMD", unknown product 0x1498 (class crypto subclass miscellaneous, > rev 0x00) at pci1 dev 0 function 2 not configured > pchb7 at pci0 dev 8 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > ppb1 at pci0 dev 8 function 1 vendor "AMD", unknown product 0x1484 rev 0x00 > pci2 at ppb1 bus 2 > vendor "AMD", unknown product 0x1485 (class instrumentation unknown subclass > 0x00, rev 0x00) at pci2 dev 0 function 0 not configured > vendor "AMD", unknown product 0x1498 (class crypto subclass miscellaneous, > rev 0x00) at pci2 dev 0 function 2 not configured > xhci0 at pci2 dev 0 function 3 vendor "AMD", unknown product 0x148c rev 0x00: > msi, xHCI 1.10 > usb0 at xhci0: USB revision 3.0 > uhub0 at usb0 configuration 1 interface 0 "AMD xHCI root hub" rev 3.00/1.00 > addr 1 > "AMD FCH SMBus" rev 0x61 at pci0 dev 20 function 0 not configured > pcib0 at pci0 dev 20 function 3 "AMD FCH LPC" rev 0x51 > pchb8 at pci0 dev 24 function 0 vendor "AMD", unknown product 0x1490 rev 0x00 > pchb9 at pci0 dev 24 function 1 vendor "AMD", unknown product 0x1491 rev 0x00 > pchb10 at pci0 dev 24 function 2 vendor "AMD", unknown product 0x1492 rev 0x00 > pchb11 at pci0 dev 24 function 3 vendor "AMD", unknown product 0x1493 rev 0x00 > pchb12 at pci0 dev 24 function 4 vendor "AMD", unknown product 0x1494 rev 0x00 > pchb13 at pci0 dev 24 function 5 vendor "AMD", unknown product 0x1495 rev 0x00 > pchb14 at pci0 dev 24 function 6 vendor "AMD", unknown product 0x1496 rev 0x00 > pchb15 at pci0 dev 24 function 7 vendor "AMD", unknown product 0x1497 rev 0x00 > isa0 at pcib0 > isadma0 at isa0 > com0 at isa0 port 0x3f8/8 irq 4: ns16550a, 16 byte fifo > com0: console > com1 at isa0 port 0x2f8/8 irq 3: ns16550a, 16 byte fifo > pckbc0 at isa0 port 0x60/5 irq 1 irq 12 > vga0 at isa0 port 0x3b0/48 iomem 0xa0000/131072 > wsdisplay0 at vga0 mux 1: console (80x25, vt100 emulation) > wsdisplay0: screen 1-5 added (80x25, vt100 emulation) > pcppi0 at isa0 port 0x61 > spkr0 at pcppi0 > pci3 at mainbus0 bus 192 > pchb16 at pci3 dev 0 function 0 vendor "AMD", unknown product 0x1480 rev 0x00 > pchb17 at pci3 dev 1 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > ppb2 at pci3 dev 1 function 1 vendor "AMD", unknown product 0x1483 rev 0x00: > msi > pci4 at ppb2 bus 193 > em0 at pci4 dev 0 function 0 "Intel I350" rev 0x01: msi, address > a0:36:9f:91:1c:a0 > em1 at pci4 dev 0 function 1 "Intel I350" rev 0x01: msi, address > a0:36:9f:91:1c:a1 > pchb18 at pci3 dev 2 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb19 at pci3 dev 3 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > ppb3 at pci3 dev 3 function 1 vendor "AMD", unknown product 0x1483 rev 0x00: > msi > pci5 at ppb3 bus 194 > ppb4 at pci5 dev 0 function 0 "ASPEED Technology AST1150 PCI" rev 0x04 > pci6 at ppb4 bus 195 > "ASPEED Technology AST2000" rev 0x41 at pci6 dev 0 function 0 not configured > ppb5 at pci3 dev 3 function 2 vendor "AMD", unknown product 0x1483 rev 0x00: > msi > pci7 at ppb5 bus 196 > xhci1 at pci7 dev 0 function 0 "ASMedia ASM1042A xHCI" rev 0x00: msi, xHCI 1.0 > usb1 at xhci1: USB revision 3.0 > uhub1 at usb1 configuration 1 interface 0 "ASMedia xHCI root hub" rev > 3.00/1.00 addr 1 > ppb6 at pci3 dev 3 function 4 vendor "AMD", unknown product 0x1483 rev 0x00: > msi > pci8 at ppb6 bus 197 > em2 at pci8 dev 0 function 0 "Intel I210" rev 0x03: msi, address > 00:25:90:bc:7e:52 > ppb7 at pci3 dev 3 function 5 vendor "AMD", unknown product 0x1483 rev 0x00: > msi > pci9 at ppb7 bus 198 > em3 at pci9 dev 0 function 0 "Intel I210" rev 0x03: msi, address > 00:25:90:bc:7e:53 > pchb20 at pci3 dev 4 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb21 at pci3 dev 5 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb22 at pci3 dev 7 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > ppb8 at pci3 dev 7 function 1 vendor "AMD", unknown product 0x1484 rev 0x00 > pci10 at ppb8 bus 199 > vendor "AMD", unknown product 0x148a (class instrumentation unknown subclass > 0x00, rev 0x00) at pci10 dev 0 function 0 not configured > vendor "AMD", unknown product 0x1498 (class crypto subclass miscellaneous, > rev 0x00) at pci10 dev 0 function 2 not configured > pchb23 at pci3 dev 8 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > ppb9 at pci3 dev 8 function 1 vendor "AMD", unknown product 0x1484 rev 0x00 > pci11 at ppb9 bus 200 > vendor "AMD", unknown product 0x1485 (class instrumentation unknown subclass > 0x00, rev 0x00) at pci11 dev 0 function 0 not configured > vendor "AMD", unknown product 0x1498 (class crypto subclass miscellaneous, > rev 0x00) at pci11 dev 0 function 2 not configured > pci12 at mainbus0 bus 128 > pchb24 at pci12 dev 0 function 0 vendor "AMD", unknown product 0x1480 rev 0x00 > pchb25 at pci12 dev 1 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > ppb10 at pci12 dev 1 function 1 vendor "AMD", unknown product 0x1483 rev > 0x00: msi > pci13 at ppb10 bus 129 > mfi0 at pci13 dev 0 function 0 "Symbios Logic MegaRAID SAS2108 GEN2" rev > 0x05: apic 242 int 0 > mfi0: "LSI MegaRAID SAS 9260-4i", firmware 12.15.0-0239, 512MB cache > scsibus1 at mfi0: 64 targets > sd0 at scsibus1 targ 0 lun 0: <LSI, MR9260-4i, 2.13> > naa.600605b00aa786301eccd88c2ba4dd2e > sd0: 409600MB, 512 bytes/sector, 838860800 sectors > pchb26 at pci12 dev 2 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb27 at pci12 dev 3 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > ppb11 at pci12 dev 3 function 1 vendor "AMD", unknown product 0x1483 rev > 0x00: msi > pci14 at ppb11 bus 130 > xhci2 at pci14 dev 0 function 0 "ASMedia ASM1042A xHCI" rev 0x00: msi, xHCI > 1.0 > usb2 at xhci2: USB revision 3.0 > uhub2 at usb2 configuration 1 interface 0 "ASMedia xHCI root hub" rev > 3.00/1.00 addr 1 > ppb12 at pci12 dev 3 function 2 vendor "AMD", unknown product 0x1483 rev > 0x00: msi > pci15 at ppb12 bus 131 > xhci3 at pci15 dev 0 function 0 "ASMedia ASM1042A xHCI" rev 0x00: msi, xHCI > 1.0 > usb3 at xhci3: USB revision 3.0 > uhub3 at usb3 configuration 1 interface 0 "ASMedia xHCI root hub" rev > 3.00/1.00 addr 1 > pchb28 at pci12 dev 4 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb29 at pci12 dev 5 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb30 at pci12 dev 7 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > ppb13 at pci12 dev 7 function 1 vendor "AMD", unknown product 0x1484 rev 0x00 > pci16 at ppb13 bus 132 > vendor "AMD", unknown product 0x148a (class instrumentation unknown subclass > 0x00, rev 0x00) at pci16 dev 0 function 0 not configured > vendor "AMD", unknown product 0x1498 (class crypto subclass miscellaneous, > rev 0x00) at pci16 dev 0 function 2 not configured > pchb31 at pci12 dev 8 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > ppb14 at pci12 dev 8 function 1 vendor "AMD", unknown product 0x1484 rev 0x00 > pci17 at ppb14 bus 133 > vendor "AMD", unknown product 0x1485 (class instrumentation unknown subclass > 0x00, rev 0x00) at pci17 dev 0 function 0 not configured > vendor "AMD", unknown product 0x1498 (class crypto subclass miscellaneous, > rev 0x00) at pci17 dev 0 function 2 not configured > ppb15 at pci12 dev 8 function 2 vendor "AMD", unknown product 0x1484 rev 0x00 > pci18 at ppb15 bus 134 > ahci0 at pci18 dev 0 function 0 "AMD FCH AHCI" rev 0x51: msi, AHCI 1.3.1 > ahci0: unable to disable CR, ignoring port 0 > scsibus2 at ahci0: 32 targets > ppb16 at pci12 dev 8 function 3 vendor "AMD", unknown product 0x1484 rev 0x00 > pci19 at ppb16 bus 135 > ahci1 at pci19 dev 0 function 0 "AMD FCH AHCI" rev 0x51: msi, AHCI 1.3.1 > scsibus3 at ahci1: 32 targets > pci20 at mainbus0 bus 64 > pchb32 at pci20 dev 0 function 0 vendor "AMD", unknown product 0x1480 rev 0x00 > pchb33 at pci20 dev 1 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > ppb17 at pci20 dev 1 function 3 vendor "AMD", unknown product 0x1483 rev > 0x00: msi > pci21 at ppb17 bus 65 > em4 at pci21 dev 0 function 0 "Intel I350" rev 0x01: msi, address > a0:36:9f:91:1d:10 > em5 at pci21 dev 0 function 1 "Intel I350" rev 0x01: msi, address > a0:36:9f:91:1d:11 > pchb34 at pci20 dev 2 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb35 at pci20 dev 3 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb36 at pci20 dev 4 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb37 at pci20 dev 5 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb38 at pci20 dev 7 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > ppb18 at pci20 dev 7 function 1 vendor "AMD", unknown product 0x1484 rev 0x00 > pci22 at ppb18 bus 66 > vendor "AMD", unknown product 0x148a (class instrumentation unknown subclass > 0x00, rev 0x00) at pci22 dev 0 function 0 not configured > vendor "AMD", unknown product 0x1498 (class crypto subclass miscellaneous, > rev 0x00) at pci22 dev 0 function 2 not configured > pchb39 at pci20 dev 8 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > ppb19 at pci20 dev 8 function 1 vendor "AMD", unknown product 0x1484 rev 0x00 > pci23 at ppb19 bus 67 > vendor "AMD", unknown product 0x1485 (class instrumentation unknown subclass > 0x00, rev 0x00) at pci23 dev 0 function 0 not configured > vendor "AMD", unknown product 0x1486 (class crypto subclass miscellaneous, > rev 0x00) at pci23 dev 0 function 1 not configured > vendor "AMD", unknown product 0x1498 (class crypto subclass miscellaneous, > rev 0x00) at pci23 dev 0 function 2 not configured > xhci4 at pci23 dev 0 function 3 vendor "AMD", unknown product 0x148c rev > 0x00: msi, xHCI 1.10 > usb4 at xhci4: USB revision 3.0 > uhub4 at usb4 configuration 1 interface 0 "AMD xHCI root hub" rev 3.00/1.00 > addr 1 > ppb20 at pci20 dev 8 function 2 vendor "AMD", unknown product 0x1484 rev 0x00 > pci24 at ppb20 bus 68 > ahci2 at pci24 dev 0 function 0 "AMD FCH AHCI" rev 0x51: msi, AHCI 1.3.1 > ahci2: port 0: 6.0Gb/s > ahci2: port 1: 6.0Gb/s > ahci2: port 2: 6.0Gb/s > scsibus4 at ahci2: 32 targets > sd1 at scsibus4 targ 0 lun 0: <ATA, ST12000VN0007-2G, SC60> > naa.5000c500af6d16dd > sd1: 11444224MB, 512 bytes/sector, 23437770752 sectors > sd2 at scsibus4 targ 1 lun 0: <ATA, WDC WD60EFRX-68M, 82.0> > naa.50014ee2b6f03098 > sd2: 5723166MB, 512 bytes/sector, 11721045168 sectors > sd3 at scsibus4 targ 2 lun 0: <ATA, SAMSUNG MZ7LH960, HXT7> > naa.5002538e40fa0cae > sd3: 915715MB, 512 bytes/sector, 1875385008 sectors, thin > ppb21 at pci20 dev 8 function 3 vendor "AMD", unknown product 0x1484 rev 0x00 > pci25 at ppb21 bus 69 > ahci3 at pci25 dev 0 function 0 "AMD FCH AHCI" rev 0x51: msi, AHCI 1.3.1 > scsibus5 at ahci3: 32 targets > vmm0 at mainbus0: SVM/RVI > umass0 at uhub0 port 4 configuration 1 interface 0 "SanDisk Extreme" rev > 3.00/0.10 addr 2 > umass0: using SCSI over Bulk-Only > scsibus6 at umass0: 2 targets, initiator 0 > sd4 at scsibus6 targ 1 lun 0: <SanDisk, Extreme, 0001> removable > serial.07815580150618510065 > sd4: 29923MB, 512 bytes/sector, 61282631 sectors > uhidev0 at uhub1 port 4 configuration 1 interface 0 "Cherry Mikroschalter > product 0x0023" rev 2.00/2.20 addr 2 > uhidev0: iclass 3/1 > ukbd0 at uhidev0: 8 variable keys, 6 key codes > wskbd0 at ukbd0: console keyboard, using wsdisplay0 > uhidev1 at uhub1 port 4 configuration 1 interface 1 "Cherry Mikroschalter > product 0x0023" rev 2.00/2.20 addr 2 > uhidev1: iclass 3/0, 2 report ids > uhid0 at uhidev1 reportid 1: input=2, output=0, feature=0 > uhid1 at uhidev1 reportid 2: input=1, output=0, feature=0 > umass1 at uhub4 port 1 configuration 1 interface 0 "SanDisk Cruzer Fit" rev > 2.00/1.27 addr 2 > umass1: using SCSI over Bulk-Only > scsibus7 at umass1: 2 targets, initiator 0 > sd5 at scsibus7 targ 1 lun 0: <SanDisk, Cruzer Fit, 1.27> removable > serial.07815571451108104144 > sd5: 29812MB, 512 bytes/sector, 61056064 sectors > uhub5 at uhub4 port 2 configuration 1 interface 0 "ATEN International product > 0x7000" rev 2.00/0.00 addr 3 > uhidev2 at uhub5 port 1 configuration 1 interface 0 "ATEN International > product 0x2419" rev 1.10/1.00 addr 4 > uhidev2: iclass 3/1 > ukbd1 at uhidev2: 8 variable keys, 6 key codes > wskbd1 at ukbd1 mux 1 > wskbd1: connecting to wsdisplay0 > uhidev3 at uhub5 port 1 configuration 1 interface 1 "ATEN International > product 0x2419" rev 1.10/1.00 addr 4 > uhidev3: iclass 3/1 > ums0 at uhidev3: 3 buttons, Z dir > wsmouse0 at ums0 mux 0 > vscsi0 at root > scsibus8 at vscsi0: 256 targets > softraid0 at root > scsibus9 at softraid0: 256 targets > root on sd4a (96d2f4e21ea90b51.a) swap on sd4b dump on sd4b > Segmentation fault > init: /bin/sh on /etc/rc terminated abnormally, going to single user mode > Enter pathname of shell or RETURN for sh: > OpenBSD 6.6-beta (GENERIC.MP) #325: Wed Sep 25 17:05:46 MDT 2019 > [email protected]:/usr/src/sys/arch/amd64/compile/GENERIC.MP > real mem = 137281155072 (130921MB) > avail mem = 133107920896 (126941MB) > mpath0 at root > scsibus0 at mpath0: 256 targets > mainbus0 at root > bios0 at mainbus0: SMBIOS rev. 3.2 @ 0xa8eba000 (70 entries) > bios0: vendor American Megatrends Inc. version "2.0a" date 08/08/2019 > bios0: Supermicro Super Server > acpi0 at bios0: ACPI 6.2 > acpi0: sleep states S0 S5 > acpi0: tables DSDT FACP SSDT SPMI FPDT FIDT MCFG SSDT SSDT BERT EINJ HPET > UEFI PCCT SSDT CRAT CDIT SSDT WSMT APIC HEST ERST > acpi0: wakeup devices S0D0(S3) BC00(S3) S0D1(S3) BC01(S3) S0D2(S3) BC02(S3) > S0D3(S3) BC03(S3) S1D0(S3) BC10(S3) S1D1(S3) BC11(S3) S1D2(S3) BC12(S3) > S1D3(S3) BC13(S3) > acpitimer0 at acpi0: 3579545 Hz, 32 bits > acpimcfg0 at acpi0 > acpimcfg0: addr 0xe0000000, bus 0-255 > acpihpet0 at acpi0: 14318180 Hz > acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat > cpu0 at mainbus0: apid 0 (boot processor) > cpu0: AMD EPYC 7402P 24-Core Processor, 2800.35 MHz, 17-31-00 > cpu0: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu0: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu0: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu0: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=0 observed drift=0 > cpu0: smt 0, core 0, package 0 > mtrr: Pentium Pro MTRR support, 8 var ranges, 88 fixed ranges > cpu0: apic clock running at 100MHz > cpu0: mwait min=64, max=64, C-substates=1.1, IBE > cpu1 at mainbus0: apid 2 (application processor) > TSC skew=-28 > cpu1: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu1: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu1: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu1: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu1: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-28 observed drift=0 > cpu1: smt 0, core 1, package 0 > cpu2 at mainbus0: apid 4 (application processor) > TSC skew=-28 > cpu2: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu2: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu2: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu2: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu2: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-28 observed drift=0 > cpu2: smt 0, core 2, package 0 > cpu3 at mainbus0: apid 8 (application processor) > TSC skew=-210 > cpu3: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu3: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu3: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu3: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu3: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-210 observed drift=0 > cpu3: smt 0, core 4, package 0 > cpu4 at mainbus0: apid 10 (application processor) > TSC skew=-182 > cpu4: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu4: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu4: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu4: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu4: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-182 observed drift=0 > cpu4: smt 0, core 5, package 0 > cpu5 at mainbus0: apid 12 (application processor) > TSC skew=-182 > cpu5: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu5: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu5: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu5: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu5: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-182 observed drift=0 > cpu5: smt 0, core 6, package 0 > cpu6 at mainbus0: apid 16 (application processor) > TSC skew=-224 > cpu6: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu6: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu6: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu6: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu6: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-224 observed drift=0 > cpu6: smt 0, core 8, package 0 > cpu7 at mainbus0: apid 18 (application processor) > TSC skew=-210 > cpu7: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu7: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu7: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu7: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu7: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-210 observed drift=0 > cpu7: smt 0, core 9, package 0 > cpu8 at mainbus0: apid 20 (application processor) > TSC skew=-210 > cpu8: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu8: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu8: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu8: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu8: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-210 observed drift=0 > cpu8: smt 0, core 10, package 0 > cpu9 at mainbus0: apid 24 (application processor) > TSC skew=-196 > cpu9: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu9: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu9: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu9: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu9: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-196 observed drift=0 > cpu9: smt 0, core 12, package 0 > cpu10 at mainbus0: apid 26 (application processor) > TSC skew=-210 > cpu10: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu10: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu10: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu10: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu10: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-210 observed drift=0 > cpu10: smt 0, core 13, package 0 > cpu11 at mainbus0: apid 28 (application processor) > TSC skew=-196 > cpu11: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu11: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu11: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu11: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu11: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-196 observed drift=0 > cpu11: smt 0, core 14, package 0 > cpu12 at mainbus0: apid 32 (application processor) > TSC skew=-280 > cpu12: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu12: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu12: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu12: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu12: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-280 observed drift=0 > cpu12: smt 0, core 16, package 0 > cpu13 at mainbus0: apid 34 (application processor) > TSC skew=-210 > cpu13: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu13: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu13: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu13: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu13: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-210 observed drift=0 > cpu13: smt 0, core 17, package 0 > cpu14 at mainbus0: apid 36 (application processor) > TSC skew=-224 > cpu14: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu14: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu14: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu14: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu14: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-224 observed drift=0 > cpu14: smt 0, core 18, package 0 > cpu15 at mainbus0: apid 40 (application processor) > TSC skew=-252 > cpu15: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu15: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu15: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu15: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu15: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-252 observed drift=0 > cpu15: smt 0, core 20, package 0 > cpu16 at mainbus0: apid 42 (application processor) > TSC skew=-252 > cpu16: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu16: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu16: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu16: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu16: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-252 observed drift=0 > cpu16: smt 0, core 21, package 0 > cpu17 at mainbus0: apid 44 (application processor) > TSC skew=-210 > cpu17: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu17: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu17: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu17: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu17: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-210 observed drift=0 > cpu17: smt 0, core 22, package 0 > cpu18 at mainbus0: apid 48 (application processor) > TSC skew=-238 > cpu18: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu18: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu18: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu18: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu18: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-238 observed drift=0 > cpu18: smt 0, core 24, package 0 > cpu19 at mainbus0: apid 50 (application processor) > TSC skew=-280 > cpu19: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu19: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu19: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu19: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu19: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-280 observed drift=0 > cpu19: smt 0, core 25, package 0 > cpu20 at mainbus0: apid 52 (application processor) > TSC skew=-322 > cpu20: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu20: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu20: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu20: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu20: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-322 observed drift=0 > cpu20: smt 0, core 26, package 0 > cpu21 at mainbus0: apid 56 (application processor) > TSC skew=-294 > cpu21: AMD EPYC 7402P 24-Core Processor, 2800.02 MHz, 17-31-00 > cpu21: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu21: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu21: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu21: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-294 observed drift=0 > cpu21: smt 0, core 28, package 0 > cpu22 at mainbus0: apid 58 (application processor) > TSC skew=-266 > cpu22: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu22: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu22: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu22: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu22: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-266 observed drift=0 > cpu22: smt 0, core 29, package 0 > cpu23 at mainbus0: apid 60 (application processor) > TSC skew=-238 > cpu23: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu23: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu23: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu23: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu23: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-238 observed drift=0 > cpu23: smt 0, core 30, package 0 > cpu24 at mainbus0: apid 1 (application processor) > TSC skew=-14 > cpu24: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu24: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu24: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu24: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu24: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-14 observed drift=0 > cpu24: smt 1, core 0, package 0 > cpu25 at mainbus0: apid 3 (application processor) > TSC skew=-42 > cpu25: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu25: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu25: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu25: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu25: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-42 observed drift=0 > cpu25: smt 1, core 1, package 0 > cpu26 at mainbus0: apid 5 (application processor) > TSC skew=-14 > cpu26: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu26: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu26: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu26: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu26: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-14 observed drift=0 > cpu26: smt 1, core 2, package 0 > cpu27 at mainbus0: apid 9 (application processor) > TSC skew=-210 > cpu27: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu27: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu27: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu27: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu27: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-210 observed drift=0 > cpu27: smt 1, core 4, package 0 > cpu28 at mainbus0: apid 11 (application processor) > TSC skew=-196 > cpu28: AMD EPYC 7402P 24-Core Processor, 2800.02 MHz, 17-31-00 > cpu28: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu28: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu28: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu28: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-196 observed drift=0 > cpu28: smt 1, core 5, package 0 > cpu29 at mainbus0: apid 13 (application processor) > TSC skew=-196 > cpu29: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu29: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu29: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu29: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu29: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-196 observed drift=0 > cpu29: smt 1, core 6, package 0 > cpu30 at mainbus0: apid 17 (application processor) > TSC skew=-210 > cpu30: AMD EPYC 7402P 24-Core Processor, 2800.02 MHz, 17-31-00 > cpu30: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu30: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu30: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu30: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-210 observed drift=0 > cpu30: smt 1, core 8, package 0 > cpu31 at mainbus0: apid 19 (application processor) > TSC skew=-238 > cpu31: AMD EPYC 7402P 24-Core Processor, 2800.02 MHz, 17-31-00 > cpu31: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu31: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu31: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu31: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-238 observed drift=0 > cpu31: smt 1, core 9, package 0 > cpu32 at mainbus0: apid 21 (application processor) > TSC skew=-224 > cpu32: AMD EPYC 7402P 24-Core Processor, 2800.02 MHz, 17-31-00 > cpu32: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu32: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu32: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu32: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-224 observed drift=0 > cpu32: smt 1, core 10, package 0 > cpu33 at mainbus0: apid 25 (application processor) > TSC skew=-238 > cpu33: AMD EPYC 7402P 24-Core Processor, 2800.02 MHz, 17-31-00 > cpu33: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu33: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu33: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu33: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-238 observed drift=0 > cpu33: smt 1, core 12, package 0 > cpu34 at mainbus0: apid 27 (application processor) > TSC skew=-224 > cpu34: AMD EPYC 7402P 24-Core Processor, 2800.02 MHz, 17-31-00 > cpu34: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu34: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu34: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu34: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-224 observed drift=0 > cpu34: smt 1, core 13, package 0 > cpu35 at mainbus0: apid 29 (application processor) > TSC skew=-238 > cpu35: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu35: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu35: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu35: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu35: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-238 observed drift=0 > cpu35: smt 1, core 14, package 0 > cpu36 at mainbus0: apid 33 (application processor) > TSC skew=-224 > cpu36: AMD EPYC 7402P 24-Core Processor, 2800.02 MHz, 17-31-00 > cpu36: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu36: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu36: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu36: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-224 observed drift=0 > cpu36: smt 1, core 16, package 0 > cpu37 at mainbus0: apid 35 (application processor) > TSC skew=-294 > cpu37: AMD EPYC 7402P 24-Core Processor, 2800.01 MHz, 17-31-00 > cpu37: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu37: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu37: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu37: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-294 observed drift=0 > cpu37: smt 1, core 17, package 0 > cpu38 at mainbus0: apid 37 (application processor) > TSC skew=-280 > cpu38: AMD EPYC 7402P 24-Core Processor, 2800.02 MHz, 17-31-00 > cpu38: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu38: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu38: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu38: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-280 observed drift=0 > cpu38: smt 1, core 18, package 0 > cpu39 at mainbus0: apid 41 (application processor) > TSC skew=-224 > cpu39: AMD EPYC 7402P 24-Core Processor, 2800.03 MHz, 17-31-00 > cpu39: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu39: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu39: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu39: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-224 observed drift=0 > cpu39: smt 1, core 20, package 0 > cpu40 at mainbus0: apid 43 (application processor) > TSC skew=-224 > cpu40: AMD EPYC 7402P 24-Core Processor, 2800.02 MHz, 17-31-00 > cpu40: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu40: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu40: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu40: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-224 observed drift=0 > cpu40: smt 1, core 21, package 0 > cpu41 at mainbus0: apid 45 (application processor) > TSC skew=-294 > cpu41: AMD EPYC 7402P 24-Core Processor, 2800.02 MHz, 17-31-00 > cpu41: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu41: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu41: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu41: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-294 observed drift=0 > cpu41: smt 1, core 22, package 0 > cpu42 at mainbus0: apid 49 (application processor) > TSC skew=-294 > cpu42: AMD EPYC 7402P 24-Core Processor, 2800.02 MHz, 17-31-00 > cpu42: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu42: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu42: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu42: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-294 observed drift=0 > cpu42: smt 1, core 24, package 0 > cpu43 at mainbus0: apid 51 (application processor) > TSC skew=-252 > cpu43: AMD EPYC 7402P 24-Core Processor, 2800.02 MHz, 17-31-00 > cpu43: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu43: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu43: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu43: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-252 observed drift=0 > cpu43: smt 1, core 25, package 0 > cpu44 at mainbus0: apid 53 (application processor) > TSC skew=-238 > cpu44: AMD EPYC 7402P 24-Core Processor, 2800.02 MHz, 17-31-00 > cpu44: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu44: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu44: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu44: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-238 observed drift=0 > cpu44: smt 1, core 26, package 0 > cpu45 at mainbus0: apid 57 (application processor) > TSC skew=-280 > cpu45: AMD EPYC 7402P 24-Core Processor, 2800.02 MHz, 17-31-00 > cpu45: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu45: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu45: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu45: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-280 observed drift=0 > cpu45: smt 1, core 28, package 0 > cpu46 at mainbus0: apid 59 (application processor) > TSC skew=-266 > cpu46: AMD EPYC 7402P 24-Core Processor, 2800.02 MHz, 17-31-00 > cpu46: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu46: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu46: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu46: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-266 observed drift=0 > cpu46: smt 1, core 29, package 0 > cpu47 at mainbus0: apid 61 (application processor) > TSC skew=-266 > cpu47: AMD EPYC 7402P 24-Core Processor, 2800.02 MHz, 17-31-00 > cpu47: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,MMX,FXSR,SSE,SSE2,HTT,SSE3,PCLMUL,MWAIT,SSSE3,FMA3,CX16,SSE4.1,SSE4.2,MOVBE,POPCNT,AES,XSAVE,AVX,F16C,RDRAND,NXE,MMXX,FFXSR,PAGE1GB,RDTSCP,LONG,LAHF,CMPLEG,SVM,EAPICSP,AMCR8,ABM,SSE4A,MASSE,3DNOWP,OSVW,IBS,SKINIT,TCE,TOPEXT,CPCTR,DBKP,PCTRL3,MWAITX,ITSC,FSGSBASE,BMI1,AVX2,SMEP,BMI2,PQM,RDSEED,ADX,SMAP,CLFLUSHOPT,CLWB,SHA,UMIP,IBPB,IBRS,STIBP,SSBD,XSAVEOPT,XSAVEC,XGETBV1,XSAVES > cpu47: 32KB 64b/line 8-way I-cache, 32KB 64b/line 8-way D-cache, 512KB > 64b/line 8-way L2 cache, 128MB 64b/line disabled L3 cache > cpu47: ITLB 64 4KB entries fully associative, 64 4MB entries fully associative > cpu47: DTLB 64 4KB entries fully associative, 64 4MB entries fully associative > tsc_timecounter_init: TSC skew=-266 observed drift=0 > cpu47: smt 1, core 30, package 0 > ioapic0 at mainbus0: apid 240 pa 0xfec00000, version 21, 24 pins, can't remap > ioapic1 at mainbus0: apid 241 pa 0xb5280000, version 21, 32 pins, can't remap > ioapic2 at mainbus0: apid 242 pa 0xf4180000, version 21, 32 pins, can't remap > ioapic3 at mainbus0: apid 243 pa 0xb4180000, version 21, 32 pins, can't remap > ioapic4 at mainbus0: apid 244 pa 0xf5180000, version 21, 32 pins, can't remap > acpiprt0 at acpi0: bus 192 (S0D0) > acpiprt1 at acpi0: bus 194 (D0A0) > acpiprt2 at acpi0: bus -1 (BR0E) > acpiprt3 at acpi0: bus 197 (D0A3) > acpiprt4 at acpi0: bus 198 (D0A4) > acpiprt5 at acpi0: bus 193 (D0B0) > acpiprt6 at acpi0: bus 199 (S0D0) > acpiprt7 at acpi0: bus 200 (BC00) > acpiprt8 at acpi0: bus -1 (BR1F) > acpiprt9 at acpi0: bus -1 (BR21) > acpiprt10 at acpi0: bus 128 (S0D1) > acpiprt11 at acpi0: bus 129 (D1A0) > acpiprt12 at acpi0: bus -1 (D1B2) > acpiprt13 at acpi0: bus -1 (D1B3) > acpiprt14 at acpi0: bus 132 (S0D1) > acpiprt15 at acpi0: bus 133 (BC01) > acpiprt16 at acpi0: bus 134 (BR3F) > acpiprt17 at acpi0: bus 135 (BR41) > acpiprt18 at acpi0: bus 64 (S0D2) > acpiprt19 at acpi0: bus 65 (D2A2) > acpiprt20 at acpi0: bus -1 (D2B0) > acpiprt21 at acpi0: bus 66 (S0D2) > acpiprt22 at acpi0: bus 67 (BC02) > acpiprt23 at acpi0: bus 68 (BR5F) > acpiprt24 at acpi0: bus 69 (BR61) > acpiprt25 at acpi0: bus 0 (PCI0) > acpiprt26 at acpi0: bus -1 (D3B0) > acpiprt27 at acpi0: bus 1 (S0D3) > acpiprt28 at acpi0: bus 2 (BC03) > acpiprt29 at acpi0: bus -1 (BR80) > acpiprt30 at acpi0: bus -1 (BR82) > acpipwrres0 at acpi0: P0SA > acpipwrres1 at acpi0: P3SA > acpipwrres2 at acpi0: P0SA > acpipwrres3 at acpi0: P3SA > acpipwrres4 at acpi0: P0SA > acpipwrres5 at acpi0: P3SA > acpipwrres6 at acpi0: P0SA > acpipwrres7 at acpi0: P3SA > acpipwrres8 at acpi0: P0SA > acpipwrres9 at acpi0: P3SA > acpipwrres10 at acpi0: P0SA > acpipwrres11 at acpi0: P3SA > acpipwrres12 at acpi0: P0SA > acpipwrres13 at acpi0: P3SA > acpipwrres14 at acpi0: P0SA > acpipwrres15 at acpi0: P3SA > acpipwrres16 at acpi0: P0SA > acpipwrres17 at acpi0: P3SA > acpipwrres18 at acpi0: P0SA > acpipwrres19 at acpi0: P3SA > acpipwrres20 at acpi0: P0SA > acpipwrres21 at acpi0: P3SA > acpipwrres22 at acpi0: P0SA > acpipwrres23 at acpi0: P3SA > acpipwrres24 at acpi0: P0SA > acpipwrres25 at acpi0: P3SA > acpipwrres26 at acpi0: P0SA > acpipwrres27 at acpi0: P3SA > acpipwrres28 at acpi0: P0SA > acpipwrres29 at acpi0: P3SA > acpipwrres30 at acpi0: P0SA > acpipwrres31 at acpi0: P3SA > acpipci0 at acpi0 S0D0: 0x00000010 0x00000011 0x00000000 > acpipci1 at acpi0 S0D1: 0x00000010 0x00000011 0x00000000 > acpipci2 at acpi0 S0D2: 0x00000010 0x00000011 0x00000000 > acpipci3 at acpi0 PCI0: 0x00000010 0x00000011 0x00000000 > acpicmos0 at acpi0 > "IPI0001" at acpi0 not configured > "AMDI0030" at acpi0 not configured > acpibtn0 at acpi0: PWRB > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "ACPI0007" at acpi0 not configured > "PNP0C33" at acpi0 not configured > ipmi at mainbus0 not configured > pci0 at mainbus0 bus 0 > pchb0 at pci0 dev 0 function 0 vendor "AMD", unknown product 0x1480 rev 0x00 > pchb1 at pci0 dev 1 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb2 at pci0 dev 2 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb3 at pci0 dev 3 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb4 at pci0 dev 4 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb5 at pci0 dev 5 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb6 at pci0 dev 7 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > ppb0 at pci0 dev 7 function 1 vendor "AMD", unknown product 0x1484 rev 0x00 > pci1 at ppb0 bus 1 > vendor "AMD", unknown product 0x148a (class instrumentation unknown subclass > 0x00, rev 0x00) at pci1 dev 0 function 0 not configured > vendor "AMD", unknown product 0x1498 (class crypto subclass miscellaneous, > rev 0x00) at pci1 dev 0 function 2 not configured > pchb7 at pci0 dev 8 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > ppb1 at pci0 dev 8 function 1 vendor "AMD", unknown product 0x1484 rev 0x00 > pci2 at ppb1 bus 2 > vendor "AMD", unknown product 0x1485 (class instrumentation unknown subclass > 0x00, rev 0x00) at pci2 dev 0 function 0 not configured > vendor "AMD", unknown product 0x1498 (class crypto subclass miscellaneous, > rev 0x00) at pci2 dev 0 function 2 not configured > xhci0 at pci2 dev 0 function 3 vendor "AMD", unknown product 0x148c rev 0x00: > msi, xHCI 1.10 > usb0 at xhci0: USB revision 3.0 > uhub0 at usb0 configuration 1 interface 0 "AMD xHCI root hub" rev 3.00/1.00 > addr 1 > "AMD FCH SMBus" rev 0x61 at pci0 dev 20 function 0 not configured > pcib0 at pci0 dev 20 function 3 "AMD FCH LPC" rev 0x51 > pchb8 at pci0 dev 24 function 0 vendor "AMD", unknown product 0x1490 rev 0x00 > pchb9 at pci0 dev 24 function 1 vendor "AMD", unknown product 0x1491 rev 0x00 > pchb10 at pci0 dev 24 function 2 vendor "AMD", unknown product 0x1492 rev 0x00 > pchb11 at pci0 dev 24 function 3 vendor "AMD", unknown product 0x1493 rev 0x00 > pchb12 at pci0 dev 24 function 4 vendor "AMD", unknown product 0x1494 rev 0x00 > pchb13 at pci0 dev 24 function 5 vendor "AMD", unknown product 0x1495 rev 0x00 > pchb14 at pci0 dev 24 function 6 vendor "AMD", unknown product 0x1496 rev 0x00 > pchb15 at pci0 dev 24 function 7 vendor "AMD", unknown product 0x1497 rev 0x00 > isa0 at pcib0 > isadma0 at isa0 > com0 at isa0 port 0x3f8/8 irq 4: ns16550a, 16 byte fifo > com0: console > com1 at isa0 port 0x2f8/8 irq 3: ns16550a, 16 byte fifo > pckbc0 at isa0 port 0x60/5 irq 1 irq 12 > vga0 at isa0 port 0x3b0/48 iomem 0xa0000/131072 > wsdisplay0 at vga0 mux 1: console (80x25, vt100 emulation) > wsdisplay0: screen 1-5 added (80x25, vt100 emulation) > pcppi0 at isa0 port 0x61 > spkr0 at pcppi0 > pci3 at mainbus0 bus 192 > pchb16 at pci3 dev 0 function 0 vendor "AMD", unknown product 0x1480 rev 0x00 > pchb17 at pci3 dev 1 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > ppb2 at pci3 dev 1 function 1 vendor "AMD", unknown product 0x1483 rev 0x00: > msi > pci4 at ppb2 bus 193 > em0 at pci4 dev 0 function 0 "Intel I350" rev 0x01: msi, address > a0:36:9f:91:1c:a0 > em1 at pci4 dev 0 function 1 "Intel I350" rev 0x01: msi, address > a0:36:9f:91:1c:a1 > pchb18 at pci3 dev 2 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb19 at pci3 dev 3 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > ppb3 at pci3 dev 3 function 1 vendor "AMD", unknown product 0x1483 rev 0x00: > msi > pci5 at ppb3 bus 194 > ppb4 at pci5 dev 0 function 0 "ASPEED Technology AST1150 PCI" rev 0x04 > pci6 at ppb4 bus 195 > "ASPEED Technology AST2000" rev 0x41 at pci6 dev 0 function 0 not configured > ppb5 at pci3 dev 3 function 2 vendor "AMD", unknown product 0x1483 rev 0x00: > msi > pci7 at ppb5 bus 196 > xhci1 at pci7 dev 0 function 0 "ASMedia ASM1042A xHCI" rev 0x00: msi, xHCI 1.0 > usb1 at xhci1: USB revision 3.0 > uhub1 at usb1 configuration 1 interface 0 "ASMedia xHCI root hub" rev > 3.00/1.00 addr 1 > ppb6 at pci3 dev 3 function 4 vendor "AMD", unknown product 0x1483 rev 0x00: > msi > pci8 at ppb6 bus 197 > em2 at pci8 dev 0 function 0 "Intel I210" rev 0x03: msi, address > 00:25:90:bc:7e:52 > ppb7 at pci3 dev 3 function 5 vendor "AMD", unknown product 0x1483 rev 0x00: > msi > pci9 at ppb7 bus 198 > em3 at pci9 dev 0 function 0 "Intel I210" rev 0x03: msi, address > 00:25:90:bc:7e:53 > pchb20 at pci3 dev 4 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb21 at pci3 dev 5 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb22 at pci3 dev 7 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > ppb8 at pci3 dev 7 function 1 vendor "AMD", unknown product 0x1484 rev 0x00 > pci10 at ppb8 bus 199 > vendor "AMD", unknown product 0x148a (class instrumentation unknown subclass > 0x00, rev 0x00) at pci10 dev 0 function 0 not configured > vendor "AMD", unknown product 0x1498 (class crypto subclass miscellaneous, > rev 0x00) at pci10 dev 0 function 2 not configured > pchb23 at pci3 dev 8 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > ppb9 at pci3 dev 8 function 1 vendor "AMD", unknown product 0x1484 rev 0x00 > pci11 at ppb9 bus 200 > vendor "AMD", unknown product 0x1485 (class instrumentation unknown subclass > 0x00, rev 0x00) at pci11 dev 0 function 0 not configured > vendor "AMD", unknown product 0x1498 (class crypto subclass miscellaneous, > rev 0x00) at pci11 dev 0 function 2 not configured > pci12 at mainbus0 bus 128 > pchb24 at pci12 dev 0 function 0 vendor "AMD", unknown product 0x1480 rev 0x00 > pchb25 at pci12 dev 1 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > ppb10 at pci12 dev 1 function 1 vendor "AMD", unknown product 0x1483 rev > 0x00: msi > pci13 at ppb10 bus 129 > mfi0 at pci13 dev 0 function 0 "Symbios Logic MegaRAID SAS2108 GEN2" rev > 0x05: apic 242 int 0 > mfi0: "LSI MegaRAID SAS 9260-4i", firmware 12.15.0-0239, 512MB cache > scsibus1 at mfi0: 64 targets > sd0 at scsibus1 targ 0 lun 0: <LSI, MR9260-4i, 2.13> > naa.600605b00aa786301eccd88c2ba4dd2e > sd0: 409600MB, 512 bytes/sector, 838860800 sectors > pchb26 at pci12 dev 2 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb27 at pci12 dev 3 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > ppb11 at pci12 dev 3 function 1 vendor "AMD", unknown product 0x1483 rev > 0x00: msi > pci14 at ppb11 bus 130 > xhci2 at pci14 dev 0 function 0 "ASMedia ASM1042A xHCI" rev 0x00: msi, xHCI > 1.0 > usb2 at xhci2: USB revision 3.0 > uhub2 at usb2 configuration 1 interface 0 "ASMedia xHCI root hub" rev > 3.00/1.00 addr 1 > ppb12 at pci12 dev 3 function 2 vendor "AMD", unknown product 0x1483 rev > 0x00: msi > pci15 at ppb12 bus 131 > xhci3 at pci15 dev 0 function 0 "ASMedia ASM1042A xHCI" rev 0x00: msi, xHCI > 1.0 > usb3 at xhci3: USB revision 3.0 > uhub3 at usb3 configuration 1 interface 0 "ASMedia xHCI root hub" rev > 3.00/1.00 addr 1 > pchb28 at pci12 dev 4 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb29 at pci12 dev 5 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb30 at pci12 dev 7 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > ppb13 at pci12 dev 7 function 1 vendor "AMD", unknown product 0x1484 rev 0x00 > pci16 at ppb13 bus 132 > vendor "AMD", unknown product 0x148a (class instrumentation unknown subclass > 0x00, rev 0x00) at pci16 dev 0 function 0 not configured > vendor "AMD", unknown product 0x1498 (class crypto subclass miscellaneous, > rev 0x00) at pci16 dev 0 function 2 not configured > pchb31 at pci12 dev 8 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > ppb14 at pci12 dev 8 function 1 vendor "AMD", unknown product 0x1484 rev 0x00 > pci17 at ppb14 bus 133 > vendor "AMD", unknown product 0x1485 (class instrumentation unknown subclass > 0x00, rev 0x00) at pci17 dev 0 function 0 not configured > vendor "AMD", unknown product 0x1498 (class crypto subclass miscellaneous, > rev 0x00) at pci17 dev 0 function 2 not configured > ppb15 at pci12 dev 8 function 2 vendor "AMD", unknown product 0x1484 rev 0x00 > pci18 at ppb15 bus 134 > ahci0 at pci18 dev 0 function 0 "AMD FCH AHCI" rev 0x51: msi, AHCI 1.3.1 > ahci0: unable to disable CR, ignoring port 0 > scsibus2 at ahci0: 32 targets > ppb16 at pci12 dev 8 function 3 vendor "AMD", unknown product 0x1484 rev 0x00 > pci19 at ppb16 bus 135 > ahci1 at pci19 dev 0 function 0 "AMD FCH AHCI" rev 0x51: msi, AHCI 1.3.1 > scsibus3 at ahci1: 32 targets > pci20 at mainbus0 bus 64 > pchb32 at pci20 dev 0 function 0 vendor "AMD", unknown product 0x1480 rev 0x00 > pchb33 at pci20 dev 1 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > ppb17 at pci20 dev 1 function 3 vendor "AMD", unknown product 0x1483 rev > 0x00: msi > pci21 at ppb17 bus 65 > em4 at pci21 dev 0 function 0 "Intel I350" rev 0x01: msi, address > a0:36:9f:91:1d:10 > em5 at pci21 dev 0 function 1 "Intel I350" rev 0x01: msi, address > a0:36:9f:91:1d:11 > pchb34 at pci20 dev 2 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb35 at pci20 dev 3 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb36 at pci20 dev 4 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb37 at pci20 dev 5 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > pchb38 at pci20 dev 7 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > ppb18 at pci20 dev 7 function 1 vendor "AMD", unknown product 0x1484 rev 0x00 > pci22 at ppb18 bus 66 > vendor "AMD", unknown product 0x148a (class instrumentation unknown subclass > 0x00, rev 0x00) at pci22 dev 0 function 0 not configured > vendor "AMD", unknown product 0x1498 (class crypto subclass miscellaneous, > rev 0x00) at pci22 dev 0 function 2 not configured > pchb39 at pci20 dev 8 function 0 vendor "AMD", unknown product 0x1482 rev 0x00 > ppb19 at pci20 dev 8 function 1 vendor "AMD", unknown product 0x1484 rev 0x00 > pci23 at ppb19 bus 67 > vendor "AMD", unknown product 0x1485 (class instrumentation unknown subclass > 0x00, rev 0x00) at pci23 dev 0 function 0 not configured > vendor "AMD", unknown product 0x1486 (class crypto subclass miscellaneous, > rev 0x00) at pci23 dev 0 function 1 not configured > vendor "AMD", unknown product 0x1498 (class crypto subclass miscellaneous, > rev 0x00) at pci23 dev 0 function 2 not configured > xhci4 at pci23 dev 0 function 3 vendor "AMD", unknown product 0x148c rev > 0x00: msi, xHCI 1.10 > usb4 at xhci4: USB revision 3.0 > uhub4 at usb4 configuration 1 interface 0 "AMD xHCI root hub" rev 3.00/1.00 > addr 1 > ppb20 at pci20 dev 8 function 2 vendor "AMD", unknown product 0x1484 rev 0x00 > pci24 at ppb20 bus 68 > ahci2 at pci24 dev 0 function 0 "AMD FCH AHCI" rev 0x51: msi, AHCI 1.3.1 > ahci2: port 0: 6.0Gb/s > ahci2: port 1: 6.0Gb/s > ahci2: port 2: 6.0Gb/s > scsibus4 at ahci2: 32 targets > sd1 at scsibus4 targ 0 lun 0: <ATA, ST12000VN0007-2G, SC60> > naa.5000c500af6d16dd > sd1: 11444224MB, 512 bytes/sector, 23437770752 sectors > sd2 at scsibus4 targ 1 lun 0: <ATA, WDC WD60EFRX-68M, 82.0> > naa.50014ee2b6f03098 > sd2: 5723166MB, 512 bytes/sector, 11721045168 sectors > sd3 at scsibus4 targ 2 lun 0: <ATA, SAMSUNG MZ7LH960, HXT7> > naa.5002538e40fa0cae > sd3: 915715MB, 512 bytes/sector, 1875385008 sectors, thin > ppb21 at pci20 dev 8 function 3 vendor "AMD", unknown product 0x1484 rev 0x00 > pci25 at ppb21 bus 69 > ahci3 at pci25 dev 0 function 0 "AMD FCH AHCI" rev 0x51: msi, AHCI 1.3.1 > scsibus5 at ahci3: 32 targets > vmm0 at mainbus0: SVM/RVI > umass0 at uhub0 port 4 configuration 1 interface 0 "SanDisk Extreme" rev > 3.00/0.10 addr 2 > umass0: using SCSI over Bulk-Only > scsibus6 at umass0: 2 targets, initiator 0 > sd4 at scsibus6 targ 1 lun 0: <SanDisk, Extreme, 0001> removable > serial.07815580150618510065 > sd4: 29923MB, 512 bytes/sector, 61282631 sectors > uhidev0 at uhub1 port 4 configuration 1 interface 0 "Cherry Mikroschalter > product 0x0023" rev 2.00/2.20 addr 2 > uhidev0: iclass 3/1 > ukbd0 at uhidev0: 8 variable keys, 6 key codes > wskbd0 at ukbd0: console keyboard, using wsdisplay0 > uhidev1 at uhub1 port 4 configuration 1 interface 1 "Cherry Mikroschalter > product 0x0023" rev 2.00/2.20 addr 2 > uhidev1: iclass 3/0, 2 report ids > uhid0 at uhidev1 reportid 1: input=2, output=0, feature=0 > uhid1 at uhidev1 reportid 2: input=1, output=0, feature=0 > umass1 at uhub4 port 1 configuration 1 interface 0 "SanDisk Cruzer Fit" rev > 2.00/1.27 addr 2 > umass1: using SCSI over Bulk-Only > scsibus7 at umass1: 2 targets, initiator 0 > sd5 at scsibus7 targ 1 lun 0: <SanDisk, Cruzer Fit, 1.27> removable > serial.07815571451108104144 > sd5: 29812MB, 512 bytes/sector, 61056064 sectors > uhub5 at uhub4 port 2 configuration 1 interface 0 "ATEN International product > 0x7000" rev 2.00/0.00 addr 3 > uhidev2 at uhub5 port 1 configuration 1 interface 0 "ATEN International > product 0x2419" rev 1.10/1.00 addr 4 > uhidev2: iclass 3/1 > ukbd1 at uhidev2: 8 variable keys, 6 key codes > wskbd1 at ukbd1 mux 1 > wskbd1: connecting to wsdisplay0 > uhidev3 at uhub5 port 1 configuration 1 interface 1 "ATEN International > product 0x2419" rev 1.10/1.00 addr 4 > uhidev3: iclass 3/1 > ums0 at uhidev3: 3 buttons, Z dir > wsmouse0 at ums0 mux 0 > vscsi0 at root > scsibus8 at vscsi0: 256 targets > softraid0 at root > scsibus9 at softraid0: 256 targets > root on sd4a (96d2f4e21ea90b51.a) swap on sd4b dump on sd4b > Enter pathname of shell or RETURN for sh:
