diff --git a/.gitignore b/.gitignore index 05fb7c9..6ee3894 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -SOURCES/virt-what-1.25.tar.gz +libguestfs.keyring +virt-what-1.27.tar.gz diff --git a/.virt-what.metadata b/.virt-what.metadata deleted file mode 100644 index a8fd8a8..0000000 --- a/.virt-what.metadata +++ /dev/null @@ -1 +0,0 @@ -dcbec6a76eddadd63b5139e296e28f600201c37f SOURCES/virt-what-1.25.tar.gz 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 deleted file mode 100644 index a70ad4e..0000000 --- a/SOURCES/0001-Rearrange-lxc-test-to-avoid-use-of-cat.patch +++ /dev/null @@ -1,27 +0,0 @@ -From a29d4a5632ff9f60f939e4f0f36ce97ed43c5650 Mon Sep 17 00:00:00 2001 -From: "Richard W.M. Jones" -Date: Thu, 22 Dec 2022 10:31:47 +0000 -Subject: [PATCH] Rearrange lxc test to avoid use of cat - -Thanks: Elias Probst ---- - virt-what.in | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/virt-what.in b/virt-what.in -index d090898e5..170bc24ab 100644 ---- a/virt-what.in -+++ b/virt-what.in -@@ -175,7 +175,8 @@ fi - # Added by Marc Fournier - - if [ -e "${root}/proc/1/environ" ] && -- cat "${root}/proc/1/environ" | tr '\000' '\n' | grep -Eiq '^container=lxc'; then -+ tr '\000' '\n' < "${root}/proc/1/environ" | -+ grep -Eiq '^container=lxc'; then - echo lxc - fi - --- -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 deleted file mode 100644 index 68ac80e..0000000 --- a/SOURCES/0002-Move-docker-and-podman-tests-up-add-comments.patch +++ /dev/null @@ -1,83 +0,0 @@ -From 57966df6adddbebc4f4a6b9db7680d99344b0b1c Mon Sep 17 00:00:00 2001 -From: "Richard W.M. Jones" -Date: Thu, 22 Dec 2022 10:34:03 +0000 -Subject: [PATCH] Move docker and podman tests up, add comments - -Refactor to bring related tests closer together and make the comments -more uniform. ---- - virt-what.in | 31 +++++++++++++++---------------- - 1 file changed, 15 insertions(+), 16 deletions(-) - -diff --git a/virt-what.in b/virt-what.in -index 170bc24ab..c6e4a1e00 100644 ---- a/virt-what.in -+++ b/virt-what.in -@@ -165,7 +165,6 @@ fi - # /proc/vz - always exists if OpenVZ kernel is running (inside and outside - # container) - # /proc/bc - exists on node, but not inside container. -- - if [ -d "${root}/proc/vz" -a ! -d "${root}/proc/bc" ]; then - echo openvz - fi -@@ -173,13 +172,13 @@ fi - # Check for LXC containers - # http://www.freedesktop.org/wiki/Software/systemd/ContainerInterface - # Added by Marc Fournier -- - if [ -e "${root}/proc/1/environ" ] && - tr '\000' '\n' < "${root}/proc/1/environ" | - grep -Eiq '^container=lxc'; then - echo lxc - fi - -+# Check for Illumos LX - if [ -e "${root}/proc/1/environ" ] && - tr '\0' '\n' < "${root}/proc/1/environ" | grep -q '^container=zone$' && - [ -e "${root}/proc/version" ] && -@@ -187,6 +186,20 @@ if [ -e "${root}/proc/1/environ" ] && - echo illumos-lx - fi - -+# Check for Docker. -+if [ -f "${root}/.dockerenv" ] || [ -f "${root}/.dockerinit" ] || \ -+ grep -qF /docker/ "${root}/proc/self/cgroup" 2>/dev/null; then -+ echo docker -+fi -+ -+# Check for Podman. -+if [ -e "${root}/proc/1/environ" ] && -+ cat "${root}/proc/1/environ" | tr '\000' '\n' | grep -Eiq '^container=podman'; then -+ echo podman -+elif grep -qF /libpod- "${root}/proc/self/cgroup" 2>/dev/null; then -+ echo podman -+fi -+ - # Check for Linux-VServer - if test -e "${root}/proc/self/status" \ - && cat "${root}/proc/self/status" | grep -q "VxID: [0-9]*"; then -@@ -381,20 +394,6 @@ if ! "$skip_lkvm"; then - fi - fi - --# Check for Docker. --if [ -f "${root}/.dockerenv" ] || [ -f "${root}/.dockerinit" ] || \ -- grep -qF /docker/ "${root}/proc/self/cgroup" 2>/dev/null; then -- echo docker --fi -- --# Check for Podman. --if [ -e "${root}/proc/1/environ" ] && -- cat "${root}/proc/1/environ" | tr '\000' '\n' | grep -Eiq '^container=podman'; then -- echo podman --elif grep -qF /libpod- "${root}/proc/self/cgroup" 2>/dev/null; then -- echo podman --fi -- - # Check ppc64 lpar, kvm or powerkvm - - # example /proc/cpuinfo line indicating 'not baremetal' --- -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 deleted file mode 100644 index 8f408e6..0000000 --- a/SOURCES/0003-podman-Fix-location-of-test-file-proc-1-environ.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 1cbcbb801c86f8f791ecd930c4ac311f034e3e1a Mon Sep 17 00:00:00 2001 -From: "Richard W.M. Jones" -Date: Thu, 5 Jan 2023 12:48:55 +0000 -Subject: [PATCH] podman: Fix location of test file /proc/1/environ - -Since it was at the wrong location, the file was not even used by the -test. - -Fixes: commit 1df728aa4b ("Add podman support") ---- - tests/podman/Makefile.am | 2 +- - tests/podman/{ => proc}/1/environ | Bin - 2 files changed, 1 insertion(+), 1 deletion(-) - rename tests/podman/{ => proc}/1/environ (100%) - -diff --git a/tests/podman/Makefile.am b/tests/podman/Makefile.am -index 2962f3237..1745ef6c6 100644 ---- a/tests/podman/Makefile.am -+++ b/tests/podman/Makefile.am -@@ -20,8 +20,8 @@ CLEANFILES = *~ - TESTS = test.sh - - EXTRA_DIST = \ -- 1/environ \ - test.sh \ -+ proc/1/environ \ - proc/cpuinfo \ - proc/self/cgroup \ - proc/self/status \ -diff --git a/tests/podman/1/environ b/tests/podman/proc/1/environ -similarity index 100% -rename from tests/podman/1/environ -rename to tests/podman/proc/1/environ --- -2.39.1 - diff --git a/SOURCES/0004-Detect-OCI-containers.patch b/SOURCES/0004-Detect-OCI-containers.patch deleted file mode 100644 index 793894a..0000000 --- a/SOURCES/0004-Detect-OCI-containers.patch +++ /dev/null @@ -1,888 +0,0 @@ -From 54c2ad4a764658ec8a9aadc52c749eabf1de73a0 Mon Sep 17 00:00:00 2001 -From: "Richard W.M. Jones" -Date: Thu, 5 Jan 2023 12:34:02 +0000 -Subject: [PATCH] Detect OCI containers - -Podman using OCI containers sets container=oci in PID 1's environment. -Detect that and print "oci" fact. - -This patch was originally contributed by Alessandro Valentini. I -modified it and added tests and documentation. - -Reported-by: Alessandro Valentini -Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=2155233 ---- - configure.ac | 2 + - tests/oci/Makefile.am | 28 ++ - tests/oci/proc/1/environ | Bin 0 -> 124 bytes - tests/oci/proc/cpuinfo | 671 ++++++++++++++++++++++++++ - tests/oci/sbin/dmidecode | 7 + - tests/oci/sbin/uname | 2 + - tests/oci/sbin/virt-what-cpuid-helper | 2 + - tests/oci/test.sh | 32 ++ - virt-what.in | 6 + - virt-what.pod | 8 +- - 10 files changed, 757 insertions(+), 1 deletion(-) - create mode 100644 tests/oci/Makefile.am - create mode 100644 tests/oci/proc/1/environ - create mode 100644 tests/oci/proc/cpuinfo - create mode 100755 tests/oci/sbin/dmidecode - create mode 100755 tests/oci/sbin/uname - create mode 100755 tests/oci/sbin/virt-what-cpuid-helper - create mode 100755 tests/oci/test.sh - -diff --git a/configure.ac b/configure.ac -index 8f808a38b..a80a4b6f0 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -56,6 +56,7 @@ tests="\ - lx86 \ - lxc \ - nutanix-ahv \ -+ oci \ - parallels-desktop \ - podman \ - ppc64-baremetal \ -@@ -104,6 +105,7 @@ AC_CONFIG_FILES([Makefile - tests/lx86/Makefile - tests/lxc/Makefile - tests/nutanix-ahv/Makefile -+ tests/oci/Makefile - tests/parallels-desktop/Makefile - tests/podman/Makefile - tests/ppc64-baremetal/Makefile -diff --git a/tests/oci/Makefile.am b/tests/oci/Makefile.am -new file mode 100644 -index 000000000..b2f6f2469 ---- /dev/null -+++ b/tests/oci/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/oci/proc/1/environ b/tests/oci/proc/1/environ -new file mode 100644 -index 0000000000000000000000000000000000000000..03d40a45377eaeccef15532734d2f5b7fd42234e -GIT binary patch -literal 124 -zcmWG=4DqnlFD)+8&&f|t%+W7S%FMGu;={QJ39t}^3uH2cxCZ&!R+OX` -+ -+The guest is running in an OCI container. -+ -+Status: contributed by Alessandro Valentini, confirmed by RWMJ -+ - =item B - - The guest appears to be running inside an OpenVZ or Virtuozzo -@@ -226,7 +232,7 @@ Status: contributed by Justin Clift - - =item B - --This is a Podman container. -+This is a Podman container. (See also C above.) - - Status: contributed by Jordan Webb - --- -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 deleted file mode 100644 index 7581ab3..0000000 --- a/SOURCES/0005-Add-support-for-Alibaba-cloud-on-aarch64.patch +++ /dev/null @@ -1,371 +0,0 @@ -From 04b504c47e0dc43c82b0d413a253d0599ce83321 Mon Sep 17 00:00:00 2001 -From: Yongkui Guo -Date: Mon, 30 Jan 2023 18:20:32 +0800 -Subject: [PATCH] Add support for Alibaba cloud on aarch64 - -This assumes you are running RHEL or another tenant which supports -ACPI. It probably won't work for guests using device tree. - -Also we assume that the hypervisor is KVM. Since the hypervisor -indicates that it is RHEL 7, this is very likely to be true, but hard -to prove since there is no CPUID on Arm. - -Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=2165285 -(cherry picked from commit 805604762468b754ea60e5dc176fa26f68d211b8) ---- - configure.ac | 2 + - tests/alibaba-cloud-arm/Makefile.am | 28 +++++ - tests/alibaba-cloud-arm/proc/cpuinfo | 18 +++ - tests/alibaba-cloud-arm/proc/self/status | 57 +++++++++ - tests/alibaba-cloud-arm/sbin/dmidecode | 116 ++++++++++++++++++ - tests/alibaba-cloud-arm/sbin/uname | 2 + - .../sbin/virt-what-cpuid-helper | 3 + - tests/alibaba-cloud-arm/test.sh | 33 +++++ - virt-what.in | 5 + - 9 files changed, 264 insertions(+) - create mode 100644 tests/alibaba-cloud-arm/Makefile.am - create mode 100644 tests/alibaba-cloud-arm/proc/cpuinfo - create mode 100644 tests/alibaba-cloud-arm/proc/self/status - create mode 100755 tests/alibaba-cloud-arm/sbin/dmidecode - create mode 100755 tests/alibaba-cloud-arm/sbin/uname - create mode 100755 tests/alibaba-cloud-arm/sbin/virt-what-cpuid-helper - create mode 100755 tests/alibaba-cloud-arm/test.sh - -diff --git a/configure.ac b/configure.ac -index a80a4b6f0..cfb7ca371 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -34,6 +34,7 @@ AM_CONDITIONAL([HOST_CPU_IA64], [ test "x$host_cpu" = "xia64" ]) - - dnl List of tests. - tests="\ -+ alibaba-cloud-arm \ - alibaba-cloud-x86 \ - aws-baremetal-x86 \ - aws-kvm-arm \ -@@ -83,6 +84,7 @@ AC_CONFIG_HEADERS([config.h]) - AC_CONFIG_FILES([virt-what],[chmod +x virt-what]) - AC_CONFIG_FILES([Makefile - tests/Makefile -+ tests/alibaba-cloud-arm/Makefile - tests/alibaba-cloud-x86/Makefile - tests/aws-baremetal-x86/Makefile - tests/aws-kvm-arm/Makefile -diff --git a/tests/alibaba-cloud-arm/Makefile.am b/tests/alibaba-cloud-arm/Makefile.am -new file mode 100644 -index 000000000..09ce07861 ---- /dev/null -+++ b/tests/alibaba-cloud-arm/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/cpuinfo \ -+ proc/self/status \ -+ sbin/dmidecode \ -+ sbin/uname \ -+ sbin/virt-what-cpuid-helper -diff --git a/tests/alibaba-cloud-arm/proc/cpuinfo b/tests/alibaba-cloud-arm/proc/cpuinfo -new file mode 100644 -index 000000000..03dbb22ab ---- /dev/null -+++ b/tests/alibaba-cloud-arm/proc/cpuinfo -@@ -0,0 +1,18 @@ -+processor : 0 -+BogoMIPS : 50.00 -+Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp ssbs -+CPU implementer : 0x41 -+CPU architecture: 8 -+CPU variant : 0x3 -+CPU part : 0xd0c -+CPU revision : 1 -+ -+processor : 1 -+BogoMIPS : 50.00 -+Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp ssbs -+CPU implementer : 0x41 -+CPU architecture: 8 -+CPU variant : 0x3 -+CPU part : 0xd0c -+CPU revision : 1 -+ -diff --git a/tests/alibaba-cloud-arm/proc/self/status b/tests/alibaba-cloud-arm/proc/self/status -new file mode 100644 -index 000000000..08c63e9cb ---- /dev/null -+++ b/tests/alibaba-cloud-arm/proc/self/status -@@ -0,0 +1,57 @@ -+Name: cat -+Umask: 0022 -+State: R (running) -+Tgid: 6341 -+Ngid: 0 -+Pid: 6341 -+PPid: 1588 -+TracerPid: 0 -+Uid: 0 0 0 0 -+Gid: 0 0 0 0 -+FDSize: 256 -+Groups: 0 -+NStgid: 6341 -+NSpid: 6341 -+NSpgid: 6341 -+NSsid: 1588 -+VmPeak: 2352 kB -+VmSize: 2352 kB -+VmLck: 0 kB -+VmPin: 0 kB -+VmHWM: 768 kB -+VmRSS: 768 kB -+RssAnon: 80 kB -+RssFile: 688 kB -+RssShmem: 0 kB -+VmData: 348 kB -+VmStk: 132 kB -+VmExe: 24 kB -+VmLib: 1728 kB -+VmPTE: 44 kB -+VmSwap: 0 kB -+HugetlbPages: 0 kB -+CoreDumping: 0 -+THP_enabled: 1 -+Threads: 1 -+SigQ: 0/29002 -+SigPnd: 0000000000000000 -+ShdPnd: 0000000000000000 -+SigBlk: 0000000000000000 -+SigIgn: 0000000000000000 -+SigCgt: 0000000000000000 -+CapInh: 0000000000000000 -+CapPrm: 000001ffffffffff -+CapEff: 000001ffffffffff -+CapBnd: 000001ffffffffff -+CapAmb: 0000000000000000 -+NoNewPrivs: 0 -+Seccomp: 0 -+Seccomp_filters: 0 -+Speculation_Store_Bypass: thread vulnerable -+SpeculationIndirectBranch: unknown -+Cpus_allowed: 3 -+Cpus_allowed_list: 0-1 -+Mems_allowed: 00000000,00000001 -+Mems_allowed_list: 0 -+voluntary_ctxt_switches: 0 -+nonvoluntary_ctxt_switches: 0 -diff --git a/tests/alibaba-cloud-arm/sbin/dmidecode b/tests/alibaba-cloud-arm/sbin/dmidecode -new file mode 100755 -index 000000000..89fa9a34b ---- /dev/null -+++ b/tests/alibaba-cloud-arm/sbin/dmidecode -@@ -0,0 +1,116 @@ -+#!/bin/sh - -+cat <<'EOF' -+# dmidecode 3.3 -+Getting SMBIOS data from sysfs. -+SMBIOS 3.0.0 present. -+Table at 0x2348C0000. -+ -+Handle 0x0100, DMI type 1, 27 bytes -+System Information -+ Manufacturer: Alibaba Cloud -+ Product Name: Alibaba Cloud ECS -+ Version: virt-rhel7.6.0 -+ Serial Number: 8c43355a-242e-42c2-bdf7-9fae99316221 -+ UUID: 8c43355a-242e-42c2-bdf7-9fae99316221 -+ Wake-up Type: Power Switch -+ SKU Number: Not Specified -+ Family: Red Hat Enterprise Linux -+ -+Handle 0x0300, DMI type 3, 21 bytes -+Chassis Information -+ Manufacturer: Alibaba Cloud -+ Type: Other -+ Lock: Not Present -+ Version: virt-rhel7.6.0 -+ Serial Number: Not Specified -+ Asset Tag: Not Specified -+ Boot-up State: Safe -+ Power Supply State: Safe -+ Thermal State: Safe -+ Security Status: Unknown -+ OEM Information: 0x00000000 -+ Height: Unspecified -+ Number Of Power Cords: Unspecified -+ Contained Elements: 0 -+ -+Handle 0x0400, DMI type 4, 42 bytes -+Processor Information -+ Socket Designation: CPU 0 -+ Type: Central Processor -+ Family: Other -+ Manufacturer: Alibaba Cloud -+ ID: 00 00 00 00 00 00 00 00 -+ Version: virt-rhel7.6.0 -+ Voltage: Unknown -+ External Clock: Unknown -+ Max Speed: 2000 MHz -+ Current Speed: 2000 MHz -+ Status: Populated, Enabled -+ Upgrade: Other -+ L1 Cache Handle: Not Provided -+ L2 Cache Handle: Not Provided -+ L3 Cache Handle: Not Provided -+ Serial Number: Not Specified -+ Asset Tag: Not Specified -+ Part Number: Not Specified -+ Core Count: 2 -+ Core Enabled: 2 -+ Thread Count: 1 -+ Characteristics: None -+ -+Handle 0x1000, DMI type 16, 23 bytes -+Physical Memory Array -+ Location: Other -+ Use: System Memory -+ Error Correction Type: Multi-bit ECC -+ Maximum Capacity: 8 GB -+ Error Information Handle: Not Provided -+ Number Of Devices: 1 -+ -+Handle 0x1100, DMI type 17, 40 bytes -+Memory Device -+ Array Handle: 0x1000 -+ Error Information Handle: Not Provided -+ Total Width: Unknown -+ Data Width: Unknown -+ Size: 8 GB -+ Form Factor: DIMM -+ Set: None -+ Locator: DIMM 0 -+ Bank Locator: Not Specified -+ Type: RAM -+ Type Detail: Other -+ Speed: Unknown -+ Manufacturer: Alibaba Cloud -+ Serial Number: Not Specified -+ Asset Tag: Not Specified -+ Part Number: Not Specified -+ Rank: Unknown -+ Configured Memory Speed: Unknown -+ Minimum Voltage: Unknown -+ Maximum Voltage: Unknown -+ Configured Voltage: Unknown -+ -+Handle 0x2000, DMI type 32, 11 bytes -+System Boot Information -+ Status: No errors detected -+ -+Handle 0x0000, DMI type 0, 26 bytes -+BIOS Information -+ Vendor: EFI Development Kit II / OVMF -+ Version: 0.0.0 -+ Release Date: 02/06/2015 -+ Address: 0xE8000 -+ Runtime Size: 96 kB -+ ROM Size: 64 kB -+ Characteristics: -+ BIOS characteristics not supported -+ Targeted content distribution is supported -+ UEFI is supported -+ System is a virtual machine -+ BIOS Revision: 0.0 -+ -+Handle 0xFEFF, DMI type 127, 4 bytes -+End Of Table -+ -+EOF -diff --git a/tests/alibaba-cloud-arm/sbin/uname b/tests/alibaba-cloud-arm/sbin/uname -new file mode 100755 -index 000000000..bd33a2d73 ---- /dev/null -+++ b/tests/alibaba-cloud-arm/sbin/uname -@@ -0,0 +1,2 @@ -+#!/bin/sh - -+echo aarch64 -diff --git a/tests/alibaba-cloud-arm/sbin/virt-what-cpuid-helper b/tests/alibaba-cloud-arm/sbin/virt-what-cpuid-helper -new file mode 100755 -index 000000000..08e293436 ---- /dev/null -+++ b/tests/alibaba-cloud-arm/sbin/virt-what-cpuid-helper -@@ -0,0 +1,3 @@ -+#!/bin/sh - -+# Arm, so no cpuid. -+# No output, exits with 0. -diff --git a/tests/alibaba-cloud-arm/test.sh b/tests/alibaba-cloud-arm/test.sh -new file mode 100755 -index 000000000..1e7360931 ---- /dev/null -+++ b/tests/alibaba-cloud-arm/test.sh -@@ -0,0 +1,33 @@ -+# Test for Alibaba Cloud -+# Copyright (C) 2018-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="alibaba_cloud -+kvm" -+ -+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 102e23f67..fbf8c54c5 100644 ---- a/virt-what.in -+++ b/virt-what.in -@@ -354,6 +354,11 @@ if ! "$skip_qemu_kvm"; then - # This is for AWS Graviton (Arm) systems which don't have CPUID. - echo kvm - skip_lkvm=true -+ elif echo "$dmi" | grep -q 'Manufacturer: Alibaba Cloud' && -+ echo "$dmi" | grep -q 'System is a virtual machine'; then -+ # This is for Alibaba Arm systems which don't have CPUID. -+ echo kvm -+ skip_lkvm=true - elif echo "$dmi" | grep -q 'Manufacturer: QEMU'; then - # The test for KVM above failed, so now we know we're - # not using KVM acceleration. --- -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 deleted file mode 100644 index da9099e..0000000 --- a/SOURCES/0006-Add-support-for-CRI-O-containers.patch +++ /dev/null @@ -1,1552 +0,0 @@ -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/copy-patches.sh similarity index 98% rename from SOURCES/copy-patches.sh rename to copy-patches.sh index 85608e7..a06bf23 100755 --- a/SOURCES/copy-patches.sh +++ b/copy-patches.sh @@ -8,7 +8,7 @@ set -e # ./copy-patches.sh project=virt-what -rhel_version=8.9 +rhel_version=10.0 # Check we're in the right directory. if [ ! -f $project.spec ]; then diff --git a/sources b/sources new file mode 100644 index 0000000..2095ddf --- /dev/null +++ b/sources @@ -0,0 +1,2 @@ +SHA512 (libguestfs.keyring) = 297a15edc7c220222b9f650e0a9361ae132d3f0fed04aeb2237a1d9c3f6dac6f336846434f66480faed72635a33f659e849b052e74b88d1508aeff03f8c9a2ac +SHA512 (virt-what-1.27.tar.gz) = 8d10111e38a87504daccf36e9386863aa92308c96be65164412d92c56c12d42f38e6e251fabe7945ce74e1419fc82c0ac3cdbd0f25b19cd72feda2e199307d6f diff --git a/virt-what-1.27.tar.gz.sig b/virt-what-1.27.tar.gz.sig new file mode 100644 index 0000000..551bdfa --- /dev/null +++ b/virt-what-1.27.tar.gz.sig @@ -0,0 +1,17 @@ +-----BEGIN PGP SIGNATURE----- + +iQJFBAABCAAvFiEE93dPsa0HSn6Mh2fqkXOPc+G3aKAFAmbS4bURHHJpY2hAYW5u +ZXhpYS5vcmcACgkQkXOPc+G3aKDwuw//aneF5kGO24fVlZ2r+gtoE/yKabzpv913 +Y5YNq1otagI/Na5nBiOiCqP9lg8XfW2mCGwYASFx9pQ5AXf9P9u6hf1qzI8ZkNSl +sHqNeQNLBSGySt5ODGYyyA6CWGqhyvNIGalmCqUrAkPoKKya2hJjA70b0F3fsuU1 +G6Hm3Huv9WcUWKnY+2tg3mUu0geWhH6ED6dWiqS1l22wCNG0AorXeBjYV9tFA5T7 +qzUwcif3AN2FP1LFiCOOEqorEgmRtiUUuPPtDXrZWR1csrN7Y/SeOHk4Ik5wHcZ8 +e2+rk6fxPgZp90J1jUw12DELlD9WwoYFRjsyfhgud8hp978CUHG7MZOnNkGCE+HE +jZQ0I5xQ9rRAiw/XpuJFR/E3NF4oZuslMyLYrTGZ5u/feW+EcnHNN8jsj/8LsgA0 +4KWjiNtO4Wy9Kov5hpNKlYwZZ84Pae3ffj0MtyQAsxXwlsBzHOf0AySX5FeY0Zeq +J0EhRyfHNLkeI5n5kIlp4/PcRTItwrUP+cUicTe+PDYYxJJuna5EEl4NmUjOE/76 +v1xE3IqURXoK+cuIm39iZQ1/PDpXIZ0/kcCScs4rwTH4avG/fiNuOVxNXd/vLWcC +tCfW7kXzesgKJfVUijQ6fUtKSC239pGyFKCV1OhpuXlchIm8/iCi/o+G2zcN8itE +XgItGGqncXI= +=dbrV +-----END PGP SIGNATURE----- diff --git a/SPECS/virt-what.spec b/virt-what.spec similarity index 66% rename from SPECS/virt-what.spec rename to virt-what.spec index efe08fc..8eae073 100644 --- a/SPECS/virt-what.spec +++ b/virt-what.spec @@ -1,35 +1,28 @@ Name: virt-what -Version: 1.25 -Release: 4%{?dist} +Version: 1.27 +Release: 2%{?dist} Summary: Detect if we are running in a virtual machine -License: GPLv2+ +License: GPL-2.0-or-later URL: http://people.redhat.com/~rjones/virt-what/ Source0: http://people.redhat.com/~rjones/virt-what/files/%{name}-%{version}.tar.gz +Source1: http://people.redhat.com/~rjones/virt-what/files/%{name}-%{version}.tar.gz.sig + +# Keyring used to verify tarball signature. +Source2: libguestfs.keyring # Maintainer script which helps with handling patches. -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.9 - -# Patches. -Patch0001: 0001-Rearrange-lxc-test-to-avoid-use-of-cat.patch -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 +Source3: copy-patches.sh +BuildRequires: gcc BuildRequires: make BuildRequires: git BuildRequires: autoconf, automake, libtool - -# This is provided by the build root, but we make it explicit -# anyway in case this was dropped from the build root in future. -BuildRequires: gcc BuildRequires: /usr/bin/pod2man +# Required to verify tarball signature. +BuildRequires: gnupg2 + # Required at build time in order to do 'make check' (for getopt). BuildRequires: util-linux @@ -97,6 +90,7 @@ Current types of virtualization detected: %prep +%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}' %autosetup -S git # Always rebuild upstream autotools files. @@ -121,63 +115,99 @@ fi %files %doc README COPYING %{_sbindir}/virt-what +%{_sbindir}/virt-what-cvm %{_libexecdir}/virt-what-cpuid-helper %{_mandir}/man1/*.1* %changelog -* Wed Jun 28 2023 Richard W.M. Jones - 1.25-4 -- Add support for CRI-O containers - resolves: rhbz#2217407 +* Tue Oct 29 2024 Troy Dawson - 1.27-2 +- Bump release for October 2024 mass rebuild: + Resolves: RHEL-64018 -* Mon Jan 30 2023 Richard W.M. Jones - 1.25-3 -- Add support for Alibaba cloud on aarch64 - resolves: rhbz#2165518 +* Mon Sep 09 2024 Richard W.M. Jones - 1.27-1 +- Rebase to Fedora Rawhide + resolves: RHEL-56808 -* Thu Jan 05 2023 Richard W.M. Jones - 1.25-2 -- Add support for OCI containers - resolves: rhbz#2155233 +* Tue Aug 13 2024 Richard W.M. Jones - 1.26-3 +- Backport CVM fixes from upstream + resolves: RHEL-54092 + +* Tue Jul 02 2024 Richard W.M. Jones - 1.26-1 +- New upstream version 1.26 +- Add new binary virt-what-cvm (for confidential VMs). + +* Mon Jun 24 2024 Troy Dawson - 1.25-6 +- Bump release for June 2024 mass rebuild + +* Sat Jan 27 2024 Fedora Release Engineering - 1.25-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sat Jul 22 2023 Fedora Release Engineering - 1.25-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Mon Jun 05 2023 Richard W.M. Jones - 1.25-3 +- Migrated to SPDX license + +* Sat Jan 21 2023 Fedora Release Engineering - 1.25-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild * Wed Aug 17 2022 Richard W.M. Jones - 1.25-1 -- Rebase to 1.25 - resolves: rhbz#2118195 +- New upstream version 1.25 -* Tue Apr 19 2022 Richard W.M. Jones - 1.18-14 -- Add guest detection for RHEL hypervisors - resolves: rhbz#2076628 -- Update patches to 1.22 +* Sat Jul 23 2022 Fedora Release Engineering - 1.24-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild -* Mon Sep 06 2021 Richard W.M. Jones - 1.18-13 -- Support for Docker - resolves: rhbz#2000834 +* Thu Jun 23 2022 Richard W.M. Jones - 1.24-1 +- New upstream version 1.24 +- Update list of supported hypervisors +- Fix %%check for failures -* Fri Jun 18 2021 Richard W.M. Jones - 1.18-12 -- Support for VMware on aarch64 - resolves: rhbz#1959154 +* Thu Apr 14 2022 Richard W.M. Jones - 1.22-2 +- New upstream version 1.22. +- Fix Source0 line. -* Wed Jun 02 2021 Richard W.M. Jones - 1.18-11 -- Add gating tests - resolves: rhbz#1967094 +* Sat Jan 22 2022 Fedora Release Engineering - 1.21-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild -* Wed Apr 28 2021 Richard W.M. Jones - 1.18-10 -- Rebuild for fixed binutils on aarch64 - resolves: rhbz#1954455 +* Fri Jul 23 2021 Fedora Release Engineering - 1.21-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild -* Tue Apr 13 2021 Richard W.M. Jones - 1.18-9 -- Fix crash on non-KVM platforms through incorrect use of CPUID - related: rhbz#1756381 +* Mon Apr 19 2021 Richard W.M. Jones - 1.21-1 +- New upstream version 1.21. -* Tue Dec 10 2019 Richard W.M. Jones - 1.18-8 -- Add support for Nutanix AHV - resolves: rhbz#1756381 -- Add all patches since 1.18 was released, up to 1.20 and beyond. +* Tue Apr 13 2021 Richard W.M. Jones - 1.21-0.1 +- Add all patches since 1.20 in preparation for 1.21 release. -* Thu Mar 21 2019 Richard W.M. Jones - 1.18-7 -- Add gating tests resolves: rhbz#1682785 +* Wed Jan 27 2021 Fedora Release Engineering - 1.20-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild -* Wed Oct 31 2018 Richard W.M. Jones - 1.18-6 -- Add further patches to fix AWS support - resolves: rhbz#1644497 +* Wed Jul 29 2020 Fedora Release Engineering - 1.20-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Tue Jul 14 2020 Tom Stellard - 1.20-3 +- Use make macros +- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro + +* Fri Jan 31 2020 Fedora Release Engineering - 1.20-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Oct 3 2019 Richard W.M. Jones - 1.20-1 +- New upstream version 1.20. + +* Sat Jul 27 2019 Fedora Release Engineering - 1.19-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sun Feb 03 2019 Fedora Release Engineering - 1.19-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Wed Oct 31 2018 Richard W.M. Jones - 1.19-1 +- New upstream version 1.19. +- Fixes support for AWS. +- Remove patches which are now upstream. + +* Sat Jul 14 2018 Fedora Release Engineering - 1.18-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild * Fri Feb 09 2018 Fedora Release Engineering - 1.18-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild