diff --git a/SOURCES/0001-Rearrange-lxc-test-to-avoid-use-of-cat.patch b/SOURCES/0001-Rearrange-lxc-test-to-avoid-use-of-cat.patch index 4446201..a70ad4e 100644 --- a/SOURCES/0001-Rearrange-lxc-test-to-avoid-use-of-cat.patch +++ b/SOURCES/0001-Rearrange-lxc-test-to-avoid-use-of-cat.patch @@ -23,5 +23,5 @@ index d090898e5..170bc24ab 100644 fi -- -2.31.1 +2.39.1 diff --git a/SOURCES/0002-Move-docker-and-podman-tests-up-add-comments.patch b/SOURCES/0002-Move-docker-and-podman-tests-up-add-comments.patch index 10b115c..68ac80e 100644 --- a/SOURCES/0002-Move-docker-and-podman-tests-up-add-comments.patch +++ b/SOURCES/0002-Move-docker-and-podman-tests-up-add-comments.patch @@ -79,5 +79,5 @@ index 170bc24ab..c6e4a1e00 100644 # example /proc/cpuinfo line indicating 'not baremetal' -- -2.31.1 +2.39.1 diff --git a/SOURCES/0003-podman-Fix-location-of-test-file-proc-1-environ.patch b/SOURCES/0003-podman-Fix-location-of-test-file-proc-1-environ.patch index 2ddd094..8f408e6 100644 --- a/SOURCES/0003-podman-Fix-location-of-test-file-proc-1-environ.patch +++ b/SOURCES/0003-podman-Fix-location-of-test-file-proc-1-environ.patch @@ -32,5 +32,5 @@ similarity index 100% rename from tests/podman/1/environ rename to tests/podman/proc/1/environ -- -2.31.1 +2.39.1 diff --git a/SOURCES/0004-Detect-OCI-containers.patch b/SOURCES/0004-Detect-OCI-containers.patch index f8e9a57..793894a 100644 --- a/SOURCES/0004-Detect-OCI-containers.patch +++ b/SOURCES/0004-Detect-OCI-containers.patch @@ -884,5 +884,5 @@ index 2c346bded..9dbc079f9 100644 Status: contributed by Jordan Webb -- -2.31.1 +2.39.1 diff --git a/SOURCES/0005-Add-support-for-Alibaba-cloud-on-aarch64.patch b/SOURCES/0005-Add-support-for-Alibaba-cloud-on-aarch64.patch index 6f2e762..7581ab3 100644 --- a/SOURCES/0005-Add-support-for-Alibaba-cloud-on-aarch64.patch +++ b/SOURCES/0005-Add-support-for-Alibaba-cloud-on-aarch64.patch @@ -367,5 +367,5 @@ index 102e23f67..fbf8c54c5 100644 # The test for KVM above failed, so now we know we're # not using KVM acceleration. -- -2.31.1 +2.39.1 diff --git a/SOURCES/0006-Add-support-for-CRI-O-containers.patch b/SOURCES/0006-Add-support-for-CRI-O-containers.patch new file mode 100644 index 0000000..da9099e --- /dev/null +++ b/SOURCES/0006-Add-support-for-CRI-O-containers.patch @@ -0,0 +1,1552 @@ +From a0560c4b5f222a44b2f307fe8460c29f73e23e2f Mon Sep 17 00:00:00 2001 +From: "Richard W.M. Jones" +Date: Wed, 28 Jun 2023 10:00:42 +0100 +Subject: [PATCH] Add support for CRI-O containers + +Reported-by: Alessandro Taufer +Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=2217407 +Thanks: Xiaodai Wang +(cherry picked from commit 95d18c02038f44bc3e8ff264079f8b697eecf1bd) +--- + configure.ac | 2 + + tests/crio/Makefile.am | 28 + + tests/crio/proc/1/environ | Bin 0 -> 702 bytes + tests/crio/proc/cpuinfo | 1344 ++++++++++++++++++++++++ + tests/crio/sbin/dmidecode | 7 + + tests/crio/sbin/uname | 2 + + tests/crio/sbin/virt-what-cpuid-helper | 2 + + tests/crio/test.sh | 32 + + virt-what.in | 6 + + virt-what.pod | 6 + + 10 files changed, 1429 insertions(+) + create mode 100644 tests/crio/Makefile.am + create mode 100644 tests/crio/proc/1/environ + create mode 100644 tests/crio/proc/cpuinfo + create mode 100755 tests/crio/sbin/dmidecode + create mode 100755 tests/crio/sbin/uname + create mode 100755 tests/crio/sbin/virt-what-cpuid-helper + create mode 100755 tests/crio/test.sh + +diff --git a/configure.ac b/configure.ac +index cfb7ca371..632e25e91 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -42,6 +42,7 @@ tests="\ + aws-xen-x86 \ + baremetal \ + bhyve \ ++ crio \ + docker \ + esx-arm \ + esx4.1 \ +@@ -92,6 +93,7 @@ AC_CONFIG_FILES([Makefile + tests/aws-xen-x86/Makefile + tests/baremetal/Makefile + tests/bhyve/Makefile ++ tests/crio/Makefile + tests/docker/Makefile + tests/esx-arm/Makefile + tests/esx4.1/Makefile +diff --git a/tests/crio/Makefile.am b/tests/crio/Makefile.am +new file mode 100644 +index 000000000..b2f6f2469 +--- /dev/null ++++ b/tests/crio/Makefile.am +@@ -0,0 +1,28 @@ ++# Makefile for virt-what ++# Copyright (C) 2008-2023 Red Hat Inc. ++# ++# This program is free software; you can redistribute it and/or modify ++# it under the terms of the GNU General Public License as published by ++# the Free Software Foundation; either version 2 of the License, or ++# (at your option) any later version. ++# ++# This program is distributed in the hope that it will be useful, ++# but WITHOUT ANY WARRANTY; without even the implied warranty of ++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++# GNU General Public License for more details. ++# ++# You should have received a copy of the GNU General Public License ++# along with this program; if not, write to the Free Software ++# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. ++ ++CLEANFILES = *~ ++ ++TESTS = test.sh ++ ++EXTRA_DIST = \ ++ test.sh \ ++ proc/1/environ \ ++ proc/cpuinfo \ ++ sbin/dmidecode \ ++ sbin/uname \ ++ sbin/virt-what-cpuid-helper +diff --git a/tests/crio/proc/1/environ b/tests/crio/proc/1/environ +new file mode 100644 +index 0000000000000000000000000000000000000000..721dfb6d11185d8b9d57b0e197b3492eb12a6578 +GIT binary patch +literal 702 +zcma))UvGmT6vg>MlWLo}nDAhg#AQ(l(7qC9n#`n=g|a^%e~6_;$HSiV!sVPF=R$H` +zA^3Sw@GSf83@@+4n0fWByl>d0xir6kV_KsheNykBY8h|x8l$g4>4)#PPJ@Oq!OFcj +zFf59^s4yBOcscAbZ7|17kd|_>+ie9eh%JyQz_DhS9-j*=+;@^jahgQiO%y*pMv32K +zMUr$Ar?U)gd5d)a;Tt(2+gou?m~~pAOs6skuSUiyTjH#p3_Y^OAuFHRNQGJ^y%2|s +zB+RpdcFlr>E^d)s!g*Oz7vqHVH)u;VU+KPS7Z=gYGsr@X;x>sT{lAU~pYS^9UXHpO +S#*;$58l-t;=7m8er3SyT4aSlH + +literal 0 +HcmV?d00001 + +diff --git a/tests/crio/proc/cpuinfo b/tests/crio/proc/cpuinfo +new file mode 100644 +index 000000000..85629c30d +--- /dev/null ++++ b/tests/crio/proc/cpuinfo +@@ -0,0 +1,1344 @@ ++processor : 0 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 0 ++siblings : 24 ++core id : 0 ++cpu cores : 12 ++apicid : 0 ++initial apicid : 0 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4400.00 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 1 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 1 ++siblings : 24 ++core id : 0 ++cpu cores : 12 ++apicid : 32 ++initial apicid : 32 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4405.98 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 2 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 0 ++siblings : 24 ++core id : 5 ++cpu cores : 12 ++apicid : 10 ++initial apicid : 10 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4400.00 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 3 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 1 ++siblings : 24 ++core id : 5 ++cpu cores : 12 ++apicid : 42 ++initial apicid : 42 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4405.98 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 4 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 0 ++siblings : 24 ++core id : 1 ++cpu cores : 12 ++apicid : 2 ++initial apicid : 2 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4400.00 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 5 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 1 ++siblings : 24 ++core id : 1 ++cpu cores : 12 ++apicid : 34 ++initial apicid : 34 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4405.98 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 6 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 0 ++siblings : 24 ++core id : 4 ++cpu cores : 12 ++apicid : 8 ++initial apicid : 8 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4400.00 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 7 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 1 ++siblings : 24 ++core id : 4 ++cpu cores : 12 ++apicid : 40 ++initial apicid : 40 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4405.98 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 8 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 0 ++siblings : 24 ++core id : 2 ++cpu cores : 12 ++apicid : 4 ++initial apicid : 4 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4400.00 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 9 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 1 ++siblings : 24 ++core id : 2 ++cpu cores : 12 ++apicid : 36 ++initial apicid : 36 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4405.98 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 10 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 0 ++siblings : 24 ++core id : 3 ++cpu cores : 12 ++apicid : 6 ++initial apicid : 6 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4400.00 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 11 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 1 ++siblings : 24 ++core id : 3 ++cpu cores : 12 ++apicid : 38 ++initial apicid : 38 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4405.98 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 12 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 0 ++siblings : 24 ++core id : 8 ++cpu cores : 12 ++apicid : 16 ++initial apicid : 16 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4400.00 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 13 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 1350.309 ++cache size : 16896 KB ++physical id : 1 ++siblings : 24 ++core id : 8 ++cpu cores : 12 ++apicid : 48 ++initial apicid : 48 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4405.98 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 14 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 0 ++siblings : 24 ++core id : 13 ++cpu cores : 12 ++apicid : 26 ++initial apicid : 26 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4400.00 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 15 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 1 ++siblings : 24 ++core id : 13 ++cpu cores : 12 ++apicid : 58 ++initial apicid : 58 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4405.98 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 16 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 0 ++siblings : 24 ++core id : 9 ++cpu cores : 12 ++apicid : 18 ++initial apicid : 18 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4400.00 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 17 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 1 ++siblings : 24 ++core id : 9 ++cpu cores : 12 ++apicid : 50 ++initial apicid : 50 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4405.98 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 18 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 0 ++siblings : 24 ++core id : 12 ++cpu cores : 12 ++apicid : 24 ++initial apicid : 24 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4400.00 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 19 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 1 ++siblings : 24 ++core id : 12 ++cpu cores : 12 ++apicid : 56 ++initial apicid : 56 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4405.98 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 20 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 0 ++siblings : 24 ++core id : 10 ++cpu cores : 12 ++apicid : 20 ++initial apicid : 20 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4400.00 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 21 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 1 ++siblings : 24 ++core id : 10 ++cpu cores : 12 ++apicid : 52 ++initial apicid : 52 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4405.98 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 22 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 0 ++siblings : 24 ++core id : 11 ++cpu cores : 12 ++apicid : 22 ++initial apicid : 22 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4400.00 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 23 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 1 ++siblings : 24 ++core id : 11 ++cpu cores : 12 ++apicid : 54 ++initial apicid : 54 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4405.98 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 24 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 0 ++siblings : 24 ++core id : 0 ++cpu cores : 12 ++apicid : 1 ++initial apicid : 1 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4400.00 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 25 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 1 ++siblings : 24 ++core id : 0 ++cpu cores : 12 ++apicid : 33 ++initial apicid : 33 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4405.98 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 26 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 0 ++siblings : 24 ++core id : 5 ++cpu cores : 12 ++apicid : 11 ++initial apicid : 11 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4400.00 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 27 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 1 ++siblings : 24 ++core id : 5 ++cpu cores : 12 ++apicid : 43 ++initial apicid : 43 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4405.98 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 28 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 0 ++siblings : 24 ++core id : 1 ++cpu cores : 12 ++apicid : 3 ++initial apicid : 3 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4400.00 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 29 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 1 ++siblings : 24 ++core id : 1 ++cpu cores : 12 ++apicid : 35 ++initial apicid : 35 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4405.98 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 30 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 0 ++siblings : 24 ++core id : 4 ++cpu cores : 12 ++apicid : 9 ++initial apicid : 9 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4400.00 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 31 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 1 ++siblings : 24 ++core id : 4 ++cpu cores : 12 ++apicid : 41 ++initial apicid : 41 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4405.98 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 32 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 0 ++siblings : 24 ++core id : 2 ++cpu cores : 12 ++apicid : 5 ++initial apicid : 5 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4400.00 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 33 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 1 ++siblings : 24 ++core id : 2 ++cpu cores : 12 ++apicid : 37 ++initial apicid : 37 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4405.98 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 34 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 0 ++siblings : 24 ++core id : 3 ++cpu cores : 12 ++apicid : 7 ++initial apicid : 7 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4400.00 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 35 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 1 ++siblings : 24 ++core id : 3 ++cpu cores : 12 ++apicid : 39 ++initial apicid : 39 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4405.98 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 36 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 0 ++siblings : 24 ++core id : 8 ++cpu cores : 12 ++apicid : 17 ++initial apicid : 17 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4400.00 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 37 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 1 ++siblings : 24 ++core id : 8 ++cpu cores : 12 ++apicid : 49 ++initial apicid : 49 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4405.98 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 38 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 0 ++siblings : 24 ++core id : 13 ++cpu cores : 12 ++apicid : 27 ++initial apicid : 27 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4400.00 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 39 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 1 ++siblings : 24 ++core id : 13 ++cpu cores : 12 ++apicid : 59 ++initial apicid : 59 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4405.98 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 40 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 0 ++siblings : 24 ++core id : 9 ++cpu cores : 12 ++apicid : 19 ++initial apicid : 19 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4400.00 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 41 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 1 ++siblings : 24 ++core id : 9 ++cpu cores : 12 ++apicid : 51 ++initial apicid : 51 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4405.98 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 42 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 0 ++siblings : 24 ++core id : 12 ++cpu cores : 12 ++apicid : 25 ++initial apicid : 25 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4400.00 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 43 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 1 ++siblings : 24 ++core id : 12 ++cpu cores : 12 ++apicid : 57 ++initial apicid : 57 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4405.98 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 44 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 0 ++siblings : 24 ++core id : 10 ++cpu cores : 12 ++apicid : 21 ++initial apicid : 21 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4400.00 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 45 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 1 ++siblings : 24 ++core id : 10 ++cpu cores : 12 ++apicid : 53 ++initial apicid : 53 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4405.98 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 46 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 0 ++siblings : 24 ++core id : 11 ++cpu cores : 12 ++apicid : 23 ++initial apicid : 23 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4400.00 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ ++processor : 47 ++vendor_id : GenuineIntel ++cpu family : 6 ++model : 85 ++model name : Intel(R) Xeon(R) Silver 4214 CPU @ 2.20GHz ++stepping : 7 ++microcode : 0x5003302 ++cpu MHz : 3200.000 ++cache size : 16896 KB ++physical id : 1 ++siblings : 24 ++core id : 11 ++cpu cores : 12 ++apicid : 55 ++initial apicid : 55 ++fpu : yes ++fpu_exception : yes ++cpuid level : 22 ++wp : yes ++flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities ++vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple shadow_vmcs pml ept_mode_based_exec tsc_scaling ++bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs taa itlb_multihit mmio_stale_data retbleed eibrs_pbrsb ++bogomips : 4405.98 ++clflush size : 64 ++cache_alignment : 64 ++address sizes : 46 bits physical, 48 bits virtual ++power management: ++ +diff --git a/tests/crio/sbin/dmidecode b/tests/crio/sbin/dmidecode +new file mode 100755 +index 000000000..48a6de126 +--- /dev/null ++++ b/tests/crio/sbin/dmidecode +@@ -0,0 +1,7 @@ ++#!/bin/sh - ++cat <<'EOF' ++# dmidecode 3.3 ++Scanning /dev/mem for entry point. ++/dev/mem: No such file or directory ++EOF ++exit 1 +diff --git a/tests/crio/sbin/uname b/tests/crio/sbin/uname +new file mode 100755 +index 000000000..ab0ec896d +--- /dev/null ++++ b/tests/crio/sbin/uname +@@ -0,0 +1,2 @@ ++#!/bin/sh - ++echo x86_64 +diff --git a/tests/crio/sbin/virt-what-cpuid-helper b/tests/crio/sbin/virt-what-cpuid-helper +new file mode 100755 +index 000000000..481e1e67c +--- /dev/null ++++ b/tests/crio/sbin/virt-what-cpuid-helper +@@ -0,0 +1,2 @@ ++#!/bin/sh - ++# no output +diff --git a/tests/crio/test.sh b/tests/crio/test.sh +new file mode 100755 +index 000000000..94c6daa24 +--- /dev/null ++++ b/tests/crio/test.sh +@@ -0,0 +1,32 @@ ++# Test for OCI ++# Copyright (C) 2008-2023 Red Hat Inc. ++# ++# This program is free software; you can redistribute it and/or modify ++# it under the terms of the GNU General Public License as published by ++# the Free Software Foundation; either version 2 of the License, or ++# (at your option) any later version. ++# ++# This program is distributed in the hope that it will be useful, ++# but WITHOUT ANY WARRANTY; without even the implied warranty of ++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++# GNU General Public License for more details. ++# ++# You should have received a copy of the GNU General Public License ++# along with this program; if not, write to the Free Software ++# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. ++ ++output="$(PATH=../..:$PATH virt-what --test-root=. 2>&1)" ++expected="crio" ++ ++if [ "$output" != "$expected" ]; then ++ echo "$0: test failed because output did not match expected" ++ echo "Expected output was:" ++ echo "----------------------------------------" ++ echo "$expected" ++ echo "----------------------------------------" ++ echo "But the actual output of the program was:" ++ echo "----------------------------------------" ++ echo "$output" ++ echo "----------------------------------------" ++ exit 1 ++fi +diff --git a/virt-what.in b/virt-what.in +index fbf8c54c5..69f8c4bed 100644 +--- a/virt-what.in ++++ b/virt-what.in +@@ -198,6 +198,12 @@ if [ -e "${root}/proc/1/environ" ] && + echo oci + fi + ++# Check for CRI-O. ++if [ -e "${root}/proc/1/environ" ] && ++ cat "${root}/proc/1/environ" | tr '\000' '\n' | grep -Eiq '^container=crio'; then ++ echo crio ++fi ++ + # Check for Podman. + if [ -e "${root}/proc/1/environ" ] && + cat "${root}/proc/1/environ" | tr '\000' '\n' | grep -Eiq '^container=podman'; then +diff --git a/virt-what.pod b/virt-what.pod +index 9dbc079f9..45dd7c933 100644 +--- a/virt-what.pod ++++ b/virt-what.pod +@@ -49,6 +49,12 @@ This is a bhyve (FreeBSD hypervisor) guest. + + Status: contributed by Leonardo Brondani Schenkel. + ++=item B ++ ++The guest is running in a CRI-O container. ++ ++Status: suggested by Alessandro Taufer, confirmed by RWMJ & Xiaodai Wang ++ + =item B + + This is a Docker container. +-- +2.39.1 + diff --git a/SOURCES/copy-patches.sh b/SOURCES/copy-patches.sh index 25823fe..85608e7 100755 --- a/SOURCES/copy-patches.sh +++ b/SOURCES/copy-patches.sh @@ -8,7 +8,7 @@ set -e # ./copy-patches.sh project=virt-what -rhel_version=8.8 +rhel_version=8.9 # Check we're in the right directory. if [ ! -f $project.spec ]; then diff --git a/SPECS/virt-what.spec b/SPECS/virt-what.spec index d146afc..efe08fc 100644 --- a/SPECS/virt-what.spec +++ b/SPECS/virt-what.spec @@ -1,6 +1,6 @@ Name: virt-what Version: 1.25 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Detect if we are running in a virtual machine License: GPLv2+ @@ -11,7 +11,7 @@ Source0: http://people.redhat.com/~rjones/virt-what/files/%{name}-%{versi Source1: copy-patches.sh # Patches are maintained in the following repository: -# http://git.annexia.org/?p=virt-what.git;a=shortlog;h=refs/heads/rhel-8.8 +# http://git.annexia.org/?p=virt-what.git;a=shortlog;h=refs/heads/rhel-8.9 # Patches. Patch0001: 0001-Rearrange-lxc-test-to-avoid-use-of-cat.patch @@ -19,6 +19,7 @@ Patch0002: 0002-Move-docker-and-podman-tests-up-add-comments.patch Patch0003: 0003-podman-Fix-location-of-test-file-proc-1-environ.patch Patch0004: 0004-Detect-OCI-containers.patch Patch0005: 0005-Add-support-for-Alibaba-cloud-on-aarch64.patch +Patch0006: 0006-Add-support-for-CRI-O-containers.patch BuildRequires: make BuildRequires: git @@ -125,6 +126,10 @@ fi %changelog +* Wed Jun 28 2023 Richard W.M. Jones - 1.25-4 +- Add support for CRI-O containers + resolves: rhbz#2217407 + * Mon Jan 30 2023 Richard W.M. Jones - 1.25-3 - Add support for Alibaba cloud on aarch64 resolves: rhbz#2165518