stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Kernel 6.9 regression: X86: Bogus messages from topology detection
@ 2024-05-27  7:29 Peter Schneider
  2024-05-27 13:14 ` Thomas Gleixner
  0 siblings, 1 reply; 29+ messages in thread
From: Peter Schneider @ 2024-05-27  7:29 UTC (permalink / raw)
  To: Thomas Gleixner; +Cc: LKML, x86, stable, regressions


[-- Attachment #1.1.1: Type: text/plain, Size: 9376 bytes --]

Hi all,

I have noticed strange messages in kernel version 6.9, obviously from CPU topology 
detection, which were not present in 6.8.y and earlier kernels.

This is coming from an older server machine: 2-socket Ivy Bridge Xeon E5-2697 v2 (24C/48T) 
in an Asus Z9PE-D16/2L motherboard (Intel C-602A chipset); BIOS patched to the latest 
available from Asus. All memory slots occupied, so 256 GB RAM in total.


 From a "good boot", e.g. kernel 6.8.11, dmesg output looks like this:

[    1.823797] smpboot: x86: Booting SMP configuration:
[    1.823799] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11
[    1.827514] .... node  #1, CPUs:   #12 #13 #14 #15 #16 #17 #18 #19 #20 #21 #22 #23
[    0.011462] smpboot: CPU 12 Converting physical 0 to logical die 1

[    1.875532] .... node  #0, CPUs:   #24 #25 #26 #27 #28 #29 #30 #31 #32 #33 #34 #35
[    1.882453] .... node  #1, CPUs:   #36 #37 #38 #39 #40 #41 #42 #43 #44 #45 #46 #47
[    1.887532] MDS CPU bug present and SMT on, data leak possible. See 
https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    1.933640] smp: Brought up 2 nodes, 48 CPUs
[    1.933640] smpboot: Max logical packages: 2
[    1.933640] smpboot: Total of 48 processors activated (259199.61 BogoMIPS)


 From a "bad" boot, e.g. kernel 6.9.2, dmesg output has these messages in it:

[    1.785937] smpboot: x86: Booting SMP configuration:
[    1.785939] .... node  #0, CPUs:        #4
[    1.786215] .... node  #1, CPUs:   #12 #16
[    1.793547] MDS CPU bug present and SMT on, data leak possible. See 
https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.

[    1.797547] .... node  #0, CPUs:    #1  #2  #3  #5  #6  #7  #8  #9 #10 #11
[    1.801858] .... node  #1, CPUs:   #13 #14 #15 #17 #18 #19 #20 #21 #22 #23
[    1.804687] .... node  #0, CPUs:   #24 #25 #26 #27 #28 #29 #30 #31 #32 #33 #34 #35
[    1.810728] .... node  #1, CPUs:   #36 #37 #38 #39 #40 #41 #42 #43 #44 #45 #46 #47
[    1.901547] smp: Brought up 2 nodes, 48 CPUs
[    1.901547] smpboot: Total of 48 processors activated (259207.87 BogoMIPS)
[    1.903803] BUG: arch topology borken
[    1.903879]      the SMT domain not a subset of the CLS domain
[    1.903970] BUG: arch topology borken
[    1.904040]      the SMT domain not a subset of the CLS domain
[    1.904128] BUG: arch topology borken
[    1.904198]      the SMT domain not a subset of the CLS domain

... and this "BUG" and the following line repeat 48 times which is the number of logical 
CPUs this machine has. Also, there is a funny typo in the message, but that might be 
intended, I guess?! Moreover I noticed, from node #1, CPU #12 detection message is 
missing, so the counting maybe wrong?!

However the machine boots, and except from these strange messages, I cannot detect any 
other abnormal behaviour. It is running ~15 QEMU/KVM virtual machines just fine. Because 
these messages look unusual and a bit scary though, I have bisected the issue, to be able 
to report it here. The first bad commit I found is this one:


22d63660c35eb751c63a709bf901a64c1726592a is the first bad commit
commit 22d63660c35eb751c63a709bf901a64c1726592a
Author: Thomas Gleixner <tglx@linutronix.de>
Date:   Tue Feb 13 22:04:08 2024 +0100

     x86/cpu: Use common topology code for Intel

     Intel CPUs use either topology leaf 0xb/0x1f evaluation or the legacy
     SMP/HT evaluation based on CPUID leaf 0x1/0x4.

     Move it over to the consolidated topology code and remove the random
     topology hacks which are sprinkled into the Intel and the common code.

     No functional change intended.

     Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
     Tested-by: Juergen Gross <jgross@suse.com>
     Tested-by: Sohil Mehta <sohil.mehta@intel.com>
     Tested-by: Michael Kelley <mhklinux@outlook.com>
     Tested-by: Zhang Rui <rui.zhang@intel.com>
     Tested-by: Wang Wendy <wendy.wang@intel.com>
     Tested-by: K Prateek Nayak <kprateek.nayak@amd.com>
     Link: https://lore.kernel.org/r/20240212153624.893644349@linutronix.de

  arch/x86/kernel/cpu/common.c          | 65 -----------------------------------
  arch/x86/kernel/cpu/cpu.h             |  4 ---
  arch/x86/kernel/cpu/intel.c           | 25 --------------
  arch/x86/kernel/cpu/topology.c        | 22 ------------
  arch/x86/kernel/cpu/topology_common.c |  5 ++-
  5 files changed, 4 insertions(+), 117 deletions(-)
root@linus:/usr/src/linux#


I attach my bisect log, and full dmesg output from a good and from a bad kernel version.

Moreover, the last 3 bad kernels from my bisect session did not boot at all, including the 
one with commit SHA1 from the first bad commit above. These kernels also had the series of 
"BUG" messages scrolling through on the console, and then additionally a kernel panic, 
seemingly coming from a divide exception from function init_intel_microcode:


<5>[    5.968685] Key type dns_resolver registered
<4>[    5.974402] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
<4>[    5.977017] divide error: 0000 [#1] PREEMPT SMP PTI
<4>[    5.977116] CPU: 9 PID: 1 Comm: swapper/0 Not tainted 6.8.0-rc4+ #1
<4>[    5.977213] Hardware name: ASUSTeK COMPUTER INC. Z9PE-D16 Series/Z9PE-D16 Series, 
BIOS 5601 06/11/2015
<4>[    5.977337] RIP: 0010:init_intel_microcode+0x3c/0x80
<4>[    5.977436] Code: ff 75 44 40 80 fe 05 76 3e 48 8b 05 b6 45 f7 ff a9 00 00 00 40 75 
30 8b 05 85 46 f7 ff 0f b7 0d aa 46 f7 ff 31 d2 48 c1 e0 0a <48> f7 f1 89 05 9b f9 46 ff 
48 c7 c0 c0 98 e4 a8 31 d2 31 c9 31 f6
<4>[    5.977602] RSP: 0000:ffffb79b8008fd80 EFLAGS: 00010206
<4>[    5.977697] RAX: 0000000001e00000 RBX: 0000000000000000 RCX: 0000000000000000
<4>[    5.977795] RDX: 0000000000000000 RSI: 0000000000000006 RDI: 0000000000000000
<4>[    5.977894] RBP: ffffb79b8008fdf8 R08: 0000000000000000 R09: 0000000000000000
<4>[    5.977992] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
<4>[    5.978090] R13: 000000000000019a R14: ffffb79b8008fe08 R15: ffff96ad4026cf00
<4>[    5.978187] FS:  0000000000000000(0000) GS:ffff96cc3fa40000(0000) knlGS:0000000000000000
<4>[    5.978308] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
<4>[    5.978402] CR2: 0000000000000000 CR3: 0000000e6d236001 CR4: 00000000001706f0
<4>[    5.978500] Call Trace:
<4>[    5.978588]  <TASK>
<4>[    5.978675]  ? show_regs+0x6d/0x80
<4>[    5.978767]  ? die+0x37/0xa0
<4>[    5.978857]  ? do_trap+0xd4/0xf0
<4>[    5.978948]  ? do_error_trap+0x71/0xb0
<4>[    5.979040]  ? init_intel_microcode+0x3c/0x80
<4>[    5.979131]  ? exc_divide_error+0x3a/0x70
<4>[    5.979226]  ? init_intel_microcode+0x3c/0x80
<4>[    5.979317]  ? asm_exc_divide_error+0x1b/0x20
<4>[    5.979427]  ? init_intel_microcode+0x3c/0x80
<4>[    5.979520]  ? microcode_init+0x196/0x260
<4>[    5.979612]  ? __pfx_microcode_init+0x10/0x10
<4>[    5.979718]  do_one_initcall+0x5e/0x340
<4>[    5.979813]  kernel_init_freeable+0x322/0x490
<4>[    5.979906]  ? __pfx_kernel_init+0x10/0x10
<4>[    5.979998]  kernel_init+0x1b/0x200
<4>[    5.980089]  ret_from_fork+0x47/0x70
<4>[    5.980180]  ? __pfx_kernel_init+0x10/0x10
<4>[    5.980272]  ret_from_fork_asm+0x1b/0x30
<4>[    5.980364]  </TASK>
<4>[    5.980450] Modules linked in:
<4>[    5.980544] ---[ end trace 0000000000000000 ]---
<4>[    6.959943] RIP: 0010:init_intel_microcode+0x3c/0x80
<4>[    6.960041] Code: ff 75 44 40 80 fe 05 76 3e 48 8b 05 b6 45 f7 ff a9 00 00 00 40 75 
30 8b 05 85 46 f7 ff 0f b7 0d aa 46 f7 ff 31 d2 48 c1 e0 0a <48> f7 f1 89 05 9b f9 46 ff 
48 c7 c0 c0 98 e4 a8 31 d2 31 c9 31 f6
<4>[    6.960207] RSP: 0000:ffffb79b8008fd80 EFLAGS: 00010206
<4>[    6.960316] RAX: 0000000001e00000 RBX: 0000000000000000 RCX: 0000000000000000
<4>[    6.960414] RDX: 0000000000000000 RSI: 0000000000000006 RDI: 0000000000000000
<4>[    6.960512] RBP: ffffb79b8008fdf8 R08: 0000000000000000 R09: 0000000000000000
<4>[    6.960610] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
<4>[    6.960708] R13: 000000000000019a R14: ffffb79b8008fe08 R15: ffff96ad4026cf00
<4>[    6.960806] FS:  0000000000000000(0000) GS:ffff96cc3fa40000(0000) knlGS:0000000000000000
<4>[    6.960927] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
<4>[    6.961021] CR2: 0000000000000000 CR3: 0000000e6d236001 CR4: 00000000001706f0
<0>[    6.961120] Kernel panic - not syncing: Attempted to kill init! exitcode=0x0000000b
<0>[    6.961312] Kernel Offset: 0x25c00000 from 0xffffffff81000000 (relocation range: 
0xffffffff80000000-0xffffffffbfffffff)


I also attached full dmesg log file "dmesg-erst-7373208397568540677" of this panic which I 
could find in /var/lib/systemd/pstore.


Beste Grüße,
Peter Schneider

-- 
Climb the mountain not to plant your flag, but to embrace the challenge,
enjoy the air and behold the view. Climb it so you can see the world,
not so the world can see you.                    -- David McCullough Jr.

OpenPGP:  0xA3828BD796CCE11A8CADE8866E3A92C92C3FF244
Download: https://www.peters-netzplatz.de/download/pschneider1968_pub.asc
https://keys.mailvelope.com/pks/lookup?op=get&search=pschneider1968@googlemail.com
https://keys.mailvelope.com/pks/lookup?op=get&search=pschneider1968@gmail.com

[-- Attachment #1.1.2: git_bisect.log --]
[-- Type: text/plain, Size: 3117 bytes --]

git bisect start
# Status: warte auf guten und schlechten Commit
# good: [f610c358956229b7e5180f8c1147725d989f6b0d] Linux 6.8.11
git bisect good f610c358956229b7e5180f8c1147725d989f6b0d
# bad: [c8eef176690851911d8b70d798152e7314b0f7dc] Linux 6.9.2
git bisect bad c8eef176690851911d8b70d798152e7314b0f7dc
# good: [e8f897f4afef0031fe618a8e94127a0934896aba] Linux 6.8
git bisect good e8f897f4afef0031fe618a8e94127a0934896aba
# bad: [480e035fc4c714fb5536e64ab9db04fedc89e910] Merge tag 'drm-next-2024-03-13' of https://gitlab.freedesktop.org/drm/kernel
git bisect bad 480e035fc4c714fb5536e64ab9db04fedc89e910
# bad: [9187210eee7d87eea37b45ea93454a88681894a4] Merge tag 'net-next-6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next
git bisect bad 9187210eee7d87eea37b45ea93454a88681894a4
# bad: [a01c9fe32378636ae65bec8047b5de3fdb2ba5c8] Merge tag 'nfsd-6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux
git bisect bad a01c9fe32378636ae65bec8047b5de3fdb2ba5c8
# bad: [691632f0e86973604678d193ccfa47b9614581aa] Merge tag 's390-6.9-1' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux
git bisect bad 691632f0e86973604678d193ccfa47b9614581aa
# good: [8ede842f669b6f78812349bbef4d1efd0fbdafce] Merge tag 'rust-6.9' of https://github.com/Rust-for-Linux/linux
git bisect good 8ede842f669b6f78812349bbef4d1efd0fbdafce
# bad: [bfdb395a7cde12d83a623949ed029b0ab38d765b] Merge tag 'x86_mtrr_for_v6.9_rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
git bisect bad bfdb395a7cde12d83a623949ed029b0ab38d765b
# good: [80a76c60e5f6361c497d464bb6da6ea07e908a0e] Merge tag 'timers-ptp-2024-03-10' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
git bisect good 80a76c60e5f6361c497d464bb6da6ea07e908a0e
# bad: [f0551af021308a2a1163dc63d1f1bba3594208bd] x86/topology: Ignore non-present APIC IDs in a present package
git bisect bad f0551af021308a2a1163dc63d1f1bba3594208bd
# bad: [350b5e2730d1e15337a10bd913694ee4527c02f0] x86/mpparse: Remove the physid_t bitmap wrapper
git bisect bad 350b5e2730d1e15337a10bd913694ee4527c02f0
# bad: [bcccdf8b30736250d5057e0940468a41d633e672] x86/apic/uv: Remove the private leaf 0xb parser
git bisect bad bcccdf8b30736250d5057e0940468a41d633e672
# bad: [f7fb3b2dd92c633871b7037773b89531c488a371] x86/cpu: Provide an AMD/HYGON specific topology parser
git bisect bad f7fb3b2dd92c633871b7037773b89531c488a371
# good: [598e719c40d67b1473d78423e941bed4ea6c726d] x86/cpu: Use common topology code for Centaur and Zhaoxin
git bisect good 598e719c40d67b1473d78423e941bed4ea6c726d
# good: [3d41009425225ca5e09016c634ecee513b4713bb] x86/cpu: Provide a sane leaf 0xb/0x1f parser
git bisect good 3d41009425225ca5e09016c634ecee513b4713bb
# bad: [7e3ec6286753b404666af9a58d283690302c9321] x86/cpu/amd: Provide a separate accessor for Node ID
git bisect bad 7e3ec6286753b404666af9a58d283690302c9321
# bad: [22d63660c35eb751c63a709bf901a64c1726592a] x86/cpu: Use common topology code for Intel
git bisect bad 22d63660c35eb751c63a709bf901a64c1726592a
# first bad commit: [22d63660c35eb751c63a709bf901a64c1726592a] x86/cpu: Use common topology code for Intel

[-- Attachment #1.1.3: dmesg_v6.9.2_Bad.txt --]
[-- Type: text/plain, Size: 126368 bytes --]

[    0.000000] Linux version 6.9.2-dirty (root@linus.localdomain) (gcc (Debian 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Sat May 25 22:23:19 CEST 2024
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-6.9.2-dirty root=UUID=3842ebdd-e37f-4e4e-afd4-d7eb79b41984 ro quiet rootdelay=50 intel_iommu=on iommu=pt vfio-pci.ids=10de:1201,10de:0e0c
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000096fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000097000-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007cb5ffff] usable
[    0.000000] BIOS-e820: [mem 0x000000007cb60000-0x000000007cb8cfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007cb8d000-0x000000007cca4fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000007cca5000-0x000000007d8defff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007d8df000-0x000000007eb06fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007eb07000-0x000000007effffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000080000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed3ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000407fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: ASUSTeK COMPUTER INC. Z9PE-D16 Series/Z9PE-D16 Series, BIOS 5601 06/11/2015
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2700.082 MHz processor
[    0.001164] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.001168] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.001175] last_pfn = 0x4080000 max_arch_pfn = 0x400000000
[    0.001186] total RAM covered: 262144M
[    0.001387] Found optimal setting for mtrr clean up
[    0.001389]  gran_size: 64K 	chunk_size: 64K 	num_reg: 8  	lose cover RAM: 0G
[    0.001395] MTRR map: 7 entries (5 fixed + 2 variable; max 25), built from 10 variable MTRRs
[    0.001398] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.002375] e820: update [mem 0x80000000-0xffffffff] usable ==> reserved
[    0.002381] last_pfn = 0x7cb60 max_arch_pfn = 0x400000000
[    0.012883] found SMP MP-table at [mem 0x000fdd40-0x000fdd4f]
[    0.012902] Using GB pages for direct mapping
[    0.013105] RAMDISK: [mem 0x1d6e2000-0x37feefff]
[    0.013109] ACPI: Early table checksum verification disabled
[    0.013114] ACPI: RSDP 0x00000000000F0490 000024 (v02 ALASKA)
[    0.013119] ACPI: XSDT 0x000000007CBC5090 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.013126] ACPI: FACP 0x000000007CBD27D8 00010C (v05 ALASKA A M I    01072009 AMI  00010013)
[    0.013133] ACPI: DSDT 0x000000007CBC51C8 00D609 (v02 ALASKA A M I    00000000 INTL 20051117)
[    0.013138] ACPI: FACS 0x000000007D8D6F80 000040
[    0.013142] ACPI: APIC 0x000000007CBD28E8 000304 (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.013146] ACPI: FPDT 0x000000007CBD2BF0 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.013150] ACPI: MCFG 0x000000007CBD2C38 00003C (v01 ALASKA OEMMCFG. 01072009 MSFT 00000097)
[    0.013154] ACPI: SRAT 0x000000007CBD2C78 0005B0 (v01 A M I  AMI SRAT 00000001 AMI. 00000000)
[    0.013158] ACPI: SLIT 0x000000007CBD3228 000030 (v01 A M I  AMI SLIT 00000000 AMI. 00000000)
[    0.013162] ACPI: HPET 0x000000007CBD3258 000038 (v01 ALASKA A M I    01072009 AMI. 00000005)
[    0.013166] ACPI: DMAR 0x000000007CCA44D0 000168 (v01 A M I  OEMDMAR  00000001 INTL 00000001)
[    0.013170] ACPI: PRAD 0x000000007CBD32E8 0000BE (v02 PRADID PRADTID  00000001 MSFT 03000001)
[    0.013175] ACPI: SPMI 0x000000007CBD33A8 000040 (v05 A M I  OEMSPMI  00000000 AMI. 00000000)
[    0.013179] ACPI: SSDT 0x000000007CBD33E8 0D0CB0 (v02 INTEL  CpuPm    00004000 INTL 20051117)
[    0.013183] ACPI: EINJ 0x000000007CCA4098 000130 (v01 AMI    AMI EINJ 00000000      00000000)
[    0.013187] ACPI: ERST 0x000000007CCA41C8 000230 (v01 AMIER  AMI ERST 00000000      00000000)
[    0.013191] ACPI: HEST 0x000000007CCA43F8 0000A8 (v01 AMI    AMI HEST 00000000      00000000)
[    0.013195] ACPI: BERT 0x000000007CCA44A0 000030 (v01 AMI    AMI BERT 00000000      00000000)
[    0.013198] ACPI: Reserving FACP table memory at [mem 0x7cbd27d8-0x7cbd28e3]
[    0.013200] ACPI: Reserving DSDT table memory at [mem 0x7cbc51c8-0x7cbd27d0]
[    0.013202] ACPI: Reserving FACS table memory at [mem 0x7d8d6f80-0x7d8d6fbf]
[    0.013203] ACPI: Reserving APIC table memory at [mem 0x7cbd28e8-0x7cbd2beb]
[    0.013204] ACPI: Reserving FPDT table memory at [mem 0x7cbd2bf0-0x7cbd2c33]
[    0.013205] ACPI: Reserving MCFG table memory at [mem 0x7cbd2c38-0x7cbd2c73]
[    0.013206] ACPI: Reserving SRAT table memory at [mem 0x7cbd2c78-0x7cbd3227]
[    0.013207] ACPI: Reserving SLIT table memory at [mem 0x7cbd3228-0x7cbd3257]
[    0.013208] ACPI: Reserving HPET table memory at [mem 0x7cbd3258-0x7cbd328f]
[    0.013209] ACPI: Reserving DMAR table memory at [mem 0x7cca44d0-0x7cca4637]
[    0.013210] ACPI: Reserving PRAD table memory at [mem 0x7cbd32e8-0x7cbd33a5]
[    0.013211] ACPI: Reserving SPMI table memory at [mem 0x7cbd33a8-0x7cbd33e7]
[    0.013212] ACPI: Reserving SSDT table memory at [mem 0x7cbd33e8-0x7cca4097]
[    0.013214] ACPI: Reserving EINJ table memory at [mem 0x7cca4098-0x7cca41c7]
[    0.013215] ACPI: Reserving ERST table memory at [mem 0x7cca41c8-0x7cca43f7]
[    0.013216] ACPI: Reserving HEST table memory at [mem 0x7cca43f8-0x7cca449f]
[    0.013217] ACPI: Reserving BERT table memory at [mem 0x7cca44a0-0x7cca44cf]
[    0.013257] SRAT: PXM 0 -> APIC 0x00 -> Node 0
[    0.013260] SRAT: PXM 0 -> APIC 0x01 -> Node 0
[    0.013261] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[    0.013261] SRAT: PXM 0 -> APIC 0x03 -> Node 0
[    0.013262] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[    0.013263] SRAT: PXM 0 -> APIC 0x05 -> Node 0
[    0.013264] SRAT: PXM 0 -> APIC 0x06 -> Node 0
[    0.013265] SRAT: PXM 0 -> APIC 0x07 -> Node 0
[    0.013266] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[    0.013267] SRAT: PXM 0 -> APIC 0x09 -> Node 0
[    0.013268] SRAT: PXM 0 -> APIC 0x0a -> Node 0
[    0.013269] SRAT: PXM 0 -> APIC 0x0b -> Node 0
[    0.013270] SRAT: PXM 0 -> APIC 0x10 -> Node 0
[    0.013271] SRAT: PXM 0 -> APIC 0x11 -> Node 0
[    0.013272] SRAT: PXM 0 -> APIC 0x12 -> Node 0
[    0.013273] SRAT: PXM 0 -> APIC 0x13 -> Node 0
[    0.013274] SRAT: PXM 0 -> APIC 0x14 -> Node 0
[    0.013275] SRAT: PXM 0 -> APIC 0x15 -> Node 0
[    0.013276] SRAT: PXM 0 -> APIC 0x16 -> Node 0
[    0.013277] SRAT: PXM 0 -> APIC 0x17 -> Node 0
[    0.013278] SRAT: PXM 0 -> APIC 0x18 -> Node 0
[    0.013279] SRAT: PXM 0 -> APIC 0x19 -> Node 0
[    0.013280] SRAT: PXM 0 -> APIC 0x1a -> Node 0
[    0.013281] SRAT: PXM 0 -> APIC 0x1b -> Node 0
[    0.013282] SRAT: PXM 1 -> APIC 0x20 -> Node 1
[    0.013283] SRAT: PXM 1 -> APIC 0x21 -> Node 1
[    0.013285] SRAT: PXM 1 -> APIC 0x22 -> Node 1
[    0.013286] SRAT: PXM 1 -> APIC 0x23 -> Node 1
[    0.013287] SRAT: PXM 1 -> APIC 0x24 -> Node 1
[    0.013288] SRAT: PXM 1 -> APIC 0x25 -> Node 1
[    0.013289] SRAT: PXM 1 -> APIC 0x26 -> Node 1
[    0.013290] SRAT: PXM 1 -> APIC 0x27 -> Node 1
[    0.013291] SRAT: PXM 1 -> APIC 0x28 -> Node 1
[    0.013292] SRAT: PXM 1 -> APIC 0x29 -> Node 1
[    0.013293] SRAT: PXM 1 -> APIC 0x2a -> Node 1
[    0.013294] SRAT: PXM 1 -> APIC 0x2b -> Node 1
[    0.013295] SRAT: PXM 1 -> APIC 0x30 -> Node 1
[    0.013296] SRAT: PXM 1 -> APIC 0x31 -> Node 1
[    0.013297] SRAT: PXM 1 -> APIC 0x32 -> Node 1
[    0.013298] SRAT: PXM 1 -> APIC 0x33 -> Node 1
[    0.013299] SRAT: PXM 1 -> APIC 0x34 -> Node 1
[    0.013300] SRAT: PXM 1 -> APIC 0x35 -> Node 1
[    0.013301] SRAT: PXM 1 -> APIC 0x36 -> Node 1
[    0.013302] SRAT: PXM 1 -> APIC 0x37 -> Node 1
[    0.013303] SRAT: PXM 1 -> APIC 0x38 -> Node 1
[    0.013304] SRAT: PXM 1 -> APIC 0x39 -> Node 1
[    0.013305] SRAT: PXM 1 -> APIC 0x3a -> Node 1
[    0.013306] SRAT: PXM 1 -> APIC 0x3b -> Node 1
[    0.013309] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x7fffffff]
[    0.013311] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[    0.013313] ACPI: SRAT: Node 1 PXM 1 [mem 0x2080000000-0x407fffffff]
[    0.013320] NUMA: Initialized distance table, cnt=2
[    0.013325] NUMA: Node 0 [mem 0x00000000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00000000-0x207fffffff]
[    0.013335] NODE_DATA(0) allocated [mem 0x207ffd5000-0x207fffffff]
[    0.013362] NODE_DATA(1) allocated [mem 0x407ffd4000-0x407fffefff]
[    0.013879] Zone ranges:
[    0.013880]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.013882]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.013884]   Normal   [mem 0x0000000100000000-0x000000407fffffff]
[    0.013886]   Device   empty
[    0.013888] Movable zone start for each node
[    0.013891] Early memory node ranges
[    0.013892]   node   0: [mem 0x0000000000001000-0x0000000000096fff]
[    0.013894]   node   0: [mem 0x0000000000100000-0x000000007cb5ffff]
[    0.013895]   node   0: [mem 0x0000000100000000-0x000000207fffffff]
[    0.013912]   node   1: [mem 0x0000002080000000-0x000000407fffffff]
[    0.013929] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fffffff]
[    0.013934] Initmem setup node 1 [mem 0x0000002080000000-0x000000407fffffff]
[    0.013938] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.013977] On node 0, zone DMA: 105 pages in unavailable ranges
[    0.270958] On node 0, zone Normal: 13472 pages in unavailable ranges
[    0.683831] ACPI: PM-Timer IO Port: 0x408
[    0.683871] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.683874] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.683876] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.683877] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.683879] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.683880] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.683882] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.683883] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.683884] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.683886] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.683887] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.683888] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    0.683889] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
[    0.683890] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
[    0.683891] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
[    0.683892] ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
[    0.683893] ACPI: LAPIC_NMI (acpi_id[0x20] high edge lint[0x1])
[    0.683894] ACPI: LAPIC_NMI (acpi_id[0x22] high edge lint[0x1])
[    0.683895] ACPI: LAPIC_NMI (acpi_id[0x24] high edge lint[0x1])
[    0.683896] ACPI: LAPIC_NMI (acpi_id[0x26] high edge lint[0x1])
[    0.683897] ACPI: LAPIC_NMI (acpi_id[0x28] high edge lint[0x1])
[    0.683898] ACPI: LAPIC_NMI (acpi_id[0x2a] high edge lint[0x1])
[    0.683899] ACPI: LAPIC_NMI (acpi_id[0x2c] high edge lint[0x1])
[    0.683900] ACPI: LAPIC_NMI (acpi_id[0x2e] high edge lint[0x1])
[    0.683901] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.683902] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.683903] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.683904] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.683905] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.683906] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.683907] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.683908] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.683909] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.683910] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.683911] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    0.683912] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    0.683913] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
[    0.683914] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
[    0.683915] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
[    0.683916] ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
[    0.683917] ACPI: LAPIC_NMI (acpi_id[0x21] high edge lint[0x1])
[    0.683919] ACPI: LAPIC_NMI (acpi_id[0x23] high edge lint[0x1])
[    0.683920] ACPI: LAPIC_NMI (acpi_id[0x25] high edge lint[0x1])
[    0.683921] ACPI: LAPIC_NMI (acpi_id[0x27] high edge lint[0x1])
[    0.683923] ACPI: LAPIC_NMI (acpi_id[0x29] high edge lint[0x1])
[    0.683924] ACPI: LAPIC_NMI (acpi_id[0x2b] high edge lint[0x1])
[    0.683926] ACPI: LAPIC_NMI (acpi_id[0x2d] high edge lint[0x1])
[    0.683927] ACPI: LAPIC_NMI (acpi_id[0x2f] high edge lint[0x1])
[    0.683942] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.683948] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
[    0.683954] IOAPIC[2]: apic_id 3, version 32, address 0xfec40000, GSI 48-71
[    0.683958] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.683962] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.683969] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.683971] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.683982] TSC deadline timer available
[    0.683990] CPU topo: Max. logical packages:   2
[    0.683992] CPU topo: Max. logical dies:       2
[    0.683993] CPU topo: Max. dies per package:   1
[    0.684000] CPU topo: Max. threads per core:  24
[    0.684003] CPU topo: Num. cores per package:     1
[    0.684005] CPU topo: Num. threads per package:  24
[    0.684006] CPU topo: Allowing 48 present CPUs plus 0 hotplug CPUs
[    0.684027] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.684029] PM: hibernation: Registered nosave memory: [mem 0x00097000-0x0009ffff]
[    0.684031] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.684032] PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.684033] PM: hibernation: Registered nosave memory: [mem 0x7cb60000-0x7cb8cfff]
[    0.684034] PM: hibernation: Registered nosave memory: [mem 0x7cb8d000-0x7cca4fff]
[    0.684035] PM: hibernation: Registered nosave memory: [mem 0x7cca5000-0x7d8defff]
[    0.684036] PM: hibernation: Registered nosave memory: [mem 0x7d8df000-0x7eb06fff]
[    0.684037] PM: hibernation: Registered nosave memory: [mem 0x7eb07000-0x7effffff]
[    0.684038] PM: hibernation: Registered nosave memory: [mem 0x7f000000-0x7fffffff]
[    0.684039] PM: hibernation: Registered nosave memory: [mem 0x80000000-0x8fffffff]
[    0.684040] PM: hibernation: Registered nosave memory: [mem 0x90000000-0xfed1bfff]
[    0.684041] PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed3ffff]
[    0.684042] PM: hibernation: Registered nosave memory: [mem 0xfed40000-0xfeffffff]
[    0.684043] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.684047] [mem 0x90000000-0xfed1bfff] available for PCI devices
[    0.684049] Booting paravirtualized kernel on bare hardware
[    0.684053] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.684067] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:48 nr_cpu_ids:48 nr_node_ids:2
[    0.689553] percpu: Embedded 66 pages/cpu s233472 r8192 d28672 u524288
[    0.689564] pcpu-alloc: s233472 r8192 d28672 u524288 alloc=1*2097152
[    0.689568] pcpu-alloc: [0] 00 01 02 03 [0] 04 05 06 07 
[    0.689576] pcpu-alloc: [0] 08 09 10 11 [0] 24 25 26 27 
[    0.689583] pcpu-alloc: [0] 28 29 30 31 [0] 32 33 34 35 
[    0.689590] pcpu-alloc: [1] 12 13 14 15 [1] 16 17 18 19 
[    0.689597] pcpu-alloc: [1] 20 21 22 23 [1] 36 37 38 39 
[    0.689604] pcpu-alloc: [1] 40 41 42 43 [1] 44 45 46 47 
[    0.689641] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.9.2-dirty root=UUID=3842ebdd-e37f-4e4e-afd4-d7eb79b41984 ro quiet rootdelay=50 intel_iommu=on iommu=pt vfio-pci.ids=10de:1201,10de:0e0c
[    0.689754] DMAR: IOMMU enabled
[    0.689793] Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-6.9.2-dirty", will be passed to user space.
[    0.689809] random: crng init done
[    0.689811] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    0.689813] printk: log_buf_len total cpu_extra contributions: 192512 bytes
[    0.689814] printk: log_buf_len min size: 262144 bytes
[    0.690469] printk: log_buf_len: 524288 bytes
[    0.690471] printk: early log buf free: 246224(93%)
[    0.691406] Fallback order for Node 0: 0 1 
[    0.691411] Fallback order for Node 1: 1 0 
[    0.691418] Built 2 zonelists, mobility grouping on.  Total pages: 66046770
[    0.691420] Policy zone: Normal
[    0.691430] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[    0.691447] software IO TLB: area num 64.
[    1.632878] Memory: 263619264K/268381144K available (20480K kernel code, 3631K rwdata, 13176K rodata, 4768K init, 5748K bss, 4761620K reserved, 0K cma-reserved)
[    1.633531] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=48, Nodes=2
[    1.633686] Kernel/User page tables isolation: enabled
[    1.633805] ftrace: allocating 54088 entries in 212 pages
[    1.650034] ftrace: allocated 212 pages with 4 groups
[    1.651408] Dynamic Preempt: voluntary
[    1.651773] rcu: Preemptible hierarchical RCU implementation.
[    1.651775] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=48.
[    1.651778] 	Trampoline variant of Tasks RCU enabled.
[    1.651780] 	Rude variant of Tasks RCU enabled.
[    1.651780] 	Tracing variant of Tasks RCU enabled.
[    1.651782] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    1.651784] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=48
[    1.651834] RCU Tasks: Setting shift to 6 and lim to 1 rcu_task_cb_adjust=1.
[    1.651847] RCU Tasks Rude: Setting shift to 6 and lim to 1 rcu_task_cb_adjust=1.
[    1.651866] RCU Tasks Trace: Setting shift to 6 and lim to 1 rcu_task_cb_adjust=1.
[    1.655721] NR_IRQS: 524544, nr_irqs: 1624, preallocated irqs: 16
[    1.656025] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    1.662742] Console: colour VGA+ 80x25
[    1.662748] printk: legacy console [tty0] enabled
[    1.662946] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    1.662952] ACPI: Core revision 20230628
[    1.663512] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    1.663530] APIC: Switch to symmetric I/O mode setup
[    1.663532] DMAR: Host address width 46
[    1.663534] DMAR: DRHD base: 0x000000fbffe000 flags: 0x0
[    1.663547] DMAR: dmar0: reg_base_addr fbffe000 ver 1:0 cap d2078c106f0466 ecap f020df
[    1.663550] DMAR: DRHD base: 0x000000cfffc000 flags: 0x1
[    1.663555] DMAR: dmar1: reg_base_addr cfffc000 ver 1:0 cap d2078c106f0466 ecap f020df
[    1.663558] DMAR: RMRR base: 0x0000007e953000 end: 0x0000007e969fff
[    1.663561] DMAR: ATSR flags: 0x0
[    1.663562] DMAR: RHSA base: 0x000000fbffe000 proximity domain: 0x1
[    1.663564] DMAR: RHSA base: 0x000000cfffc000 proximity domain: 0x0
[    1.663567] DMAR-IR: IOAPIC id 3 under DRHD base  0xfbffe000 IOMMU 0
[    1.663569] DMAR-IR: IOAPIC id 0 under DRHD base  0xcfffc000 IOMMU 1
[    1.663571] DMAR-IR: IOAPIC id 2 under DRHD base  0xcfffc000 IOMMU 1
[    1.663572] DMAR-IR: HPET id 0 under DRHD base 0xcfffc000
[    1.663574] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    1.664388] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    1.664392] x2apic enabled
[    1.664475] APIC: Switched APIC routing to: cluster x2apic
[    1.665162] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    1.683538] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x26eb8be5956, max_idle_ns: 440795266754 ns
[    1.683545] Calibrating delay loop (skipped), value calculated using timer frequency.. 5400.16 BogoMIPS (lpj=10800328)
[    1.683564] [Firmware Bug]: CPU0: Topology domain 0 shift 1 != 5
[    1.683665] CPU0: Thermal monitoring enabled (TM1)
[    1.683764] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    1.683767] Last level dTLB entries: 4KB 512, 2MB 0, 4MB 0, 1GB 4
[    1.683772] process: using mwait in idle threads
[    1.683776] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.683779] Spectre V2 : Mitigation: Retpolines
[    1.683781] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    1.683782] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[    1.683783] Speculative Store Bypass: Vulnerable
[    1.683785] MDS: Vulnerable: Clear CPU buffers attempted, no microcode
[    1.683787] MMIO Stale Data: Unknown: No mitigations
[    1.683794] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    1.683796] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    1.683798] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    1.683800] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    1.683802] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    1.714071] Freeing SMP alternatives memory: 44K
[    1.714075] pid_max: default: 49152 minimum: 384
[    1.714189] LSM: initializing lsm=lockdown,capability,yama,apparmor,ima,evm
[    1.714223] Yama: becoming mindful.
[    1.714261] AppArmor: AppArmor initialized
[    1.757895] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc hugepage)
[    1.779753] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
[    1.780552] Mount-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc)
[    1.781267] Mountpoint-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc)
[    1.782299] smpboot: CPU0: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz (family: 0x6, model: 0x3e, stepping: 0x4)
[    1.782751] Performance Events: PEBS fmt1+, IvyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
[    1.782794] ... version:                3
[    1.782796] ... bit width:              48
[    1.782797] ... generic registers:      4
[    1.782797] ... value mask:             0000ffffffffffff
[    1.782799] ... max period:             00007fffffffffff
[    1.782800] ... fixed-purpose events:   3
[    1.782801] ... event mask:             000000070000000f
[    1.783091] signal: max sigframe size: 1776
[    1.783122] Estimated ratio of average max frequency by base frequency (times 1024): 1213
[    1.783182] rcu: Hierarchical SRCU implementation.
[    1.783185] rcu: 	Max phase no-delay instances is 1000.
[    1.784903] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    1.785721] smp: Bringing up secondary CPUs ...
[    1.785937] smpboot: x86: Booting SMP configuration:
[    1.785939] .... node  #0, CPUs:        #4
[    1.786215] .... node  #1, CPUs:   #12 #16
[    1.793547] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.

[    1.797547] .... node  #0, CPUs:    #1  #2  #3  #5  #6  #7  #8  #9 #10 #11
[    1.801858] .... node  #1, CPUs:   #13 #14 #15 #17 #18 #19 #20 #21 #22 #23
[    1.804687] .... node  #0, CPUs:   #24 #25 #26 #27 #28 #29 #30 #31 #32 #33 #34 #35
[    1.810728] .... node  #1, CPUs:   #36 #37 #38 #39 #40 #41 #42 #43 #44 #45 #46 #47
[    1.901547] smp: Brought up 2 nodes, 48 CPUs
[    1.901547] smpboot: Total of 48 processors activated (259207.87 BogoMIPS)
[    1.903803] BUG: arch topology borken
[    1.903879]      the SMT domain not a subset of the CLS domain
[    1.903970] BUG: arch topology borken
[    1.904040]      the SMT domain not a subset of the CLS domain
[    1.904128] BUG: arch topology borken
[    1.904198]      the SMT domain not a subset of the CLS domain
[    1.904286] BUG: arch topology borken
[    1.904359]      the SMT domain not a subset of the CLS domain
[    1.904448] BUG: arch topology borken
[    1.904520]      the SMT domain not a subset of the CLS domain
[    1.904610] BUG: arch topology borken
[    1.904682]      the SMT domain not a subset of the CLS domain
[    1.904772] BUG: arch topology borken
[    1.904844]      the SMT domain not a subset of the CLS domain
[    1.904935] BUG: arch topology borken
[    1.905007]      the SMT domain not a subset of the CLS domain
[    1.905095] BUG: arch topology borken
[    1.905166]      the SMT domain not a subset of the CLS domain
[    1.905254] BUG: arch topology borken
[    1.905326]      the SMT domain not a subset of the CLS domain
[    1.905418] BUG: arch topology borken
[    1.905489]      the SMT domain not a subset of the CLS domain
[    1.905599] BUG: arch topology borken
[    1.905692]      the SMT domain not a subset of the CLS domain
[    1.905801] BUG: arch topology borken
[    1.905895]      the SMT domain not a subset of the CLS domain
[    1.906005] BUG: arch topology borken
[    1.906097]      the SMT domain not a subset of the CLS domain
[    1.906205] BUG: arch topology borken
[    1.906296]      the SMT domain not a subset of the CLS domain
[    1.906406] BUG: arch topology borken
[    1.906498]      the SMT domain not a subset of the CLS domain
[    1.906608] BUG: arch topology borken
[    1.906701]      the SMT domain not a subset of the CLS domain
[    1.906809] BUG: arch topology borken
[    1.906899]      the SMT domain not a subset of the CLS domain
[    1.907009] BUG: arch topology borken
[    1.907101]      the SMT domain not a subset of the CLS domain
[    1.907211] BUG: arch topology borken
[    1.907305]      the SMT domain not a subset of the CLS domain
[    1.907415] BUG: arch topology borken
[    1.907508]      the SMT domain not a subset of the CLS domain
[    1.907556] BUG: arch topology borken
[    1.907647]      the SMT domain not a subset of the CLS domain
[    1.907758] BUG: arch topology borken
[    1.907848]      the SMT domain not a subset of the CLS domain
[    1.907956] BUG: arch topology borken
[    1.908048]      the SMT domain not a subset of the CLS domain
[    1.908158] BUG: arch topology borken
[    1.908251]      the SMT domain not a subset of the CLS domain
[    1.908361] BUG: arch topology borken
[    1.908451]      the SMT domain not a subset of the CLS domain
[    1.908562] BUG: arch topology borken
[    1.908654]      the SMT domain not a subset of the CLS domain
[    1.908765] BUG: arch topology borken
[    1.908860]      the SMT domain not a subset of the CLS domain
[    1.908970] BUG: arch topology borken
[    1.909060]      the SMT domain not a subset of the CLS domain
[    1.909168] BUG: arch topology borken
[    1.909260]      the SMT domain not a subset of the CLS domain
[    1.909371] BUG: arch topology borken
[    1.909463]      the SMT domain not a subset of the CLS domain
[    1.909573] BUG: arch topology borken
[    1.909666]      the SMT domain not a subset of the CLS domain
[    1.909774] BUG: arch topology borken
[    1.909866]      the SMT domain not a subset of the CLS domain
[    1.909976] BUG: arch topology borken
[    1.910068]      the SMT domain not a subset of the CLS domain
[    1.910178] BUG: arch topology borken
[    1.910269]      the SMT domain not a subset of the CLS domain
[    1.910379] BUG: arch topology borken
[    1.910473]      the SMT domain not a subset of the CLS domain
[    1.910583] BUG: arch topology borken
[    1.910675]      the SMT domain not a subset of the CLS domain
[    1.910785] BUG: arch topology borken
[    1.910875]      the SMT domain not a subset of the CLS domain
[    1.910984] BUG: arch topology borken
[    1.911076]      the SMT domain not a subset of the CLS domain
[    1.911186] BUG: arch topology borken
[    1.911278]      the SMT domain not a subset of the CLS domain
[    1.911386] BUG: arch topology borken
[    1.911479]      the SMT domain not a subset of the CLS domain
[    1.911556] BUG: arch topology borken
[    1.911648]      the SMT domain not a subset of the CLS domain
[    1.911760] BUG: arch topology borken
[    1.911853]      the SMT domain not a subset of the CLS domain
[    1.911961] BUG: arch topology borken
[    1.912054]      the SMT domain not a subset of the CLS domain
[    1.912162] BUG: arch topology borken
[    1.912256]      the SMT domain not a subset of the CLS domain
[    1.912366] BUG: arch topology borken
[    1.912460]      the SMT domain not a subset of the CLS domain
[    1.912569] BUG: arch topology borken
[    1.912660]      the SMT domain not a subset of the CLS domain
[    1.912768] BUG: arch topology borken
[    1.912861]      the SMT domain not a subset of the CLS domain
[    1.927929] devtmpfs: initialized
[    1.927929] x86/mm: Memory block size: 2048MB
[    1.930532] ACPI: PM: Registering ACPI NVS region [mem 0x7cca5000-0x7d8defff] (12820480 bytes)
[    1.930532] ACPI: PM: Registering ACPI NVS region [mem 0x7eb07000-0x7effffff] (5214208 bytes)
[    1.930532] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    1.931792] futex hash table entries: 16384 (order: 8, 1048576 bytes, vmalloc)
[    1.932045] pinctrl core: initialized pinctrl subsystem
[    1.932172] PM: RTC time: 20:41:10, date: 2024-05-25
[    1.934499] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    1.936451] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    1.937461] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    1.938477] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    1.938495] audit: initializing netlink subsys (disabled)
[    1.938511] audit: type=2000 audit(1716669669.272:1): state=initialized audit_enabled=0 res=1
[    1.938511] thermal_sys: Registered thermal governor 'fair_share'
[    1.938511] thermal_sys: Registered thermal governor 'bang_bang'
[    1.938511] thermal_sys: Registered thermal governor 'step_wise'
[    1.938511] thermal_sys: Registered thermal governor 'user_space'
[    1.938511] thermal_sys: Registered thermal governor 'power_allocator'
[    1.938511] EISA bus registered
[    1.938511] cpuidle: using governor ladder
[    1.938511] cpuidle: using governor menu
[    1.938511] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    1.938511] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff]
[    1.938511] PCI: ECAM [mem 0x80000000-0x8fffffff] reserved as E820 entry
[    1.938511] PCI: Using configuration type 1 for base access
[    1.938511] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    1.938511] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    1.939606] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    1.939606] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    1.939606] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    1.939606] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    1.939619] Demotion targets for Node 0: null
[    1.939619] Demotion targets for Node 1: null
[    1.939751] ACPI: Added _OSI(Module Device)
[    1.939754] ACPI: Added _OSI(Processor Device)
[    1.939755] ACPI: Added _OSI(3.0 _SCP Extensions)
[    1.939757] ACPI: Added _OSI(Processor Aggregator Device)
[    2.092754] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    2.120441] ACPI: _OSC evaluated successfully for all CPUs
[    2.120734] ACPI: Interpreter enabled
[    2.120757] ACPI: PM: (supports S0 S1 S5)
[    2.120759] ACPI: Using IOAPIC for interrupt routing
[    2.124480] HEST: Table parsing has been initialized.
[    2.124613] GHES: APEI firmware first mode is enabled by WHEA _OSC.
[    2.124621] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.124623] PCI: Using E820 reservations for host bridge windows
[    2.125222] ACPI: Enabled 8 GPEs in block 00 to 3F
[    2.126645] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    2.150255] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
[    2.150266] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.150374] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[    2.150562] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    2.151069] PCI host bridge to bus 0000:00
[    2.151072] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    2.151076] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    2.151078] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    2.151080] pci_bus 0000:00: root bus resource [io  0x0d00-0x9fff window]
[    2.151082] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
[    2.151084] pci_bus 0000:00: root bus resource [mem 0x80000000-0xcfffffff window]
[    2.151087] pci_bus 0000:00: root bus resource [bus 00-7e]
[    2.151125] pci 0000:00:00.0: [8086:0e00] type 00 class 0x060000 PCIe Root Port
[    2.151210] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    2.151337] pci 0000:00:01.0: [8086:0e02] type 01 class 0x060400 PCIe Root Port
[    2.151362] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.151441] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    2.151620] pci 0000:00:01.1: [8086:0e03] type 01 class 0x060400 PCIe Root Port
[    2.151645] pci 0000:00:01.1: PCI bridge to [bus 02]
[    2.151725] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    2.151903] pci 0000:00:02.0: [8086:0e04] type 01 class 0x060400 PCIe Root Port
[    2.151929] pci 0000:00:02.0: PCI bridge to [bus 03]
[    2.152005] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    2.152168] pci 0000:00:02.2: [8086:0e06] type 01 class 0x060400 PCIe Root Port
[    2.152195] pci 0000:00:02.2: PCI bridge to [bus 04]
[    2.152202] pci 0000:00:02.2:   bridge window [mem 0xc8a00000-0xc8cfffff]
[    2.152275] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    2.152437] pci 0000:00:03.0: [8086:0e08] type 01 class 0x060400 PCIe Root Port
[    2.152464] pci 0000:00:03.0: PCI bridge to [bus 05]
[    2.152468] pci 0000:00:03.0:   bridge window [io  0x8000-0x8fff]
[    2.152474] pci 0000:00:03.0:   bridge window [mem 0xb8000000-0xc60fffff]
[    2.152489] pci 0000:00:03.0: enabling Extended Tags
[    2.152553] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    2.152701] pci 0000:00:04.0: [8086:0e20] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.152720] pci 0000:00:04.0: BAR 0 [mem 0xc6120000-0xc6123fff 64bit]
[    2.152846] pci 0000:00:04.1: [8086:0e21] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.152862] pci 0000:00:04.1: BAR 0 [mem 0xc611c000-0xc611ffff 64bit]
[    2.152983] pci 0000:00:04.2: [8086:0e22] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.153000] pci 0000:00:04.2: BAR 0 [mem 0xc6118000-0xc611bfff 64bit]
[    2.153121] pci 0000:00:04.3: [8086:0e23] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.153138] pci 0000:00:04.3: BAR 0 [mem 0xc6114000-0xc6117fff 64bit]
[    2.153258] pci 0000:00:04.4: [8086:0e24] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.153274] pci 0000:00:04.4: BAR 0 [mem 0xc6110000-0xc6113fff 64bit]
[    2.153405] pci 0000:00:04.5: [8086:0e25] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.153421] pci 0000:00:04.5: BAR 0 [mem 0xc610c000-0xc610ffff 64bit]
[    2.153543] pci 0000:00:04.6: [8086:0e26] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.153559] pci 0000:00:04.6: BAR 0 [mem 0xc6108000-0xc610bfff 64bit]
[    2.153678] pci 0000:00:04.7: [8086:0e27] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.153694] pci 0000:00:04.7: BAR 0 [mem 0xc6104000-0xc6107fff 64bit]
[    2.153814] pci 0000:00:05.0: [8086:0e28] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.153924] pci 0000:00:05.2: [8086:0e2a] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.154036] pci 0000:00:05.4: [8086:0e2c] type 00 class 0x080020 PCIe Root Complex Integrated Endpoint
[    2.154048] pci 0000:00:05.4: BAR 0 [mem 0xc612b000-0xc612bfff]
[    2.154182] pci 0000:00:11.0: [8086:1d3e] type 01 class 0x060400 PCIe Root Port
[    2.154219] pci 0000:00:11.0: PCI bridge to [bus 06]
[    2.154228] pci 0000:00:11.0:   bridge window [io  0x7000-0x7fff]
[    2.154233] pci 0000:00:11.0:   bridge window [mem 0xc8400000-0xc88fffff]
[    2.154246] pci 0000:00:11.0:   bridge window [mem 0xcfe00000-0xcfefffff 64bit pref]
[    2.154319] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold
[    2.154454] pci 0000:00:16.0: [8086:1d3a] type 00 class 0x078000 conventional PCI endpoint
[    2.154472] pci 0000:00:16.0: BAR 0 [mem 0xc612a000-0xc612a00f 64bit]
[    2.154537] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    2.154633] pci 0000:00:16.1: [8086:1d3b] type 00 class 0x078000 conventional PCI endpoint
[    2.154651] pci 0000:00:16.1: BAR 0 [mem 0xc6129000-0xc612900f 64bit]
[    2.154713] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[    2.154815] pci 0000:00:1a.0: [8086:1d2d] type 00 class 0x0c0320 conventional PCI endpoint
[    2.154832] pci 0000:00:1a.0: BAR 0 [mem 0xc6127000-0xc61273ff]
[    2.154918] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    2.155014] pci 0000:00:1b.0: [8086:1d20] type 00 class 0x040300 PCIe Root Complex Integrated Endpoint
[    2.155032] pci 0000:00:1b.0: BAR 0 [mem 0xc6100000-0xc6103fff 64bit]
[    2.155114] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    2.155195] pci 0000:00:1c.0: [8086:1d10] type 01 class 0x060400 PCIe Root Port
[    2.155229] pci 0000:00:1c.0: PCI bridge to [bus 07-08]
[    2.155234] pci 0000:00:1c.0:   bridge window [io  0x6000-0x6fff]
[    2.155238] pci 0000:00:1c.0:   bridge window [mem 0xc8e00000-0xc8efffff]
[    2.155307] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    2.155334] pci 0000:00:1c.0: Enabling MPC IRBNCE
[    2.155337] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[    2.155452] pci 0000:00:1c.7: [8086:1d1e] type 01 class 0x060400 PCIe Root Port
[    2.155484] pci 0000:00:1c.7: PCI bridge to [bus 09-0a]
[    2.155490] pci 0000:00:1c.7:   bridge window [io  0x5000-0x5fff]
[    2.155495] pci 0000:00:1c.7:   bridge window [mem 0xc7000000-0xc80fffff]
[    2.155566] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
[    2.155591] pci 0000:00:1c.7: Enabling MPC IRBNCE
[    2.155594] pci 0000:00:1c.7: Intel PCH root port ACS workaround enabled
[    2.155700] pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320 conventional PCI endpoint
[    2.155719] pci 0000:00:1d.0: BAR 0 [mem 0xc6126000-0xc61263ff]
[    2.155803] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    2.155897] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401 conventional PCI bridge
[    2.155923] pci 0000:00:1e.0: PCI bridge to [bus 0b] (subtractive decode)
[    2.156039] pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100 conventional PCI endpoint
[    2.156247] pci 0000:00:1f.2: [8086:1d02] type 00 class 0x010601 conventional PCI endpoint
[    2.156261] pci 0000:00:1f.2: BAR 0 [io  0x9070-0x9077]
[    2.156269] pci 0000:00:1f.2: BAR 1 [io  0x9060-0x9063]
[    2.156279] pci 0000:00:1f.2: BAR 2 [io  0x9050-0x9057]
[    2.156288] pci 0000:00:1f.2: BAR 3 [io  0x9040-0x9043]
[    2.156295] pci 0000:00:1f.2: BAR 4 [io  0x9020-0x903f]
[    2.156303] pci 0000:00:1f.2: BAR 5 [mem 0xc6125000-0xc61257ff]
[    2.156344] pci 0000:00:1f.2: PME# supported from D3hot
[    2.156431] pci 0000:00:1f.3: [8086:1d22] type 00 class 0x0c0500 conventional PCI endpoint
[    2.156449] pci 0000:00:1f.3: BAR 0 [mem 0xc6124000-0xc61240ff 64bit]
[    2.156471] pci 0000:00:1f.3: BAR 4 [io  0x9000-0x901f]
[    2.156593] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.156637] pci 0000:00:01.1: PCI bridge to [bus 02]
[    2.156679] pci 0000:00:02.0: PCI bridge to [bus 03]
[    2.156734] pci 0000:04:00.0: [9005:0285] type 00 class 0x010400 PCIe Endpoint
[    2.156750] pci 0000:04:00.0: BAR 0 [mem 0xc8a00000-0xc8bfffff 64bit]
[    2.156779] pci 0000:04:00.0: ROM [mem 0xc8c00000-0xc8c7ffff pref]
[    2.156820] pci 0000:04:00.0: supports D1
[    2.156886] pci 0000:00:02.2: PCI bridge to [bus 04]
[    2.156941] pci 0000:05:00.0: [10de:1201] type 00 class 0x030000 PCIe Endpoint
[    2.156951] pci 0000:05:00.0: BAR 0 [mem 0xc4000000-0xc5ffffff]
[    2.156959] pci 0000:05:00.0: BAR 1 [mem 0xb8000000-0xbfffffff 64bit pref]
[    2.156967] pci 0000:05:00.0: BAR 3 [mem 0xc0000000-0xc3ffffff 64bit pref]
[    2.156972] pci 0000:05:00.0: BAR 5 [io  0x8000-0x807f]
[    2.156978] pci 0000:05:00.0: ROM [mem 0xc6000000-0xc607ffff pref]
[    2.156984] pci 0000:05:00.0: enabling Extended Tags
[    2.157103] pci 0000:05:00.1: [10de:0e0c] type 00 class 0x040300 PCIe Endpoint
[    2.157115] pci 0000:05:00.1: BAR 0 [mem 0xc6080000-0xc6083fff]
[    2.157149] pci 0000:05:00.1: enabling Extended Tags
[    2.157248] pci 0000:00:03.0: PCI bridge to [bus 05]
[    2.157322] pci 0000:06:00.0: [8086:1d6b] type 00 class 0x010700 PCIe Endpoint
[    2.157344] pci 0000:06:00.0: BAR 0 [mem 0xc8800000-0xc8803fff 64bit pref]
[    2.157359] pci 0000:06:00.0: BAR 2 [mem 0xc8400000-0xc87fffff 64bit pref]
[    2.157371] pci 0000:06:00.0: BAR 4 [io  0x7000-0x70ff]
[    2.157396] pci 0000:06:00.0: enabling Extended Tags
[    2.157502] pci 0000:06:00.0: VF BAR 0 [mem 0xcfe00000-0xcfe03fff 64bit pref]
[    2.157504] pci 0000:06:00.0: VF BAR 0 [mem 0xcfe00000-0xcfe7bfff 64bit pref]: contains BAR 0 for 31 VFs
[    2.157749] pci 0000:00:11.0: PCI bridge to [bus 06]
[    2.157857] pci 0000:07:00.0: [8086:1521] type 00 class 0x020000 PCIe Endpoint
[    2.157882] pci 0000:07:00.0: BAR 0 [mem 0xc8e20000-0xc8e3ffff]
[    2.157907] pci 0000:07:00.0: BAR 2 [io  0x6020-0x603f]
[    2.157920] pci 0000:07:00.0: BAR 3 [mem 0xc8ec4000-0xc8ec7fff]
[    2.158091] pci 0000:07:00.0: PME# supported from D0 D3hot D3cold
[    2.158133] pci 0000:07:00.0: VF BAR 0 [mem 0xc8ea0000-0xc8ea3fff]
[    2.158136] pci 0000:07:00.0: VF BAR 0 [mem 0xc8ea0000-0xc8ebffff]: contains BAR 0 for 8 VFs
[    2.158169] pci 0000:07:00.0: VF BAR 3 [mem 0xc8e80000-0xc8e83fff]
[    2.158173] pci 0000:07:00.0: VF BAR 3 [mem 0xc8e80000-0xc8e9ffff]: contains BAR 3 for 8 VFs
[    2.158507] pci 0000:07:00.1: [8086:1521] type 00 class 0x020000 PCIe Endpoint
[    2.158532] pci 0000:07:00.1: BAR 0 [mem 0xc8e00000-0xc8e1ffff]
[    2.158557] pci 0000:07:00.1: BAR 2 [io  0x6000-0x601f]
[    2.158571] pci 0000:07:00.1: BAR 3 [mem 0xc8ec0000-0xc8ec3fff]
[    2.158737] pci 0000:07:00.1: PME# supported from D0 D3hot D3cold
[    2.158781] pci 0000:07:00.1: VF BAR 0 [mem 0xc8e60000-0xc8e63fff]
[    2.158786] pci 0000:07:00.1: VF BAR 0 [mem 0xc8e60000-0xc8e7ffff]: contains BAR 0 for 8 VFs
[    2.158820] pci 0000:07:00.1: VF BAR 3 [mem 0xc8e40000-0xc8e43fff]
[    2.158821] pci 0000:07:00.1: VF BAR 3 [mem 0xc8e40000-0xc8e5ffff]: contains BAR 3 for 8 VFs
[    2.159083] pci 0000:00:1c.0: PCI bridge to [bus 07-08]
[    2.159172] pci 0000:09:00.0: [1a03:1150] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
[    2.159231] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    2.159246] pci 0000:09:00.0:   bridge window [io  0x5000-0x5fff]
[    2.159252] pci 0000:09:00.0:   bridge window [mem 0xc7000000-0xc80fffff]
[    2.159376] pci 0000:09:00.0: supports D1 D2
[    2.159380] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.159499] pci 0000:09:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    2.159516] pci 0000:00:1c.7: PCI bridge to [bus 09-0a]
[    2.159583] pci_bus 0000:0a: extended config space not accessible
[    2.159617] pci 0000:0a:00.0: [1a03:2000] type 00 class 0x030000 conventional PCI endpoint
[    2.159661] pci 0000:0a:00.0: BAR 0 [mem 0xc7000000-0xc7ffffff]
[    2.159684] pci 0000:0a:00.0: BAR 1 [mem 0xc8000000-0xc801ffff]
[    2.159702] pci 0000:0a:00.0: BAR 2 [io  0x5000-0x507f]
[    2.159794] pci 0000:0a:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    2.159842] pci 0000:0a:00.0: supports D1 D2
[    2.159844] pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.159975] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    2.160024] pci_bus 0000:0b: extended config space not accessible
[    2.160077] pci 0000:00:1e.0: PCI bridge to [bus 0b] (subtractive decode)
[    2.160090] pci 0000:00:1e.0:   bridge window [io  0x0000-0x03af window] (subtractive decode)
[    2.160092] pci 0000:00:1e.0:   bridge window [io  0x03e0-0x0cf7 window] (subtractive decode)
[    2.160094] pci 0000:00:1e.0:   bridge window [io  0x03b0-0x03df window] (subtractive decode)
[    2.160096] pci 0000:00:1e.0:   bridge window [io  0x0d00-0x9fff window] (subtractive decode)
[    2.160099] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000dffff window] (subtractive decode)
[    2.160101] pci 0000:00:1e.0:   bridge window [mem 0x80000000-0xcfffffff window] (subtractive decode)
[    2.160152] pci_bus 0000:00: on NUMA node 0
[    2.160992] ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus 7f])
[    2.160998] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.161020] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[    2.161089] PCI host bridge to bus 0000:7f
[    2.161092] pci_bus 0000:7f: root bus resource [bus 7f]
[    2.161105] pci 0000:7f:08.0: [8086:0e80] type 00 class 0x088000 conventional PCI endpoint
[    2.161168] pci 0000:7f:09.0: [8086:0e90] type 00 class 0x088000 conventional PCI endpoint
[    2.161223] pci 0000:7f:0a.0: [8086:0ec0] type 00 class 0x088000 conventional PCI endpoint
[    2.161272] pci 0000:7f:0a.1: [8086:0ec1] type 00 class 0x088000 conventional PCI endpoint
[    2.161320] pci 0000:7f:0a.2: [8086:0ec2] type 00 class 0x088000 conventional PCI endpoint
[    2.161370] pci 0000:7f:0a.3: [8086:0ec3] type 00 class 0x088000 conventional PCI endpoint
[    2.161429] pci 0000:7f:0b.0: [8086:0e1e] type 00 class 0x088000 conventional PCI endpoint
[    2.161475] pci 0000:7f:0b.3: [8086:0e1f] type 00 class 0x088000 conventional PCI endpoint
[    2.161524] pci 0000:7f:0c.0: [8086:0ee0] type 00 class 0x088000 conventional PCI endpoint
[    2.161576] pci 0000:7f:0c.1: [8086:0ee2] type 00 class 0x088000 conventional PCI endpoint
[    2.161622] pci 0000:7f:0c.2: [8086:0ee4] type 00 class 0x088000 conventional PCI endpoint
[    2.161671] pci 0000:7f:0c.3: [8086:0ee6] type 00 class 0x088000 conventional PCI endpoint
[    2.161717] pci 0000:7f:0c.4: [8086:0ee8] type 00 class 0x088000 conventional PCI endpoint
[    2.161763] pci 0000:7f:0c.5: [8086:0eea] type 00 class 0x088000 conventional PCI endpoint
[    2.161819] pci 0000:7f:0d.0: [8086:0ee1] type 00 class 0x088000 conventional PCI endpoint
[    2.161867] pci 0000:7f:0d.1: [8086:0ee3] type 00 class 0x088000 conventional PCI endpoint
[    2.161914] pci 0000:7f:0d.2: [8086:0ee5] type 00 class 0x088000 conventional PCI endpoint
[    2.161961] pci 0000:7f:0d.3: [8086:0ee7] type 00 class 0x088000 conventional PCI endpoint
[    2.162009] pci 0000:7f:0d.4: [8086:0ee9] type 00 class 0x088000 conventional PCI endpoint
[    2.162058] pci 0000:7f:0d.5: [8086:0eeb] type 00 class 0x088000 conventional PCI endpoint
[    2.162106] pci 0000:7f:0e.0: [8086:0ea0] type 00 class 0x088000 conventional PCI endpoint
[    2.162160] pci 0000:7f:0e.1: [8086:0e30] type 00 class 0x110100 conventional PCI endpoint
[    2.162228] pci 0000:7f:0f.0: [8086:0ea8] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.162296] pci 0000:7f:0f.1: [8086:0e71] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.162364] pci 0000:7f:0f.2: [8086:0eaa] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.162429] pci 0000:7f:0f.3: [8086:0eab] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.162496] pci 0000:7f:0f.4: [8086:0eac] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.162562] pci 0000:7f:0f.5: [8086:0ead] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.162628] pci 0000:7f:10.0: [8086:0eb0] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.162696] pci 0000:7f:10.1: [8086:0eb1] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.162772] pci 0000:7f:10.2: [8086:0eb2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.162839] pci 0000:7f:10.3: [8086:0eb3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.162905] pci 0000:7f:10.4: [8086:0eb4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.162973] pci 0000:7f:10.5: [8086:0eb5] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.163038] pci 0000:7f:10.6: [8086:0eb6] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.163106] pci 0000:7f:10.7: [8086:0eb7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.163171] pci 0000:7f:13.0: [8086:0e1d] type 00 class 0x088000 conventional PCI endpoint
[    2.163218] pci 0000:7f:13.1: [8086:0e34] type 00 class 0x110100 conventional PCI endpoint
[    2.163277] pci 0000:7f:13.4: [8086:0e81] type 00 class 0x088000 conventional PCI endpoint
[    2.163324] pci 0000:7f:13.5: [8086:0e36] type 00 class 0x110100 conventional PCI endpoint
[    2.163374] pci 0000:7f:16.0: [8086:0ec8] type 00 class 0x088000 conventional PCI endpoint
[    2.163421] pci 0000:7f:16.1: [8086:0ec9] type 00 class 0x088000 conventional PCI endpoint
[    2.163471] pci 0000:7f:16.2: [8086:0eca] type 00 class 0x088000 conventional PCI endpoint
[    2.163526] pci 0000:7f:1c.0: [8086:0e60] type 00 class 0x088000 conventional PCI endpoint
[    2.163581] pci 0000:7f:1c.1: [8086:0e38] type 00 class 0x110100 conventional PCI endpoint
[    2.163641] pci 0000:7f:1d.0: [8086:0e68] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.163719] pci 0000:7f:1d.1: [8086:0e79] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.163788] pci 0000:7f:1d.2: [8086:0e6a] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.163856] pci 0000:7f:1d.3: [8086:0e6b] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.163923] pci 0000:7f:1d.4: [8086:0e6c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.163992] pci 0000:7f:1d.5: [8086:0e6d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.164066] pci 0000:7f:1e.0: [8086:0ef0] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.164136] pci 0000:7f:1e.1: [8086:0ef1] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.164206] pci 0000:7f:1e.2: [8086:0ef2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.164283] pci 0000:7f:1e.3: [8086:0ef3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.164351] pci 0000:7f:1e.4: [8086:0ef4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.164420] pci 0000:7f:1e.5: [8086:0ef5] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.164488] pci 0000:7f:1e.6: [8086:0ef6] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.164556] pci 0000:7f:1e.7: [8086:0ef7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.164622] pci_bus 0000:7f: on NUMA node 0
[    2.164815] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 80-fe])
[    2.164821] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.164926] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[    2.165109] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    2.165358] PCI host bridge to bus 0000:80
[    2.165361] pci_bus 0000:80: root bus resource [io  0xa000-0xffff window]
[    2.165363] pci_bus 0000:80: root bus resource [mem 0xd0000000-0xfbffffff window]
[    2.165368] pci_bus 0000:80: root bus resource [bus 80-fe]
[    2.165397] pci 0000:80:00.0: [8086:0e01] type 01 class 0x060400 PCIe Root Port
[    2.165425] pci 0000:80:00.0: PCI bridge to [bus 81]
[    2.165507] pci 0000:80:00.0: PME# supported from D0 D3hot D3cold
[    2.165675] pci 0000:80:01.0: [8086:0e02] type 01 class 0x060400 PCIe Root Port
[    2.165703] pci 0000:80:01.0: PCI bridge to [bus 82]
[    2.165793] pci 0000:80:01.0: PME# supported from D0 D3hot D3cold
[    2.165966] pci 0000:80:02.0: [8086:0e04] type 01 class 0x060400 PCIe Root Port
[    2.165996] pci 0000:80:02.0: PCI bridge to [bus 83]
[    2.166082] pci 0000:80:02.0: PME# supported from D0 D3hot D3cold
[    2.166267] pci 0000:80:03.0: [8086:0e08] type 01 class 0x060400 PCIe Root Port
[    2.166296] pci 0000:80:03.0: PCI bridge to [bus 84]
[    2.166318] pci 0000:80:03.0: enabling Extended Tags
[    2.166390] pci 0000:80:03.0: PME# supported from D0 D3hot D3cold
[    2.166551] pci 0000:80:04.0: [8086:0e20] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.166569] pci 0000:80:04.0: BAR 0 [mem 0xfbf1c000-0xfbf1ffff 64bit]
[    2.166706] pci 0000:80:04.1: [8086:0e21] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.166723] pci 0000:80:04.1: BAR 0 [mem 0xfbf18000-0xfbf1bfff 64bit]
[    2.166858] pci 0000:80:04.2: [8086:0e22] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.166875] pci 0000:80:04.2: BAR 0 [mem 0xfbf14000-0xfbf17fff 64bit]
[    2.167006] pci 0000:80:04.3: [8086:0e23] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.167024] pci 0000:80:04.3: BAR 0 [mem 0xfbf10000-0xfbf13fff 64bit]
[    2.167153] pci 0000:80:04.4: [8086:0e24] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.167170] pci 0000:80:04.4: BAR 0 [mem 0xfbf0c000-0xfbf0ffff 64bit]
[    2.167300] pci 0000:80:04.5: [8086:0e25] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.167318] pci 0000:80:04.5: BAR 0 [mem 0xfbf08000-0xfbf0bfff 64bit]
[    2.167448] pci 0000:80:04.6: [8086:0e26] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.167465] pci 0000:80:04.6: BAR 0 [mem 0xfbf04000-0xfbf07fff 64bit]
[    2.167607] pci 0000:80:04.7: [8086:0e27] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.167626] pci 0000:80:04.7: BAR 0 [mem 0xfbf00000-0xfbf03fff 64bit]
[    2.167757] pci 0000:80:05.0: [8086:0e28] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.167877] pci 0000:80:05.2: [8086:0e2a] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.167998] pci 0000:80:05.4: [8086:0e2c] type 00 class 0x080020 PCIe Root Complex Integrated Endpoint
[    2.168012] pci 0000:80:05.4: BAR 0 [mem 0xfbf20000-0xfbf20fff]
[    2.168181] pci 0000:80:00.0: PCI bridge to [bus 81]
[    2.168228] pci 0000:80:01.0: PCI bridge to [bus 82]
[    2.168274] pci 0000:80:02.0: PCI bridge to [bus 83]
[    2.168321] pci 0000:80:03.0: PCI bridge to [bus 84]
[    2.168355] pci_bus 0000:80: on NUMA node 1
[    2.168465] ACPI: PCI Root Bridge [UNC1] (domain 0000 [bus ff])
[    2.168472] acpi PNP0A03:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.168494] acpi PNP0A03:01: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[    2.168564] PCI host bridge to bus 0000:ff
[    2.168567] pci_bus 0000:ff: root bus resource [bus ff]
[    2.168580] pci 0000:ff:08.0: [8086:0e80] type 00 class 0x088000 conventional PCI endpoint
[    2.168647] pci 0000:ff:09.0: [8086:0e90] type 00 class 0x088000 conventional PCI endpoint
[    2.168706] pci 0000:ff:0a.0: [8086:0ec0] type 00 class 0x088000 conventional PCI endpoint
[    2.168759] pci 0000:ff:0a.1: [8086:0ec1] type 00 class 0x088000 conventional PCI endpoint
[    2.168822] pci 0000:ff:0a.2: [8086:0ec2] type 00 class 0x088000 conventional PCI endpoint
[    2.168877] pci 0000:ff:0a.3: [8086:0ec3] type 00 class 0x088000 conventional PCI endpoint
[    2.168932] pci 0000:ff:0b.0: [8086:0e1e] type 00 class 0x088000 conventional PCI endpoint
[    2.168983] pci 0000:ff:0b.3: [8086:0e1f] type 00 class 0x088000 conventional PCI endpoint
[    2.169038] pci 0000:ff:0c.0: [8086:0ee0] type 00 class 0x088000 conventional PCI endpoint
[    2.169091] pci 0000:ff:0c.1: [8086:0ee2] type 00 class 0x088000 conventional PCI endpoint
[    2.169143] pci 0000:ff:0c.2: [8086:0ee4] type 00 class 0x088000 conventional PCI endpoint
[    2.169205] pci 0000:ff:0c.3: [8086:0ee6] type 00 class 0x088000 conventional PCI endpoint
[    2.169269] pci 0000:ff:0c.4: [8086:0ee8] type 00 class 0x088000 conventional PCI endpoint
[    2.169324] pci 0000:ff:0c.5: [8086:0eea] type 00 class 0x088000 conventional PCI endpoint
[    2.169377] pci 0000:ff:0d.0: [8086:0ee1] type 00 class 0x088000 conventional PCI endpoint
[    2.169431] pci 0000:ff:0d.1: [8086:0ee3] type 00 class 0x088000 conventional PCI endpoint
[    2.169484] pci 0000:ff:0d.2: [8086:0ee5] type 00 class 0x088000 conventional PCI endpoint
[    2.169538] pci 0000:ff:0d.3: [8086:0ee7] type 00 class 0x088000 conventional PCI endpoint
[    2.169593] pci 0000:ff:0d.4: [8086:0ee9] type 00 class 0x088000 conventional PCI endpoint
[    2.169645] pci 0000:ff:0d.5: [8086:0eeb] type 00 class 0x088000 conventional PCI endpoint
[    2.169708] pci 0000:ff:0e.0: [8086:0ea0] type 00 class 0x088000 conventional PCI endpoint
[    2.169770] pci 0000:ff:0e.1: [8086:0e30] type 00 class 0x110100 conventional PCI endpoint
[    2.169838] pci 0000:ff:0f.0: [8086:0ea8] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.169919] pci 0000:ff:0f.1: [8086:0e71] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.170000] pci 0000:ff:0f.2: [8086:0eaa] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.170082] pci 0000:ff:0f.3: [8086:0eab] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.170163] pci 0000:ff:0f.4: [8086:0eac] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.170241] pci 0000:ff:0f.5: [8086:0ead] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.170331] pci 0000:ff:10.0: [8086:0eb0] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.170412] pci 0000:ff:10.1: [8086:0eb1] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.170491] pci 0000:ff:10.2: [8086:0eb2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.170572] pci 0000:ff:10.3: [8086:0eb3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.170651] pci 0000:ff:10.4: [8086:0eb4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.170733] pci 0000:ff:10.5: [8086:0eb5] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.170813] pci 0000:ff:10.6: [8086:0eb6] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.170893] pci 0000:ff:10.7: [8086:0eb7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.170980] pci 0000:ff:13.0: [8086:0e1d] type 00 class 0x088000 conventional PCI endpoint
[    2.171033] pci 0000:ff:13.1: [8086:0e34] type 00 class 0x110100 conventional PCI endpoint
[    2.171090] pci 0000:ff:13.4: [8086:0e81] type 00 class 0x088000 conventional PCI endpoint
[    2.171145] pci 0000:ff:13.5: [8086:0e36] type 00 class 0x110100 conventional PCI endpoint
[    2.171202] pci 0000:ff:16.0: [8086:0ec8] type 00 class 0x088000 conventional PCI endpoint
[    2.171257] pci 0000:ff:16.1: [8086:0ec9] type 00 class 0x088000 conventional PCI endpoint
[    2.171313] pci 0000:ff:16.2: [8086:0eca] type 00 class 0x088000 conventional PCI endpoint
[    2.171376] pci 0000:ff:1c.0: [8086:0e60] type 00 class 0x088000 conventional PCI endpoint
[    2.171448] pci 0000:ff:1c.1: [8086:0e38] type 00 class 0x110100 conventional PCI endpoint
[    2.171521] pci 0000:ff:1d.0: [8086:0e68] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.171607] pci 0000:ff:1d.1: [8086:0e79] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.171692] pci 0000:ff:1d.2: [8086:0e6a] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.171774] pci 0000:ff:1d.3: [8086:0e6b] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.171857] pci 0000:ff:1d.4: [8086:0e6c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.171940] pci 0000:ff:1d.5: [8086:0e6d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.172025] pci 0000:ff:1e.0: [8086:0ef0] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.172119] pci 0000:ff:1e.1: [8086:0ef1] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.172209] pci 0000:ff:1e.2: [8086:0ef2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.172293] pci 0000:ff:1e.3: [8086:0ef3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.172375] pci 0000:ff:1e.4: [8086:0ef4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.172457] pci 0000:ff:1e.5: [8086:0ef5] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.172544] pci 0000:ff:1e.6: [8086:0ef6] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.172627] pci 0000:ff:1e.7: [8086:0ef7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.172706] pci_bus 0000:ff: on NUMA node 1
[    2.172832] ACPI: PCI: Interrupt link LNKA configured for IRQ 11
[    2.172895] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[    2.172955] ACPI: PCI: Interrupt link LNKC configured for IRQ 15
[    2.173016] ACPI: PCI: Interrupt link LNKD configured for IRQ 5
[    2.173075] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    2.173135] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    2.173196] ACPI: PCI: Interrupt link LNKG configured for IRQ 7
[    2.173257] ACPI: PCI: Interrupt link LNKH configured for IRQ 14
[    2.177574] iommu: Default domain type: Passthrough (set via kernel command line)
[    2.177574] SCSI subsystem initialized
[    2.177574] libata version 3.00 loaded.
[    2.177574] ACPI: bus type USB registered
[    2.177574] usbcore: registered new interface driver usbfs
[    2.177574] usbcore: registered new interface driver hub
[    2.177574] usbcore: registered new device driver usb
[    2.177574] pps_core: LinuxPPS API ver. 1 registered
[    2.177574] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    2.177574] PTP clock support registered
[    2.177574] EDAC MC: Ver: 3.0.0
[    2.177574] NetLabel: Initializing
[    2.177574] NetLabel:  domain hash size = 128
[    2.177574] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    2.177574] NetLabel:  unlabeled traffic allowed by default
[    2.177574] mctp: management component transport protocol core
[    2.177574] NET: Registered PF_MCTP protocol family
[    2.177574] PCI: Using ACPI for IRQ routing
[    2.183549] PCI: pci_cache_line_size set to 64 bytes
[    2.183779] e820: reserve RAM buffer [mem 0x00097000-0x0009ffff]
[    2.183782] e820: reserve RAM buffer [mem 0x7cb60000-0x7fffffff]
[    2.183831] pci 0000:05:00.0: vgaarb: setting as boot VGA device
[    2.183834] pci 0000:05:00.0: vgaarb: bridge control possible
[    2.183836] pci 0000:05:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    2.183845] pci 0000:0a:00.0: vgaarb: setting as boot VGA device (overriding previous)
[    2.183846] pci 0000:0a:00.0: vgaarb: bridge control possible
[    2.183848] pci 0000:0a:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    2.183873] vgaarb: loaded
[    2.183879] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    2.183879] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    2.185831] clocksource: Switched to clocksource tsc-early
[    2.186715] VFS: Disk quotas dquot_6.6.0
[    2.186749] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    2.186936] AppArmor: AppArmor Filesystem Enabled
[    2.186976] pnp: PnP ACPI init
[    2.187098] system 00:00: [mem 0xfc000000-0xfcffffff] has been reserved
[    2.187103] system 00:00: [mem 0xfd000000-0xfdffffff] has been reserved
[    2.187105] system 00:00: [mem 0xfe000000-0xfeafffff] has been reserved
[    2.187107] system 00:00: [mem 0xfeb00000-0xfebfffff] has been reserved
[    2.187109] system 00:00: [mem 0xfed00400-0xfed3ffff] could not be reserved
[    2.187112] system 00:00: [mem 0xfed45000-0xfedfffff] has been reserved
[    2.187114] system 00:00: [mem 0x00000400-0x000004ff] could not be reserved
[    2.187114] system 00:01: [mem 0xcfffc000-0xcfffdfff] could not be reserved
[    2.187114] system 00:02: [io  0x0290-0x029f] has been reserved
[    2.187114] system 00:04: [io  0x04d0-0x04d1] has been reserved
[    2.187114] pnp 00:06: [dma 0 disabled]
[    2.187114] pnp 00:07: [dma 0 disabled]
[    2.187114] system 00:08: [io  0x0400-0x0453] has been reserved
[    2.187114] system 00:08: [io  0x0458-0x047f] has been reserved
[    2.187114] system 00:08: [io  0x1180-0x119f] has been reserved
[    2.187114] system 00:08: [io  0x0500-0x057f] has been reserved
[    2.187114] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    2.187114] system 00:08: [mem 0xfec00000-0xfecfffff] could not be reserved
[    2.187114] system 00:08: [mem 0xfed08000-0xfed08fff] has been reserved
[    2.187114] system 00:08: [mem 0xff000000-0xffffffff] has been reserved
[    2.187114] system 00:09: [io  0x0454-0x0457] has been reserved
[    2.187114] system 00:0b: [mem 0xfbffe000-0xfbffffff] could not be reserved
[    2.187282] pnp: PnP ACPI: found 12 devices
[    2.193440] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    2.193548] NET: Registered PF_INET protocol family
[    2.194322] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc)
[    2.214868] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    2.215039] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[    2.216462] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    2.217364] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    2.217638] TCP: Hash tables configured (established 524288 bind 65536)
[    2.218208] MPTCP token hash table entries: 65536 (order: 8, 1572864 bytes, vmalloc)
[    2.218939] UDP hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    2.219864] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    2.220198] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    2.220211] NET: Registered PF_XDP protocol family
[    2.220242] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.220255] pci 0000:00:01.1: PCI bridge to [bus 02]
[    2.220264] pci 0000:00:02.0: PCI bridge to [bus 03]
[    2.220272] pci 0000:00:02.2: PCI bridge to [bus 04]
[    2.220277] pci 0000:00:02.2:   bridge window [mem 0xc8a00000-0xc8cfffff]
[    2.220284] pci 0000:00:03.0: PCI bridge to [bus 05]
[    2.220287] pci 0000:00:03.0:   bridge window [io  0x8000-0x8fff]
[    2.220292] pci 0000:00:03.0:   bridge window [mem 0xb8000000-0xc60fffff]
[    2.220299] pci 0000:00:11.0: PCI bridge to [bus 06]
[    2.220302] pci 0000:00:11.0:   bridge window [io  0x7000-0x7fff]
[    2.220308] pci 0000:00:11.0:   bridge window [mem 0xc8400000-0xc88fffff]
[    2.220312] pci 0000:00:11.0:   bridge window [mem 0xcfe00000-0xcfefffff 64bit pref]
[    2.220320] pci 0000:00:1c.0: PCI bridge to [bus 07-08]
[    2.220323] pci 0000:00:1c.0:   bridge window [io  0x6000-0x6fff]
[    2.220328] pci 0000:00:1c.0:   bridge window [mem 0xc8e00000-0xc8efffff]
[    2.220337] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    2.220341] pci 0000:09:00.0:   bridge window [io  0x5000-0x5fff]
[    2.220348] pci 0000:09:00.0:   bridge window [mem 0xc7000000-0xc80fffff]
[    2.220361] pci 0000:00:1c.7: PCI bridge to [bus 09-0a]
[    2.220363] pci 0000:00:1c.7:   bridge window [io  0x5000-0x5fff]
[    2.220368] pci 0000:00:1c.7:   bridge window [mem 0xc7000000-0xc80fffff]
[    2.220376] pci 0000:00:1e.0: PCI bridge to [bus 0b]
[    2.220386] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    2.220388] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    2.220390] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    2.220392] pci_bus 0000:00: resource 7 [io  0x0d00-0x9fff window]
[    2.220394] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
[    2.220396] pci_bus 0000:00: resource 9 [mem 0x80000000-0xcfffffff window]
[    2.220399] pci_bus 0000:04: resource 1 [mem 0xc8a00000-0xc8cfffff]
[    2.220401] pci_bus 0000:05: resource 0 [io  0x8000-0x8fff]
[    2.220402] pci_bus 0000:05: resource 1 [mem 0xb8000000-0xc60fffff]
[    2.220404] pci_bus 0000:06: resource 0 [io  0x7000-0x7fff]
[    2.220405] pci_bus 0000:06: resource 1 [mem 0xc8400000-0xc88fffff]
[    2.220407] pci_bus 0000:06: resource 2 [mem 0xcfe00000-0xcfefffff 64bit pref]
[    2.220409] pci_bus 0000:07: resource 0 [io  0x6000-0x6fff]
[    2.220411] pci_bus 0000:07: resource 1 [mem 0xc8e00000-0xc8efffff]
[    2.220412] pci_bus 0000:09: resource 0 [io  0x5000-0x5fff]
[    2.220414] pci_bus 0000:09: resource 1 [mem 0xc7000000-0xc80fffff]
[    2.220415] pci_bus 0000:0a: resource 0 [io  0x5000-0x5fff]
[    2.220417] pci_bus 0000:0a: resource 1 [mem 0xc7000000-0xc80fffff]
[    2.220419] pci_bus 0000:0b: resource 4 [io  0x0000-0x03af window]
[    2.220420] pci_bus 0000:0b: resource 5 [io  0x03e0-0x0cf7 window]
[    2.220422] pci_bus 0000:0b: resource 6 [io  0x03b0-0x03df window]
[    2.220423] pci_bus 0000:0b: resource 7 [io  0x0d00-0x9fff window]
[    2.220425] pci_bus 0000:0b: resource 8 [mem 0x000a0000-0x000dffff window]
[    2.220427] pci_bus 0000:0b: resource 9 [mem 0x80000000-0xcfffffff window]
[    2.220517] pci 0000:80:00.0: PCI bridge to [bus 81]
[    2.220527] pci 0000:80:01.0: PCI bridge to [bus 82]
[    2.220537] pci 0000:80:02.0: PCI bridge to [bus 83]
[    2.220547] pci 0000:80:03.0: PCI bridge to [bus 84]
[    2.220556] pci_bus 0000:80: resource 4 [io  0xa000-0xffff window]
[    2.220558] pci_bus 0000:80: resource 5 [mem 0xd0000000-0xfbffffff window]
[    2.220623] pci 0000:00:05.0: disabled boot interrupts on device [8086:0e28]
[    2.243673] pci 0000:00:1a.0: quirk_usb_early_handoff+0x0/0x780 took 22491 usecs
[    2.267671] pci 0000:00:1d.0: quirk_usb_early_handoff+0x0/0x780 took 23411 usecs
[    2.267700] pci 0000:05:00.1: extending delay after power-on from D3hot to 20 msec
[    2.267744] pci 0000:05:00.1: D0 power state depends on 0000:05:00.0
[    2.267904] pci 0000:80:05.0: disabled boot interrupts on device [8086:0e28]
[    2.268027] PCI: CLS 64 bytes, default 64
[    2.268115] DMAR: No SATC found
[    2.268120] DMAR: dmar0: Using Queued invalidation
[    2.268126] DMAR: dmar1: Using Queued invalidation
[    2.268130] Trying to unpack rootfs image as initramfs...
[    2.268253] pci 0000:80:00.0: Adding to iommu group 0
[    2.268296] pci 0000:80:01.0: Adding to iommu group 1
[    2.268335] pci 0000:80:02.0: Adding to iommu group 2
[    2.268373] pci 0000:80:03.0: Adding to iommu group 3
[    2.268413] pci 0000:80:04.0: Adding to iommu group 4
[    2.268450] pci 0000:80:04.1: Adding to iommu group 5
[    2.268487] pci 0000:80:04.2: Adding to iommu group 6
[    2.268523] pci 0000:80:04.3: Adding to iommu group 7
[    2.268561] pci 0000:80:04.4: Adding to iommu group 8
[    2.268598] pci 0000:80:04.5: Adding to iommu group 9
[    2.268635] pci 0000:80:04.6: Adding to iommu group 10
[    2.268671] pci 0000:80:04.7: Adding to iommu group 11
[    2.268764] pci 0000:00:00.0: Adding to iommu group 12
[    2.268805] pci 0000:00:01.0: Adding to iommu group 13
[    2.268846] pci 0000:00:01.1: Adding to iommu group 14
[    2.268884] pci 0000:00:02.0: Adding to iommu group 15
[    2.268924] pci 0000:00:02.2: Adding to iommu group 16
[    2.268962] pci 0000:00:03.0: Adding to iommu group 17
[    2.268999] pci 0000:00:04.0: Adding to iommu group 18
[    2.269036] pci 0000:00:04.1: Adding to iommu group 19
[    2.269077] pci 0000:00:04.2: Adding to iommu group 20
[    2.269114] pci 0000:00:04.3: Adding to iommu group 21
[    2.269150] pci 0000:00:04.4: Adding to iommu group 22
[    2.269187] pci 0000:00:04.5: Adding to iommu group 23
[    2.269226] pci 0000:00:04.6: Adding to iommu group 24
[    2.269263] pci 0000:00:04.7: Adding to iommu group 25
[    2.269299] pci 0000:00:05.0: Adding to iommu group 26
[    2.269336] pci 0000:00:05.2: Adding to iommu group 27
[    2.269374] pci 0000:00:05.4: Adding to iommu group 28
[    2.269411] pci 0000:00:11.0: Adding to iommu group 29
[    2.269506] pci 0000:00:16.0: Adding to iommu group 30
[    2.269545] pci 0000:00:16.1: Adding to iommu group 30
[    2.269583] pci 0000:00:1a.0: Adding to iommu group 31
[    2.269620] pci 0000:00:1b.0: Adding to iommu group 32
[    2.269657] pci 0000:00:1c.0: Adding to iommu group 33
[    2.269696] pci 0000:00:1c.7: Adding to iommu group 34
[    2.269734] pci 0000:00:1d.0: Adding to iommu group 35
[    2.269771] pci 0000:00:1e.0: Adding to iommu group 36
[    2.269896] pci 0000:00:1f.0: Adding to iommu group 37
[    2.269935] pci 0000:00:1f.2: Adding to iommu group 37
[    2.269977] pci 0000:00:1f.3: Adding to iommu group 37
[    2.270015] pci 0000:04:00.0: Adding to iommu group 38
[    2.270111] pci 0000:05:00.0: Adding to iommu group 39
[    2.270152] pci 0000:05:00.1: Adding to iommu group 39
[    2.270220] pci 0000:06:00.0: Adding to iommu group 40
[    2.270259] pci 0000:07:00.0: Adding to iommu group 41
[    2.270300] pci 0000:07:00.1: Adding to iommu group 42
[    2.270340] pci 0000:09:00.0: Adding to iommu group 43
[    2.270345] pci 0000:0a:00.0: Adding to iommu group 43
[    2.270413] pci 0000:7f:08.0: Adding to iommu group 44
[    2.270480] pci 0000:7f:09.0: Adding to iommu group 45
[    2.270636] pci 0000:7f:0a.0: Adding to iommu group 46
[    2.270678] pci 0000:7f:0a.1: Adding to iommu group 46
[    2.270720] pci 0000:7f:0a.2: Adding to iommu group 46
[    2.270764] pci 0000:7f:0a.3: Adding to iommu group 46
[    2.270860] pci 0000:7f:0b.0: Adding to iommu group 47
[    2.270904] pci 0000:7f:0b.3: Adding to iommu group 47
[    2.271119] pci 0000:7f:0c.0: Adding to iommu group 48
[    2.271164] pci 0000:7f:0c.1: Adding to iommu group 48
[    2.271209] pci 0000:7f:0c.2: Adding to iommu group 48
[    2.271252] pci 0000:7f:0c.3: Adding to iommu group 48
[    2.271294] pci 0000:7f:0c.4: Adding to iommu group 48
[    2.271337] pci 0000:7f:0c.5: Adding to iommu group 48
[    2.271579] pci 0000:7f:0d.0: Adding to iommu group 49
[    2.271644] pci 0000:7f:0d.1: Adding to iommu group 49
[    2.271691] pci 0000:7f:0d.2: Adding to iommu group 49
[    2.271736] pci 0000:7f:0d.3: Adding to iommu group 49
[    2.271780] pci 0000:7f:0d.4: Adding to iommu group 49
[    2.271825] pci 0000:7f:0d.5: Adding to iommu group 49
[    2.271924] pci 0000:7f:0e.0: Adding to iommu group 50
[    2.271970] pci 0000:7f:0e.1: Adding to iommu group 50
[    2.272007] pci 0000:7f:0f.0: Adding to iommu group 51
[    2.272044] pci 0000:7f:0f.1: Adding to iommu group 52
[    2.272083] pci 0000:7f:0f.2: Adding to iommu group 53
[    2.272121] pci 0000:7f:0f.3: Adding to iommu group 54
[    2.272159] pci 0000:7f:0f.4: Adding to iommu group 55
[    2.272197] pci 0000:7f:0f.5: Adding to iommu group 56
[    2.272236] pci 0000:7f:10.0: Adding to iommu group 57
[    2.272274] pci 0000:7f:10.1: Adding to iommu group 58
[    2.272314] pci 0000:7f:10.2: Adding to iommu group 59
[    2.272351] pci 0000:7f:10.3: Adding to iommu group 60
[    2.272392] pci 0000:7f:10.4: Adding to iommu group 61
[    2.272429] pci 0000:7f:10.5: Adding to iommu group 62
[    2.272467] pci 0000:7f:10.6: Adding to iommu group 63
[    2.272504] pci 0000:7f:10.7: Adding to iommu group 64
[    2.272664] pci 0000:7f:13.0: Adding to iommu group 65
[    2.272712] pci 0000:7f:13.1: Adding to iommu group 65
[    2.272761] pci 0000:7f:13.4: Adding to iommu group 65
[    2.272808] pci 0000:7f:13.5: Adding to iommu group 65
[    2.272935] pci 0000:7f:16.0: Adding to iommu group 66
[    2.272985] pci 0000:7f:16.1: Adding to iommu group 66
[    2.273034] pci 0000:7f:16.2: Adding to iommu group 66
[    2.273131] pci 0000:7f:1c.0: Adding to iommu group 67
[    2.273181] pci 0000:7f:1c.1: Adding to iommu group 67
[    2.273218] pci 0000:7f:1d.0: Adding to iommu group 68
[    2.273257] pci 0000:7f:1d.1: Adding to iommu group 69
[    2.273294] pci 0000:7f:1d.2: Adding to iommu group 70
[    2.273332] pci 0000:7f:1d.3: Adding to iommu group 71
[    2.273369] pci 0000:7f:1d.4: Adding to iommu group 72
[    2.273408] pci 0000:7f:1d.5: Adding to iommu group 73
[    2.273445] pci 0000:7f:1e.0: Adding to iommu group 74
[    2.273482] pci 0000:7f:1e.1: Adding to iommu group 75
[    2.273520] pci 0000:7f:1e.2: Adding to iommu group 76
[    2.273559] pci 0000:7f:1e.3: Adding to iommu group 77
[    2.273596] pci 0000:7f:1e.4: Adding to iommu group 78
[    2.273632] pci 0000:7f:1e.5: Adding to iommu group 79
[    2.273673] pci 0000:7f:1e.6: Adding to iommu group 80
[    2.273711] pci 0000:7f:1e.7: Adding to iommu group 81
[    2.273748] pci 0000:80:05.0: Adding to iommu group 82
[    2.273785] pci 0000:80:05.2: Adding to iommu group 83
[    2.273824] pci 0000:80:05.4: Adding to iommu group 84
[    2.273892] pci 0000:ff:08.0: Adding to iommu group 85
[    2.273958] pci 0000:ff:09.0: Adding to iommu group 86
[    2.274113] pci 0000:ff:0a.0: Adding to iommu group 87
[    2.274170] pci 0000:ff:0a.1: Adding to iommu group 87
[    2.274225] pci 0000:ff:0a.2: Adding to iommu group 87
[    2.274280] pci 0000:ff:0a.3: Adding to iommu group 87
[    2.274375] pci 0000:ff:0b.0: Adding to iommu group 88
[    2.274431] pci 0000:ff:0b.3: Adding to iommu group 88
[    2.274647] pci 0000:ff:0c.0: Adding to iommu group 89
[    2.274704] pci 0000:ff:0c.1: Adding to iommu group 89
[    2.274760] pci 0000:ff:0c.2: Adding to iommu group 89
[    2.274817] pci 0000:ff:0c.3: Adding to iommu group 89
[    2.274872] pci 0000:ff:0c.4: Adding to iommu group 89
[    2.274928] pci 0000:ff:0c.5: Adding to iommu group 89
[    2.275143] pci 0000:ff:0d.0: Adding to iommu group 90
[    2.275201] pci 0000:ff:0d.1: Adding to iommu group 90
[    2.275260] pci 0000:ff:0d.2: Adding to iommu group 90
[    2.275317] pci 0000:ff:0d.3: Adding to iommu group 90
[    2.275374] pci 0000:ff:0d.4: Adding to iommu group 90
[    2.275431] pci 0000:ff:0d.5: Adding to iommu group 90
[    2.275530] pci 0000:ff:0e.0: Adding to iommu group 91
[    2.275597] pci 0000:ff:0e.1: Adding to iommu group 91
[    2.275637] pci 0000:ff:0f.0: Adding to iommu group 92
[    2.275675] pci 0000:ff:0f.1: Adding to iommu group 93
[    2.275712] pci 0000:ff:0f.2: Adding to iommu group 94
[    2.275751] pci 0000:ff:0f.3: Adding to iommu group 95
[    2.275788] pci 0000:ff:0f.4: Adding to iommu group 96
[    2.275825] pci 0000:ff:0f.5: Adding to iommu group 97
[    2.275862] pci 0000:ff:10.0: Adding to iommu group 98
[    2.275901] pci 0000:ff:10.1: Adding to iommu group 99
[    2.275939] pci 0000:ff:10.2: Adding to iommu group 100
[    2.275976] pci 0000:ff:10.3: Adding to iommu group 101
[    2.276013] pci 0000:ff:10.4: Adding to iommu group 102
[    2.276051] pci 0000:ff:10.5: Adding to iommu group 103
[    2.276088] pci 0000:ff:10.6: Adding to iommu group 104
[    2.276125] pci 0000:ff:10.7: Adding to iommu group 105
[    2.276283] pci 0000:ff:13.0: Adding to iommu group 106
[    2.276350] pci 0000:ff:13.1: Adding to iommu group 106
[    2.276412] pci 0000:ff:13.4: Adding to iommu group 106
[    2.276473] pci 0000:ff:13.5: Adding to iommu group 106
[    2.276599] pci 0000:ff:16.0: Adding to iommu group 107
[    2.276660] pci 0000:ff:16.1: Adding to iommu group 107
[    2.276722] pci 0000:ff:16.2: Adding to iommu group 107
[    2.276820] pci 0000:ff:1c.0: Adding to iommu group 108
[    2.276883] pci 0000:ff:1c.1: Adding to iommu group 108
[    2.276919] pci 0000:ff:1d.0: Adding to iommu group 109
[    2.276956] pci 0000:ff:1d.1: Adding to iommu group 110
[    2.276996] pci 0000:ff:1d.2: Adding to iommu group 111
[    2.277033] pci 0000:ff:1d.3: Adding to iommu group 112
[    2.277070] pci 0000:ff:1d.4: Adding to iommu group 113
[    2.277107] pci 0000:ff:1d.5: Adding to iommu group 114
[    2.277146] pci 0000:ff:1e.0: Adding to iommu group 115
[    2.277183] pci 0000:ff:1e.1: Adding to iommu group 116
[    2.277220] pci 0000:ff:1e.2: Adding to iommu group 117
[    2.277257] pci 0000:ff:1e.3: Adding to iommu group 118
[    2.277295] pci 0000:ff:1e.4: Adding to iommu group 119
[    2.277332] pci 0000:ff:1e.5: Adding to iommu group 120
[    2.277369] pci 0000:ff:1e.6: Adding to iommu group 121
[    2.277409] pci 0000:ff:1e.7: Adding to iommu group 122
[    2.277512] DMAR: Intel(R) Virtualization Technology for Directed I/O
[    2.277514] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    2.277515] software IO TLB: mapped [mem 0x0000000078b60000-0x000000007cb60000] (64MB)
[    2.280406] Initialise system trusted keyrings
[    2.280426] Key type blacklist registered
[    2.280536] workingset: timestamp_bits=36 max_order=26 bucket_order=0
[    2.280547] zbud: loaded
[    2.281002] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    2.281166] fuse: init (API version 7.40)
[    2.281438] integrity: Platform Keyring initialized
[    2.281445] integrity: Machine keyring initialized
[    2.295500] Key type asymmetric registered
[    2.295503] Asymmetric key parser 'x509' registered
[    2.295557] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[    2.295646] io scheduler mq-deadline registered
[    2.300368] pcieport 0000:00:01.0: PME: Signaling with IRQ 25
[    2.300666] pcieport 0000:00:01.1: PME: Signaling with IRQ 26
[    2.300956] pcieport 0000:00:02.0: PME: Signaling with IRQ 28
[    2.301246] pcieport 0000:00:02.2: PME: Signaling with IRQ 29
[    2.301537] pcieport 0000:00:03.0: PME: Signaling with IRQ 31
[    2.301783] pcieport 0000:00:11.0: PME: Signaling with IRQ 32
[    2.302022] pcieport 0000:00:1c.0: PME: Signaling with IRQ 33
[    2.302230] pcieport 0000:00:1c.7: PME: Signaling with IRQ 34
[    2.302727] pcieport 0000:80:00.0: PME: Signaling with IRQ 36
[    2.303081] pcieport 0000:80:01.0: PME: Signaling with IRQ 38
[    2.303437] pcieport 0000:80:02.0: PME: Signaling with IRQ 40
[    2.303793] pcieport 0000:80:03.0: PME: Signaling with IRQ 42
[    2.304092] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    2.304334] Monitor-Mwait will be used to enter C-1 state
[    2.304345] Monitor-Mwait will be used to enter C-2 state
[    2.304351] ACPI: \_SB_.SCK0.C000: Found 2 idle states
[    2.310224] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    2.310329] ACPI: button: Power Button [PWRB]
[    2.310387] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    2.310439] ACPI: button: Power Button [PWRF]
[    2.374566] ERST: Error Record Serialization Table (ERST) support is initialized.
[    2.374692] pstore: Using crash dump compression: deflate
[    2.374694] pstore: Registered erst as persistent store backend
[    2.374946] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    2.395509] 00:06: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    2.416687] 00:07: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    2.419769] Linux agpgart interface v0.103
[    2.429854] loop: module loaded
[    2.430354] tun: Universal TUN/TAP device driver, 1.6
[    2.430394] PPP generic driver version 2.4.2
[    2.430496] i8042: PNP: PS/2 Controller [PNP0f03:PS2M] at 0x60,0x64 irq 12
[    2.430499] i8042: PNP: PS/2 controller doesn't have KBD irq; using default 1
[    2.433233] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.433241] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.433408] mousedev: PS/2 mouse device common for all mice
[    2.433531] rtc_cmos 00:03: RTC can wake from S4
[    2.433787] rtc_cmos 00:03: registered as rtc0
[    2.433822] rtc_cmos 00:03: setting system clock to 2024-05-25T20:41:10 UTC (1716669670)
[    2.433859] rtc_cmos 00:03: alarms up to one month, y3k, 114 bytes nvram
[    2.433870] i2c_dev: i2c /dev entries driver
[    2.435691] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    2.435712] device-mapper: uevent: version 1.0.3
[    2.435789] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
[    2.435814] platform eisa.0: Probing EISA bus 0
[    2.435817] platform eisa.0: EISA: Cannot allocate resource for mainboard
[    2.435819] platform eisa.0: Cannot allocate resource for EISA slot 1
[    2.435821] platform eisa.0: Cannot allocate resource for EISA slot 2
[    2.435822] platform eisa.0: Cannot allocate resource for EISA slot 3
[    2.435824] platform eisa.0: Cannot allocate resource for EISA slot 4
[    2.435826] platform eisa.0: Cannot allocate resource for EISA slot 5
[    2.435827] platform eisa.0: Cannot allocate resource for EISA slot 6
[    2.435829] platform eisa.0: Cannot allocate resource for EISA slot 7
[    2.435830] platform eisa.0: Cannot allocate resource for EISA slot 8
[    2.435832] platform eisa.0: EISA: Detected 0 cards
[    2.435863] intel_pstate: Intel P-state driver initializing
[    2.440712] ledtrig-cpu: registered to indicate activity on CPUs
[    2.440928] drop_monitor: Initializing network drop monitor service
[    2.441115] NET: Registered PF_INET6 protocol family
[    3.295519] tsc: Refined TSC clocksource calibration: 2699.998 MHz
[    3.295574] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x26eb3cc21a9, max_idle_ns: 440795299783 ns
[    3.295682] clocksource: Switched to clocksource tsc
[    6.188660] Freeing initrd memory: 435252K
[    6.197264] Segment Routing with IPv6
[    6.197296] In-situ OAM (IOAM) with IPv6
[    6.197353] NET: Registered PF_PACKET protocol family
[    6.197379] Bridge firewalling registered
[    6.197479] Key type dns_resolver registered
[    6.203247] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    6.205262] microcode: Current revision: 0x00000424
[    6.207649] IPI shorthand broadcast: enabled
[    6.209166] sched_clock: Marking stable (6200092630, 7477148)->(6374650597, -167080819)
[    6.209417] Timer migration: 3 hierarchy levels; 8 children per group; 2 crossnode level
[    6.211126] registered taskstats version 1
[    6.216037] Loading compiled-in X.509 certificates
[    6.216756] Loaded X.509 cert 'Build time autogenerated kernel key: 3e96187dd8a43a95f92439a1821c76bce4d3c43c'
[    6.218638] Key type .fscrypt registered
[    6.218641] Key type fscrypt-provisioning registered
[    6.237681] Key type encrypted registered
[    6.237688] AppArmor: AppArmor sha256 policy hashing enabled
[    6.237701] ima: No TPM chip found, activating TPM-bypass!
[    6.237706] Loading compiled-in module X.509 certificates
[    6.238302] Loaded X.509 cert 'Build time autogenerated kernel key: 3e96187dd8a43a95f92439a1821c76bce4d3c43c'
[    6.238305] ima: Allocated hash algorithm: sha1
[    6.238317] ima: No architecture policies found
[    6.238328] evm: Initialising EVM extended attributes:
[    6.238330] evm: security.selinux
[    6.238332] evm: security.SMACK64
[    6.238333] evm: security.SMACK64EXEC
[    6.238334] evm: security.SMACK64TRANSMUTE
[    6.238334] evm: security.SMACK64MMAP
[    6.238335] evm: security.apparmor
[    6.238336] evm: security.ima
[    6.238337] evm: security.capability
[    6.238338] evm: HMAC attrs: 0x1
[    6.238809] PM:   Magic number: 8:129:701
[    6.238927] acpi LNXCPU:0f: hash matches
[    6.243835] RAS: Correctable Errors collector initialized.
[    6.256114] clk: Disabling unused clocks
[    6.256118] PM: genpd: Disabling unused power domains
[    6.257978] Freeing unused decrypted memory: 2028K
[    6.260073] Freeing unused kernel image (initmem) memory: 4768K
[    6.260161] Write protecting the kernel read-only data: 34816k
[    6.260992] Freeing unused kernel image (rodata/data gap) memory: 1160K
[    6.303186] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    6.303190] x86/mm: Checking user space page tables
[    6.343292] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    6.343300] Run /init as init process
[    6.343302]   with arguments:
[    6.343303]     /init
[    6.343305]   with environment:
[    6.343306]     HOME=/
[    6.343307]     TERM=linux
[    6.343307]     BOOT_IMAGE=/boot/vmlinuz-6.9.2-dirty
[    6.489757] dca service started, version 1.12.1
[    6.495655] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    6.495670] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    6.495684] ehci-pci 0000:00:1a.0: debug port 2
[    6.499623] ehci-pci 0000:00:1a.0: irq 17, io mem 0xc6127000
[    6.499745] ahci 0000:00:1f.2: version 3.0
[    6.500181] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[    6.500728] i2c i2c-0: More than 8 memory slots on a single bus, contact i801 maintainer to add missing mux config
[    6.501366] Adaptec aacraid driver 1.2.1[50983]-custom
[    6.502000] aacraid: Comm Interface enabled
[    6.510050] ahci 0000:00:1f.2: AHCI vers 0001.0300, 32 command slots, 6 Gbps, SATA mode
[    6.510055] ahci 0000:00:1f.2: 6/6 ports implemented (port mask 0x3f)
[    6.510058] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst 
[    6.515491] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    6.515571] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.09
[    6.515575] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.515577] usb usb1: Product: EHCI Host Controller
[    6.515579] usb usb1: Manufacturer: Linux 6.9.2-dirty ehci_hcd
[    6.515581] usb usb1: SerialNumber: 0000:00:1a.0
[    6.515734] hub 1-0:1.0: USB hub found
[    6.515746] hub 1-0:1.0: 2 ports detected
[    6.516040] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    6.516046] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    6.516058] ehci-pci 0000:00:1d.0: debug port 2
[    6.518304] igb: Intel(R) Gigabit Ethernet Network Driver
[    6.518310] igb: Copyright (c) 2007-2014 Intel Corporation.
[    6.519999] ehci-pci 0000:00:1d.0: irq 23, io mem 0xc6126000
[    6.543007] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    6.543048] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.09
[    6.543051] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.543053] usb usb2: Product: EHCI Host Controller
[    6.543055] usb usb2: Manufacturer: Linux 6.9.2-dirty ehci_hcd
[    6.543056] usb usb2: SerialNumber: 0000:00:1d.0
[    6.543178] hub 2-0:1.0: USB hub found
[    6.543186] hub 2-0:1.0: 2 ports detected
[    6.562372] isci: Intel(R) C600 SAS Controller Driver - version 1.2.0
[    6.562416] isci 0000:06:00.0: driver configured for rev: 6 silicon
[    6.562432] isci 0000:06:00.0: OEM parameter table found in OROM
[    6.562435] isci 0000:06:00.0: OEM SAS parameters (version: 1.1) loaded (platform)
[    6.562725] isci 0000:06:00.0: SCU controller 0: phy 3-0 cables: {short, short, short, short}
[    6.565212] scsi host1: isci
[    6.568027] scsi host2: ahci
[    6.568253] scsi host3: ahci
[    6.568479] scsi host4: ahci
[    6.568666] scsi host5: ahci
[    6.568842] scsi host6: ahci
[    6.569022] scsi host7: ahci
[    6.569072] ata1: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125100 irq 43 lpm-pol 0
[    6.569075] ata2: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125180 irq 43 lpm-pol 0
[    6.569091] ata3: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125200 irq 43 lpm-pol 0
[    6.569093] ata4: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125280 irq 43 lpm-pol 0
[    6.569095] ata5: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125300 irq 43 lpm-pol 0
[    6.569096] ata6: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125380 irq 43 lpm-pol 0
[    6.590557] igb 0000:07:00.0: added PHC on eth0
[    6.590580] igb 0000:07:00.0: Intel(R) Gigabit Ethernet Network Connection
[    6.590582] igb 0000:07:00.0: eth0: (PCIe:5.0Gb/s:Width x4) e0:3f:49:e7:2a:31
[    6.590657] igb 0000:07:00.0: eth0: PBA No: 104900-000
[    6.590659] igb 0000:07:00.0: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s)
[    6.646511] igb 0000:07:00.1: added PHC on eth1
[    6.646533] igb 0000:07:00.1: Intel(R) Gigabit Ethernet Network Connection
[    6.646535] igb 0000:07:00.1: eth1: (PCIe:5.0Gb/s:Width x4) e0:3f:49:e7:2a:32
[    6.646610] igb 0000:07:00.1: eth1: PBA No: 104900-000
[    6.646612] igb 0000:07:00.1: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s)
[    6.707840] AAC0: kernel 5.2-0[18948] Apr 13 2012
[    6.707844] AAC0: monitor 5.2-0[18948]
[    6.707845] AAC0: bios 5.2-0[18948]
[    6.707847] AAC0: serial 3E4313486E1
[    6.707848] AAC0: Non-DASD support enabled.
[    6.707849] AAC0: 64bit support enabled.
[    6.707851] aacraid 0000:04:00.0: 64 Bit DAC enabled
[    6.722495] scsi host0: aacraid
[    6.722915] scsi 0:0:0:0: Direct-Access     Adaptec  linus_raid1_1tb  V1.0 PQ: 0 ANSI: 2
[    6.723041] scsi 0:0:1:0: Direct-Access     Adaptec  linus_raid5_5tb  V1.0 PQ: 0 ANSI: 2
[    6.732539] scsi 0:1:0:0: Direct-Access              Samsung SSD 860  RVM0 PQ: 1 ANSI: 5
[    6.735852] scsi 0:1:1:0: Direct-Access              Samsung SSD 860  RVM0 PQ: 1 ANSI: 5
[    6.739139] scsi 0:1:2:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    6.742860] scsi 0:1:3:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    6.746618] scsi 0:1:4:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    6.750354] scsi 0:1:5:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    6.754025] scsi 0:1:6:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    6.757764] scsi 0:1:7:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    6.771520] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    6.795495] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    6.839972] scsi 0:3:0:0: Enclosure         ADAPTEC  Virtual SGPIO  0 0001 PQ: 0 ANSI: 5
[    6.882290] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    6.882312] ata6: SATA link down (SStatus 0 SControl 300)
[    6.882659] ata1.00: ATA-9: M4-CT256M4SSD2, 0309, max UDMA/100
[    6.882746] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    6.882766] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    6.882785] ata4: SATA link down (SStatus 0 SControl 300)
[    6.882805] ata5: SATA link down (SStatus 0 SControl 300)
[    6.882863] ata1.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    6.883024] ata2.00: ATA-9: M4-CT256M4SSD2, 0309, max UDMA/100
[    6.883207] ata2.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    6.883309] ata1.00: configured for UDMA/100
[    6.883566] ata2.00: configured for UDMA/100
[    6.884783] ata3.00: ATAPI: ATAPI   iHAS124   W, HL0F, max UDMA/100
[    6.886833] ata3.00: configured for UDMA/100
[    6.927914] usb 1-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[    6.927919] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    6.928219] hub 1-1:1.0: USB hub found
[    6.928300] hub 1-1:1.0: 6 ports detected
[    6.951915] usb 2-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[    6.951920] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    6.952214] hub 2-1:1.0: USB hub found
[    6.952288] hub 2-1:1.0: 8 ports detected
[    6.980405] scsi 0:3:0:0: scsi_get_vpd_size: long VPD page 0 length: 516 bytes
[    6.995579] scsi: waiting for bus probes to complete ...
[    7.215558] usb 1-1.3: new high-speed USB device number 3 using ehci-pci
[    7.239541] usb 2-1.1: new low-speed USB device number 3 using ehci-pci
[    7.353917] usb 2-1.1: New USB device found, idVendor=046d, idProduct=c31c, bcdDevice=64.02
[    7.353937] usb 2-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    7.353939] usb 2-1.1: Product: USB Keyboard
[    7.353941] usb 2-1.1: Manufacturer: Logitech
[    7.368404] hid: raw HID events driver (C) Jiri Kosina
[    7.420674] input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input4
[    7.512792] usb 1-1.3: New USB device found, idVendor=046b, idProduct=ff01, bcdDevice= 1.00
[    7.512796] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    7.512798] usb 1-1.3: Product: Virtual Hub
[    7.512799] usb 1-1.3: Manufacturer: American Megatrends Inc.
[    7.512800] usb 1-1.3: SerialNumber: serial
[    7.513304] hub 1-1.3:1.0: USB hub found
[    7.513416] hub 1-1.3:1.0: 5 ports detected
[    7.851552] usb 1-1.3.1: new low-speed USB device number 4 using ehci-pci
[    8.024667] usb 1-1.3.1: New USB device found, idVendor=046b, idProduct=ff10, bcdDevice= 1.00
[    8.024671] usb 1-1.3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    8.024673] usb 1-1.3.1: Product: Virtual Keyboard and Mouse
[    8.024674] usb 1-1.3.1: Manufacturer: American Megatrends Inc.
[    8.080186] usbcore: registered new interface driver usbhid
[    8.080190] usbhid: USB HID core driver
[    8.155552] usb 1-1.3.2: new high-speed USB device number 5 using ehci-pci
[    8.328417] usb 1-1.3.2: New USB device found, idVendor=046b, idProduct=ff20, bcdDevice= 1.00
[    8.328422] usb 1-1.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    8.328423] usb 1-1.3.2: Product: Virtual Cdrom Device
[    8.328424] usb 1-1.3.2: Manufacturer: American Megatrends Inc.
[    8.328426] usb 1-1.3.2: SerialNumber: AAAABBBBCCCC1
[    8.338105] usb-storage 1-1.3.2:1.0: USB Mass Storage device detected
[    8.338400] scsi host8: usb-storage 1-1.3.2:1.0
[    8.338523] usbcore: registered new interface driver usb-storage
[    8.459551] usb 1-1.3.3: new high-speed USB device number 6 using ehci-pci
[    8.632417] usb 1-1.3.3: New USB device found, idVendor=046b, idProduct=ff40, bcdDevice= 1.00
[    8.632422] usb 1-1.3.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    8.632423] usb 1-1.3.3: Product: Virtual Floppy Device
[    8.632424] usb 1-1.3.3: Manufacturer: American Megatrends Inc.
[    8.632426] usb 1-1.3.3: SerialNumber: AAAABBBBCCCC2
[    8.632805] usb-storage 1-1.3.3:1.0: USB Mass Storage device detected
[    8.633030] usb-storage 1-1.3.3:1.0: Quirks match for vid 046b pid ff40: 200
[    8.633098] scsi host9: usb-storage 1-1.3.3:1.0
[    8.637252] usbcore: registered new interface driver uas
[    8.763565] usb 1-1.3.4: new high-speed USB device number 7 using ehci-pci
[    8.936418] usb 1-1.3.4: New USB device found, idVendor=046b, idProduct=ff31, bcdDevice= 1.00
[    8.936422] usb 1-1.3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    8.936424] usb 1-1.3.4: Product: Virtual HardDisk Device
[    8.936425] usb 1-1.3.4: Manufacturer: American Megatrends Inc.
[    8.936427] usb 1-1.3.4: SerialNumber: AAAABBBBCCCC3
[    8.936822] usb-storage 1-1.3.4:1.0: USB Mass Storage device detected
[    8.937123] scsi host10: usb-storage 1-1.3.4:1.0
[    9.344216] scsi 8:0:0:0: CD-ROM            AMI      Virtual CDROM0   1.00 PQ: 0 ANSI: 0 CCS
[    9.664216] scsi 9:0:0:0: Direct-Access     AMI      Virtual Floppy0  1.00 PQ: 0 ANSI: 0 CCS
[    9.952335] scsi 10:0:0:0: Direct-Access     AMI      Virtual HDISK0   1.00 PQ: 0 ANSI: 0 CCS
[   36.244453] scsi 0:3:1:0: Enclosure         ADAPTEC  Virtual SGPIO  1 0001 PQ: 0 ANSI: 5
[   65.451915] sd 0:0:0:0: Attached scsi generic sg0 type 0
[   65.452033] sd 0:0:0:0: [sda] 1998565376 512-byte logical blocks: (1.02 TB/953 GiB)
[   65.452048] sd 0:0:0:0: [sda] Write Protect is off
[   65.452051] sd 0:0:0:0: [sda] Mode Sense: 12 00 10 08
[   65.452055] sd 0:0:1:0: Attached scsi generic sg1 type 0
[   65.452071] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, supports DPO and FUA
[   65.452187] sd 0:0:1:0: [sdb] Very big device. Trying to use READ CAPACITY(16).
[   65.452190] scsi 0:1:0:0: Attached scsi generic sg2 type 0
[   65.452200] sd 0:0:1:0: [sdb] 9762222080 512-byte logical blocks: (5.00 TB/4.54 TiB)
[   65.452210] sd 0:0:1:0: [sdb] Write Protect is off
[   65.452213] sd 0:0:1:0: [sdb] Mode Sense: 12 00 10 08
[   65.452231] sd 0:0:1:0: [sdb] Write cache: disabled, read cache: enabled, supports DPO and FUA
[   65.452340] scsi 0:1:1:0: Attached scsi generic sg3 type 0
[   65.452488] scsi 0:1:2:0: Attached scsi generic sg4 type 0
[   65.452597] scsi 0:1:3:0: Attached scsi generic sg5 type 0
[   65.452705] scsi 0:1:4:0: Attached scsi generic sg6 type 0
[   65.452811] scsi 0:1:5:0: Attached scsi generic sg7 type 0
[   65.452933] sd 0:0:1:0: [sdb] Very big device. Trying to use READ CAPACITY(16).
[   65.452938] scsi 0:1:6:0: Attached scsi generic sg8 type 0
[   65.453062] scsi 0:1:7:0: Attached scsi generic sg9 type 0
[   65.453154] sd 0:0:0:0: [sda] Attached SCSI removable disk
[   65.453201] sd 0:0:1:0: [sdb] Attached SCSI removable disk
[   65.453274] scsi 0:3:0:0: Attached scsi generic sg10 type 13
[   65.453389] scsi 0:3:1:0: Attached scsi generic sg11 type 13
[   65.453547] scsi 2:0:0:0: Direct-Access     ATA      M4-CT256M4SSD2   0309 PQ: 0 ANSI: 5
[   65.453881] sd 2:0:0:0: Attached scsi generic sg12 type 0
[   65.453935] scsi: waiting for bus probes to complete ...
[   65.453964] sd 2:0:0:0: [sdc] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[   65.453975] sd 2:0:0:0: [sdc] Write Protect is off
[   65.453977] sd 2:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[   65.453989] sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   65.454013] sd 2:0:0:0: [sdc] Preferred minimum I/O size 512 bytes
[   65.454880]  sdc: sdc1 sdc2 < sdc5 >
[   65.455017] sd 2:0:0:0: [sdc] Attached SCSI removable disk
[   65.456251] sr 8:0:0:0: [sr0] scsi-1 drive
[   65.456255] cdrom: Uniform CD-ROM driver Revision: 3.20
[   65.457314] sr 8:0:0:0: Attached scsi CD-ROM sr0
[   65.457402] sr 8:0:0:0: Attached scsi generic sg13 type 5
[   65.457678] sd 9:0:0:0: Attached scsi generic sg14 type 0
[   65.457836] sd 10:0:0:0: Attached scsi generic sg15 type 0
[   65.457984] scsi 3:0:0:0: Direct-Access     ATA      M4-CT256M4SSD2   0309 PQ: 0 ANSI: 5
[   65.458255] sd 3:0:0:0: Attached scsi generic sg16 type 0
[   65.458384] sd 3:0:0:0: [sdf] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[   65.458394] sd 3:0:0:0: [sdf] Write Protect is off
[   65.458396] sd 3:0:0:0: [sdf] Mode Sense: 00 3a 00 00
[   65.458409] sd 3:0:0:0: [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   65.458431] sd 3:0:0:0: [sdf] Preferred minimum I/O size 512 bytes
[   65.458484] sd 9:0:0:0: [sdd] Media removed, stopped polling
[   65.458866] sd 10:0:0:0: [sde] Media removed, stopped polling
[   65.459006] sd 9:0:0:0: [sdd] Attached SCSI removable disk
[   65.459035] scsi 4:0:0:0: CD-ROM            ATAPI    iHAS124   W      HL0F PQ: 0 ANSI: 5
[   65.459329] sd 10:0:0:0: [sde] Attached SCSI removable disk
[   65.460245]  sdf: sdf1
[   65.460308] sd 3:0:0:0: [sdf] Attached SCSI removable disk
[   65.574236] sr 4:0:0:0: [sr1] scsi3-mmc drive: 188x/125x writer dvd-ram cd/rw xa/form2 cdda tray
[   65.621143] sr 4:0:0:0: Attached scsi CD-ROM sr1
[   65.621262] sr 4:0:0:0: Attached scsi generic sg17 type 5
[   65.623213] igb 0000:07:00.0 enp7s0f0: renamed from eth0
[   65.623392] igb 0000:07:00.1 enp7s0f1: renamed from eth1
[   65.624521] usbcore: registered new interface driver usbmouse
[   65.624576] usbcore: registered new interface driver usbkbd
[   65.630694] ses 0:3:0:0: Attached Enclosure device
[   65.630711] ses 0:3:1:0: Attached Enclosure device
[   65.631250] input: Logitech USB Keyboard as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.0/0003:046D:C31C.0001/input/input5
[   65.687662] hid-generic 0003:046D:C31C.0001: input,hidraw0: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-0000:00:1d.0-1.1/input0
[   65.687887] input: Logitech USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.1/0003:046D:C31C.0002/input/input6
[   65.747619] input: Logitech USB Keyboard System Control as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.1/0003:046D:C31C.0002/input/input7
[   65.747734] hid-generic 0003:046D:C31C.0002: input,hiddev0,hidraw1: USB HID v1.10 Device [Logitech USB Keyboard] on usb-0000:00:1d.0-1.1/input1
[   65.747942] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3.1/1-1.3.1:1.0/0003:046B:FF10.0003/input/input8
[   65.748008] hid-generic 0003:046B:FF10.0003: input,hidraw2: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.0-1.3.1/input0
[   65.748136] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3.1/1-1.3.1:1.1/0003:046B:FF10.0004/input/input9
[   65.748217] hid-generic 0003:046B:FF10.0004: input,hidraw3: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.0-1.3.1/input1
[   76.540848] device-mapper: thin: Data device (dm-1) discard unsupported: Disabling discard passdown.
[   79.081730] device-mapper: thin: Data device (dm-3) discard unsupported: Disabling discard passdown.
[  129.851492] raid6: sse2x4   gen() 12976 MB/s
[  129.919492] raid6: sse2x2   gen()  9268 MB/s
[  129.987494] raid6: sse2x1   gen()  8705 MB/s
[  129.987495] raid6: using algorithm sse2x4 gen() 12976 MB/s
[  130.055493] raid6: .... xor() 7843 MB/s, rmw enabled
[  130.055497] raid6: using ssse3x2 recovery algorithm
[  130.057624] xor: automatically using best checksumming function   avx       
[  130.280069] Btrfs loaded, zoned=yes, fsverity=yes
[  130.791608] PM: Image not found (code -22)
[  130.848362] EXT4-fs (sdc1): mounted filesystem 3842ebdd-e37f-4e4e-afd4-d7eb79b41984 ro with ordered data mode. Quota mode: none.
[  131.121809] systemd[1]: Inserted module 'autofs4'
[  131.151655] systemd[1]: systemd 252.22-1~deb12u1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[  131.151662] systemd[1]: Detected architecture x86-64.
[  131.154060] systemd[1]: Hostname set to <linus.localdomain>.
[  131.372400] systemd[1]: Queued start job for default target graphical.target.
[  131.409429] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[  131.410011] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[  131.410491] systemd[1]: Created slice system-postfix.slice - Slice /system/postfix.
[  131.410944] systemd[1]: Created slice user.slice - User and Session Slice.
[  131.411012] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[  131.411067] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[  131.411232] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[  131.411257] systemd[1]: Expecting device dev-disk-by\x2duuid-e5873103\x2d5ea5\x2d4dc0\x2da645\x2db8c511b219a8.device - /dev/disk/by-uuid/e5873103-5ea5-4dc0-a645-b8c511b219a8...
[  131.411267] systemd[1]: Expecting device dev-disk-by\x2duuid-fcf5433d\x2d28bd\x2d4d22\x2db3ba\x2ddd7262ae33a9.device - /dev/disk/by-uuid/fcf5433d-28bd-4d22-b3ba-dd7262ae33a9...
[  131.411281] systemd[1]: Reached target ceph-fuse.target - ceph target allowing to start/stop all ceph-fuse@.service instances at once.
[  131.411295] systemd[1]: Reached target ceph.target - ceph target allowing to start/stop all ceph*@.service instances at once.
[  131.411307] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
[  131.411326] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[  131.411357] systemd[1]: Reached target paths.target - Path Units.
[  131.411387] systemd[1]: Reached target slices.target - Slice Units.
[  131.411415] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[  131.411575] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[  131.411731] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[  131.415795] systemd[1]: Listening on rpcbind.socket - RPCbind Server Activation Socket.
[  131.416392] systemd[1]: Listening on syslog.socket - Syslog Socket.
[  131.416526] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[  131.416617] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[  131.416943] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
[  131.417100] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[  131.417255] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[  131.417616] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[  131.417735] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[  131.418847] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[  131.420039] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[  131.421199] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[  131.422341] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[  131.422428] systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
[  131.423966] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[  131.425123] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[  131.426391] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[  131.427794] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[  131.428935] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[  131.430098] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[  131.431245] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[  131.432650] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[  131.433782] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
[  131.434031] systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).
[  131.436125] systemd[1]: Starting systemd-journald.service - Journal Service...
[  131.439067] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[  131.440569] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[  131.442307] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[  131.444337] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[  131.444441] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[  131.444565] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[  131.444664] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[  131.444993] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[  131.445361] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[  131.445523] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[  131.445847] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[  131.446021] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[  131.446331] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[  131.446488] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[  131.446794] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[  131.446950] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[  131.447216] systemd[1]: modprobe@loop.service: Deactivated successfully.
[  131.447378] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.
[  131.448897] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[  131.450207] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[  131.450310] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
[  131.451559] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[  131.452726] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[  131.488944] VFIO - User Level meta-driver version: 0.3
[  131.502259] EXT4-fs (sdc1): re-mounted 3842ebdd-e37f-4e4e-afd4-d7eb79b41984 r/w. Quota mode: none.
[  131.503364] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[  131.503525] systemd[1]: systemd-firstboot.service - First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
[  131.503574] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[  131.504825] systemd[1]: Starting systemd-random-seed.service - Load/Save Random Seed...
[  131.506013] systemd[1]: Starting systemd-sysusers.service - Create System Users...
[  131.511477] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[  131.512475] vfio-pci 0000:05:00.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=none
[  131.512685] vfio_pci: add [10de:1201[ffffffff:ffffffff]] class 0x000000/00000000
[  131.528894] systemd[1]: Finished systemd-random-seed.service - Load/Save Random Seed.
[  131.528982] systemd[1]: first-boot-complete.target - First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
[  131.534179] systemd[1]: Started dm-event.service - Device-mapper event daemon.
[  131.537987] systemd[1]: Finished systemd-sysusers.service - Create System Users.
[  131.539250] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[  131.547451] ACPI: bus type drm_connector registered
[  131.549679] systemd[1]: modprobe@drm.service: Deactivated successfully.
[  131.549864] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[  131.559693] vfio_pci: add [10de:0e0c[ffffffff:ffffffff]] class 0x000000/00000000
[  131.559978] systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
[  131.561424] systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
[  131.584428] systemd[1]: Started systemd-journald.service - Journal Service.
[  131.592782] systemd-journald[842]: Received client request to flush runtime journal.
[  131.721136] IPMI message handler: version 39.2
[  131.730869] ipmi device interface
[  131.740750] ioatdma: Intel(R) QuickData Technology Driver 5.00
[  131.746019] input: PC Speaker as /devices/platform/pcspkr/input/input10
[  131.759050] igb 0000:07:00.0: DCA enabled
[  131.759086] igb 0000:07:00.1: DCA enabled
[  131.759888] ipmi_si: IPMI System Interface driver
[  131.759923] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
[  131.759927] ipmi_platform: ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
[  131.759931] ipmi_si: Adding SMBIOS-specified kcs state machine
[  131.760018] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
[  131.760159] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca2] regsize 1 spacing 1 irq 0
[  131.760419] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
[  131.760421] ipmi_si: Adding ACPI-specified kcs state machine
[  131.760539] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca2, slave address 0x20, irq 0
[  131.780566] mei_me 0000:00:16.0: Device doesn't have valid ME Interface
[  131.847141] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
[  131.847151] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[  131.847153] RAPL PMU: hw unit of domain package 2^-16 Joules
[  131.847155] RAPL PMU: hw unit of domain dram 2^-16 Joules
[  131.856217] cryptd: max_cpu_qlen set to 1000
[  131.877102] AVX version of gcm_enc/dec engaged.
[  131.877198] AES CTR mode by8 optimization enabled
[  131.877562] ast 0000:0a:00.0: vgaarb: deactivate vga console
[  131.880203] Console: switching to colour dummy device 80x25
[  131.880436] ast 0000:0a:00.0: Using P2A bridge for configuration
[  131.880441] ast 0000:0a:00.0: AST 2300 detected
[  131.880535] ast 0000:0a:00.0: [drm] Using analog VGA
[  131.880545] ast 0000:0a:00.0: [drm] dram MCLK=408 Mhz type=1 bus_width=16
[  131.888486] [drm] Initialized ast 0.1.0 20120228 for 0000:0a:00.0 on minor 0
[  132.040882] snd_hda_intel 0000:00:1b.0: no codecs found!
[  132.043766] fbcon: astdrmfb (fb0) is primary device
[  132.099848] Console: switching to colour frame buffer device 210x65
[  132.170310] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x000a3f, prod_id: 0x0c63, dev_id: 0x20)
[  132.183599] ast 0000:0a:00.0: [drm] fb0: astdrmfb frame buffer device
[  132.386248] Adding 31307772k swap on /dev/sdc5.  Priority:-2 extents:1 across:31307772k SS
[  132.455173] EXT4-fs (sdf1): mounted filesystem fcf5433d-28bd-4d22-b3ba-dd7262ae33a9 r/w with ordered data mode. Quota mode: none.
[  132.458204] ipmi_si IPI0001:00: IPMI kcs interface initialized
[  132.464417] ipmi_ssif: IPMI SSIF Interface driver
[  132.572022] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[  132.572051] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[  132.572071] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[  132.572080] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[  132.572086] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[  132.572092] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[  132.572094] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[  132.572099] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[  132.572105] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[  132.572107] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[  132.572113] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[  132.572118] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[  132.572121] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[  132.572126] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[  132.572132] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[  132.572134] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[  132.572140] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[  132.572145] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[  132.572148] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[  132.572153] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[  132.572159] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[  132.572161] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[  132.572167] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[  132.572172] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[  132.572175] EDAC sbridge: Seeking for: PCI ID 8086:0e68
[  132.572180] EDAC sbridge: Seeking for: PCI ID 8086:0e68
[  132.572186] EDAC sbridge: Seeking for: PCI ID 8086:0e68
[  132.572188] EDAC sbridge: Seeking for: PCI ID 8086:0e79
[  132.572194] EDAC sbridge: Seeking for: PCI ID 8086:0e79
[  132.572200] EDAC sbridge: Seeking for: PCI ID 8086:0e79
[  132.572202] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[  132.572208] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[  132.572213] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[  132.572215] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[  132.572221] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[  132.572227] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[  132.572229] EDAC sbridge: Seeking for: PCI ID 8086:0e6c
[  132.572235] EDAC sbridge: Seeking for: PCI ID 8086:0e6c
[  132.572241] EDAC sbridge: Seeking for: PCI ID 8086:0e6c
[  132.572242] EDAC sbridge: Seeking for: PCI ID 8086:0e6d
[  132.572248] EDAC sbridge: Seeking for: PCI ID 8086:0e6d
[  132.572254] EDAC sbridge: Seeking for: PCI ID 8086:0e6d
[  132.572256] EDAC sbridge: Seeking for: PCI ID 8086:0eb8
[  132.572265] EDAC sbridge: Seeking for: PCI ID 8086:0ebc
[  132.572273] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[  132.572278] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[  132.572284] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[  132.572285] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[  132.572291] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[  132.572297] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[  132.572298] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[  132.572305] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[  132.572310] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[  132.572405] EDAC MC0: Giving out device to module sb_edac controller Ivy Bridge SrcID#0_Ha#0: DEV 0000:7f:0e.0 (INTERRUPT)
[  132.572483] EDAC MC1: Giving out device to module sb_edac controller Ivy Bridge SrcID#1_Ha#0: DEV 0000:ff:0e.0 (INTERRUPT)
[  132.572563] EDAC MC2: Giving out device to module sb_edac controller Ivy Bridge SrcID#0_Ha#1: DEV 0000:7f:1c.0 (INTERRUPT)
[  132.572631] EDAC MC3: Giving out device to module sb_edac controller Ivy Bridge SrcID#1_Ha#1: DEV 0000:ff:1c.0 (INTERRUPT)
[  132.572632] EDAC sbridge:  Ver: 1.1.2 
[  132.602324] intel_rapl_common: Found RAPL domain package
[  132.602334] intel_rapl_common: Found RAPL domain core
[  132.602341] intel_rapl_common: Found RAPL domain dram
[  132.602350] intel_rapl_common: package-0:core:long_term locked by BIOS
[  132.602354] intel_rapl_common: package-0:dram:long_term locked by BIOS
[  132.604650] intel_rapl_common: Found RAPL domain package
[  132.604656] intel_rapl_common: Found RAPL domain core
[  132.604661] intel_rapl_common: Found RAPL domain dram
[  132.604677] intel_rapl_common: package-1:core:long_term locked by BIOS
[  132.604680] intel_rapl_common: package-1:dram:long_term locked by BIOS
[  132.842573] audit: type=1400 audit(1716669800.901:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/lxc-copy" pid=1516 comm="apparmor_parser"
[  132.842595] audit: type=1400 audit(1716669800.901:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/lxc-start" pid=1517 comm="apparmor_parser"
[  132.842630] audit: type=1400 audit(1716669800.901:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="pve-container-mounthotplug" pid=1514 comm="apparmor_parser"
[  132.844647] audit: type=1400 audit(1716669800.905:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="swtpm" pid=1519 comm="apparmor_parser"
[  132.845613] audit: type=1400 audit(1716669800.905:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=1511 comm="apparmor_parser"
[  132.845923] audit: type=1400 audit(1716669800.905:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=1513 comm="apparmor_parser"
[  132.845930] audit: type=1400 audit(1716669800.905:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=1513 comm="apparmor_parser"
[  132.847138] audit: type=1400 audit(1716669800.905:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=1518 comm="apparmor_parser"
[  132.847144] audit: type=1400 audit(1716669800.905:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=1518 comm="apparmor_parser"
[  132.847158] audit: type=1400 audit(1716669800.905:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=1518 comm="apparmor_parser"
[  133.044280] RPC: Registered named UNIX socket transport module.
[  133.044288] RPC: Registered udp transport module.
[  133.044289] RPC: Registered tcp transport module.
[  133.044290] RPC: Registered tcp-with-tls transport module.
[  133.044291] RPC: Registered tcp NFSv4.1 backchannel transport module.
[  133.073326] softdog: initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout=0)
[  133.073331] softdog:              soft_reboot_cmd=<not set> soft_active_on_boot=0
[  133.893538] vmbr0: port 1(enp7s0f0) entered blocking state
[  133.893545] vmbr0: port 1(enp7s0f0) entered disabled state
[  133.893561] igb 0000:07:00.0 enp7s0f0: entered allmulticast mode
[  133.893619] igb 0000:07:00.0 enp7s0f0: entered promiscuous mode
[  134.510641] Loading iSCSI transport class v2.0-870.
[  138.188886] igb 0000:07:00.0 enp7s0f0: igb: enp7s0f0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX
[  138.189132] vmbr0: port 1(enp7s0f0) entered blocking state
[  138.189138] vmbr0: port 1(enp7s0f0) entered forwarding state
[  146.996732] kvm_intel: L1TF CPU bug present and SMT on, data leak possible. See CVE-2018-3646 and https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/l1tf.html for details.
[  147.356421] netfs: FS-Cache loaded
[  147.825244] NFS: Registering the id_resolver key type
[  147.825257] Key type id_resolver registered
[  147.825258] Key type id_legacy registered

[-- Attachment #1.1.4: dmesg_v6.8.11_Good.txt --]
[-- Type: text/plain, Size: 120622 bytes --]

[    0.000000] Linux version 6.8.11-dirty (root@linus.localdomain) (gcc (Debian 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Sat May 25 21:40:10 CEST 2024
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-6.8.11-dirty root=UUID=3842ebdd-e37f-4e4e-afd4-d7eb79b41984 ro quiet rootdelay=50 intel_iommu=on iommu=pt vfio-pci.ids=10de:1201,10de:0e0c
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000096fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000097000-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007cb5ffff] usable
[    0.000000] BIOS-e820: [mem 0x000000007cb60000-0x000000007cb8cfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007cb8d000-0x000000007cca4fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000007cca5000-0x000000007d8defff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007d8df000-0x000000007eb06fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007eb07000-0x000000007effffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000080000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed3ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000407fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: ASUSTeK COMPUTER INC. Z9PE-D16 Series/Z9PE-D16 Series, BIOS 5601 06/11/2015
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2699.996 MHz processor
[    0.001119] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.001123] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.001131] last_pfn = 0x4080000 max_arch_pfn = 0x400000000
[    0.001142] total RAM covered: 262144M
[    0.001345] Found optimal setting for mtrr clean up
[    0.001346]  gran_size: 64K 	chunk_size: 64K 	num_reg: 8  	lose cover RAM: 0G
[    0.001353] MTRR map: 7 entries (5 fixed + 2 variable; max 25), built from 10 variable MTRRs
[    0.001356] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.002373] e820: update [mem 0x80000000-0xffffffff] usable ==> reserved
[    0.002379] last_pfn = 0x7cb60 max_arch_pfn = 0x400000000
[    0.012937] found SMP MP-table at [mem 0x000fdd40-0x000fdd4f]
[    0.012956] Using GB pages for direct mapping
[    0.013106] RAMDISK: [mem 0x05835000-0x1ec11fff]
[    0.013111] ACPI: Early table checksum verification disabled
[    0.013116] ACPI: RSDP 0x00000000000F0490 000024 (v02 ALASKA)
[    0.013121] ACPI: XSDT 0x000000007CBC5090 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.013129] ACPI: FACP 0x000000007CBD27D8 00010C (v05 ALASKA A M I    01072009 AMI  00010013)
[    0.013137] ACPI: DSDT 0x000000007CBC51C8 00D609 (v02 ALASKA A M I    00000000 INTL 20051117)
[    0.013142] ACPI: FACS 0x000000007D8D6F80 000040
[    0.013147] ACPI: APIC 0x000000007CBD28E8 000304 (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.013151] ACPI: FPDT 0x000000007CBD2BF0 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.013156] ACPI: MCFG 0x000000007CBD2C38 00003C (v01 ALASKA OEMMCFG. 01072009 MSFT 00000097)
[    0.013160] ACPI: SRAT 0x000000007CBD2C78 0005B0 (v01 A M I  AMI SRAT 00000001 AMI. 00000000)
[    0.013165] ACPI: SLIT 0x000000007CBD3228 000030 (v01 A M I  AMI SLIT 00000000 AMI. 00000000)
[    0.013169] ACPI: HPET 0x000000007CBD3258 000038 (v01 ALASKA A M I    01072009 AMI. 00000005)
[    0.013174] ACPI: DMAR 0x000000007CCA44D0 000168 (v01 A M I  OEMDMAR  00000001 INTL 00000001)
[    0.013178] ACPI: PRAD 0x000000007CBD32E8 0000BE (v02 PRADID PRADTID  00000001 MSFT 03000001)
[    0.013183] ACPI: SPMI 0x000000007CBD33A8 000040 (v05 A M I  OEMSPMI  00000000 AMI. 00000000)
[    0.013187] ACPI: SSDT 0x000000007CBD33E8 0D0CB0 (v02 INTEL  CpuPm    00004000 INTL 20051117)
[    0.013191] ACPI: EINJ 0x000000007CCA4098 000130 (v01 AMI    AMI EINJ 00000000      00000000)
[    0.013196] ACPI: ERST 0x000000007CCA41C8 000230 (v01 AMIER  AMI ERST 00000000      00000000)
[    0.013200] ACPI: HEST 0x000000007CCA43F8 0000A8 (v01 AMI    AMI HEST 00000000      00000000)
[    0.013205] ACPI: BERT 0x000000007CCA44A0 000030 (v01 AMI    AMI BERT 00000000      00000000)
[    0.013208] ACPI: Reserving FACP table memory at [mem 0x7cbd27d8-0x7cbd28e3]
[    0.013210] ACPI: Reserving DSDT table memory at [mem 0x7cbc51c8-0x7cbd27d0]
[    0.013211] ACPI: Reserving FACS table memory at [mem 0x7d8d6f80-0x7d8d6fbf]
[    0.013212] ACPI: Reserving APIC table memory at [mem 0x7cbd28e8-0x7cbd2beb]
[    0.013214] ACPI: Reserving FPDT table memory at [mem 0x7cbd2bf0-0x7cbd2c33]
[    0.013215] ACPI: Reserving MCFG table memory at [mem 0x7cbd2c38-0x7cbd2c73]
[    0.013216] ACPI: Reserving SRAT table memory at [mem 0x7cbd2c78-0x7cbd3227]
[    0.013217] ACPI: Reserving SLIT table memory at [mem 0x7cbd3228-0x7cbd3257]
[    0.013218] ACPI: Reserving HPET table memory at [mem 0x7cbd3258-0x7cbd328f]
[    0.013219] ACPI: Reserving DMAR table memory at [mem 0x7cca44d0-0x7cca4637]
[    0.013221] ACPI: Reserving PRAD table memory at [mem 0x7cbd32e8-0x7cbd33a5]
[    0.013222] ACPI: Reserving SPMI table memory at [mem 0x7cbd33a8-0x7cbd33e7]
[    0.013223] ACPI: Reserving SSDT table memory at [mem 0x7cbd33e8-0x7cca4097]
[    0.013224] ACPI: Reserving EINJ table memory at [mem 0x7cca4098-0x7cca41c7]
[    0.013225] ACPI: Reserving ERST table memory at [mem 0x7cca41c8-0x7cca43f7]
[    0.013226] ACPI: Reserving HEST table memory at [mem 0x7cca43f8-0x7cca449f]
[    0.013227] ACPI: Reserving BERT table memory at [mem 0x7cca44a0-0x7cca44cf]
[    0.013265] SRAT: PXM 0 -> APIC 0x00 -> Node 0
[    0.013268] SRAT: PXM 0 -> APIC 0x01 -> Node 0
[    0.013269] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[    0.013270] SRAT: PXM 0 -> APIC 0x03 -> Node 0
[    0.013271] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[    0.013271] SRAT: PXM 0 -> APIC 0x05 -> Node 0
[    0.013272] SRAT: PXM 0 -> APIC 0x06 -> Node 0
[    0.013273] SRAT: PXM 0 -> APIC 0x07 -> Node 0
[    0.013274] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[    0.013275] SRAT: PXM 0 -> APIC 0x09 -> Node 0
[    0.013276] SRAT: PXM 0 -> APIC 0x0a -> Node 0
[    0.013277] SRAT: PXM 0 -> APIC 0x0b -> Node 0
[    0.013278] SRAT: PXM 0 -> APIC 0x10 -> Node 0
[    0.013279] SRAT: PXM 0 -> APIC 0x11 -> Node 0
[    0.013281] SRAT: PXM 0 -> APIC 0x12 -> Node 0
[    0.013282] SRAT: PXM 0 -> APIC 0x13 -> Node 0
[    0.013282] SRAT: PXM 0 -> APIC 0x14 -> Node 0
[    0.013283] SRAT: PXM 0 -> APIC 0x15 -> Node 0
[    0.013284] SRAT: PXM 0 -> APIC 0x16 -> Node 0
[    0.013285] SRAT: PXM 0 -> APIC 0x17 -> Node 0
[    0.013286] SRAT: PXM 0 -> APIC 0x18 -> Node 0
[    0.013287] SRAT: PXM 0 -> APIC 0x19 -> Node 0
[    0.013288] SRAT: PXM 0 -> APIC 0x1a -> Node 0
[    0.013289] SRAT: PXM 0 -> APIC 0x1b -> Node 0
[    0.013290] SRAT: PXM 1 -> APIC 0x20 -> Node 1
[    0.013291] SRAT: PXM 1 -> APIC 0x21 -> Node 1
[    0.013292] SRAT: PXM 1 -> APIC 0x22 -> Node 1
[    0.013293] SRAT: PXM 1 -> APIC 0x23 -> Node 1
[    0.013294] SRAT: PXM 1 -> APIC 0x24 -> Node 1
[    0.013295] SRAT: PXM 1 -> APIC 0x25 -> Node 1
[    0.013296] SRAT: PXM 1 -> APIC 0x26 -> Node 1
[    0.013297] SRAT: PXM 1 -> APIC 0x27 -> Node 1
[    0.013298] SRAT: PXM 1 -> APIC 0x28 -> Node 1
[    0.013299] SRAT: PXM 1 -> APIC 0x29 -> Node 1
[    0.013300] SRAT: PXM 1 -> APIC 0x2a -> Node 1
[    0.013301] SRAT: PXM 1 -> APIC 0x2b -> Node 1
[    0.013302] SRAT: PXM 1 -> APIC 0x30 -> Node 1
[    0.013303] SRAT: PXM 1 -> APIC 0x31 -> Node 1
[    0.013304] SRAT: PXM 1 -> APIC 0x32 -> Node 1
[    0.013305] SRAT: PXM 1 -> APIC 0x33 -> Node 1
[    0.013306] SRAT: PXM 1 -> APIC 0x34 -> Node 1
[    0.013307] SRAT: PXM 1 -> APIC 0x35 -> Node 1
[    0.013308] SRAT: PXM 1 -> APIC 0x36 -> Node 1
[    0.013309] SRAT: PXM 1 -> APIC 0x37 -> Node 1
[    0.013310] SRAT: PXM 1 -> APIC 0x38 -> Node 1
[    0.013311] SRAT: PXM 1 -> APIC 0x39 -> Node 1
[    0.013312] SRAT: PXM 1 -> APIC 0x3a -> Node 1
[    0.013313] SRAT: PXM 1 -> APIC 0x3b -> Node 1
[    0.013316] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x7fffffff]
[    0.013318] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[    0.013320] ACPI: SRAT: Node 1 PXM 1 [mem 0x2080000000-0x407fffffff]
[    0.013327] NUMA: Initialized distance table, cnt=2
[    0.013332] NUMA: Node 0 [mem 0x00000000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00000000-0x207fffffff]
[    0.013343] NODE_DATA(0) allocated [mem 0x207ffd5000-0x207fffffff]
[    0.013370] NODE_DATA(1) allocated [mem 0x407ffd4000-0x407fffefff]
[    0.013889] Zone ranges:
[    0.013891]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.013893]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.013895]   Normal   [mem 0x0000000100000000-0x000000407fffffff]
[    0.013897]   Device   empty
[    0.013898] Movable zone start for each node
[    0.013902] Early memory node ranges
[    0.013902]   node   0: [mem 0x0000000000001000-0x0000000000096fff]
[    0.013905]   node   0: [mem 0x0000000000100000-0x000000007cb5ffff]
[    0.013906]   node   0: [mem 0x0000000100000000-0x000000207fffffff]
[    0.013920]   node   1: [mem 0x0000002080000000-0x000000407fffffff]
[    0.013936] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fffffff]
[    0.013940] Initmem setup node 1 [mem 0x0000002080000000-0x000000407fffffff]
[    0.013944] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.013983] On node 0, zone DMA: 105 pages in unavailable ranges
[    0.311409] On node 0, zone Normal: 13472 pages in unavailable ranges
[    0.727778] ACPI: PM-Timer IO Port: 0x408
[    0.727817] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.727820] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.727822] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.727823] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.727825] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.727826] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.727828] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.727829] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.727831] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.727832] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.727833] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.727834] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    0.727836] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
[    0.727837] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
[    0.727838] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
[    0.727839] ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
[    0.727840] ACPI: LAPIC_NMI (acpi_id[0x20] high edge lint[0x1])
[    0.727842] ACPI: LAPIC_NMI (acpi_id[0x22] high edge lint[0x1])
[    0.727843] ACPI: LAPIC_NMI (acpi_id[0x24] high edge lint[0x1])
[    0.727844] ACPI: LAPIC_NMI (acpi_id[0x26] high edge lint[0x1])
[    0.727846] ACPI: LAPIC_NMI (acpi_id[0x28] high edge lint[0x1])
[    0.727847] ACPI: LAPIC_NMI (acpi_id[0x2a] high edge lint[0x1])
[    0.727849] ACPI: LAPIC_NMI (acpi_id[0x2c] high edge lint[0x1])
[    0.727850] ACPI: LAPIC_NMI (acpi_id[0x2e] high edge lint[0x1])
[    0.727851] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.727852] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.727853] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.727854] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.727855] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.727856] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.727857] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.727858] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.727859] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.727860] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.727861] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    0.727862] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    0.727863] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
[    0.727865] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
[    0.727866] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
[    0.727867] ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
[    0.727868] ACPI: LAPIC_NMI (acpi_id[0x21] high edge lint[0x1])
[    0.727869] ACPI: LAPIC_NMI (acpi_id[0x23] high edge lint[0x1])
[    0.727870] ACPI: LAPIC_NMI (acpi_id[0x25] high edge lint[0x1])
[    0.727871] ACPI: LAPIC_NMI (acpi_id[0x27] high edge lint[0x1])
[    0.727872] ACPI: LAPIC_NMI (acpi_id[0x29] high edge lint[0x1])
[    0.727873] ACPI: LAPIC_NMI (acpi_id[0x2b] high edge lint[0x1])
[    0.727874] ACPI: LAPIC_NMI (acpi_id[0x2d] high edge lint[0x1])
[    0.727875] ACPI: LAPIC_NMI (acpi_id[0x2f] high edge lint[0x1])
[    0.727890] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.727896] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
[    0.727902] IOAPIC[2]: apic_id 3, version 32, address 0xfec40000, GSI 48-71
[    0.727906] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.727910] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.727917] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.727920] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.727931] TSC deadline timer available
[    0.727932] smpboot: Allowing 48 CPUs, 0 hotplug CPUs
[    0.727954] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.727957] PM: hibernation: Registered nosave memory: [mem 0x00097000-0x0009ffff]
[    0.727958] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.727959] PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.727961] PM: hibernation: Registered nosave memory: [mem 0x7cb60000-0x7cb8cfff]
[    0.727963] PM: hibernation: Registered nosave memory: [mem 0x7cb8d000-0x7cca4fff]
[    0.727964] PM: hibernation: Registered nosave memory: [mem 0x7cca5000-0x7d8defff]
[    0.727965] PM: hibernation: Registered nosave memory: [mem 0x7d8df000-0x7eb06fff]
[    0.727967] PM: hibernation: Registered nosave memory: [mem 0x7eb07000-0x7effffff]
[    0.727968] PM: hibernation: Registered nosave memory: [mem 0x7f000000-0x7fffffff]
[    0.727969] PM: hibernation: Registered nosave memory: [mem 0x80000000-0x8fffffff]
[    0.727971] PM: hibernation: Registered nosave memory: [mem 0x90000000-0xfed1bfff]
[    0.727972] PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed3ffff]
[    0.727973] PM: hibernation: Registered nosave memory: [mem 0xfed40000-0xfeffffff]
[    0.727974] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.727977] [mem 0x90000000-0xfed1bfff] available for PCI devices
[    0.727979] Booting paravirtualized kernel on bare hardware
[    0.727985] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.727998] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:48 nr_cpu_ids:48 nr_node_ids:2
[    0.731319] percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u262144
[    0.731329] pcpu-alloc: s225280 r8192 d28672 u262144 alloc=1*2097152
[    0.731333] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 24 25 26 27 
[    0.731345] pcpu-alloc: [0] 28 29 30 31 32 33 34 35 [1] 12 13 14 15 16 17 18 19 
[    0.731357] pcpu-alloc: [1] 20 21 22 23 36 37 38 39 [1] 40 41 42 43 44 45 46 47 
[    0.731397] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.8.11-dirty root=UUID=3842ebdd-e37f-4e4e-afd4-d7eb79b41984 ro quiet rootdelay=50 intel_iommu=on iommu=pt vfio-pci.ids=10de:1201,10de:0e0c
[    0.731517] DMAR: IOMMU enabled
[    0.731561] Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-6.8.11-dirty", will be passed to user space.
[    0.731576] random: crng init done
[    0.731578] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    0.731580] printk: log_buf_len total cpu_extra contributions: 192512 bytes
[    0.731581] printk: log_buf_len min size: 262144 bytes
[    0.732229] printk: log_buf_len: 524288 bytes
[    0.732230] printk: early log buf free: 246608(94%)
[    0.733129] Fallback order for Node 0: 0 1 
[    0.733134] Fallback order for Node 1: 1 0 
[    0.733142] Built 2 zonelists, mobility grouping on.  Total pages: 66046770
[    0.733144] Policy zone: Normal
[    0.733155] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[    0.733171] software IO TLB: area num 64.
[    1.671196] Memory: 263641356K/268381144K available (20480K kernel code, 3616K rwdata, 13000K rodata, 4712K init, 5832K bss, 4739528K reserved, 0K cma-reserved)
[    1.671846] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=48, Nodes=2
[    1.671884] Kernel/User page tables isolation: enabled
[    1.671977] ftrace: allocating 53608 entries in 210 pages
[    1.688022] ftrace: allocated 210 pages with 4 groups
[    1.689489] Dynamic Preempt: voluntary
[    1.689795] rcu: Preemptible hierarchical RCU implementation.
[    1.689797] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=48.
[    1.689799] 	Trampoline variant of Tasks RCU enabled.
[    1.689800] 	Rude variant of Tasks RCU enabled.
[    1.689801] 	Tracing variant of Tasks RCU enabled.
[    1.689802] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    1.689804] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=48
[    1.693744] NR_IRQS: 524544, nr_irqs: 1624, preallocated irqs: 16
[    1.694026] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    1.700729] Console: colour VGA+ 80x25
[    1.700734] printk: legacy console [tty0] enabled
[    1.700936] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    1.700941] ACPI: Core revision 20230628
[    1.701500] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    1.701517] APIC: Switch to symmetric I/O mode setup
[    1.701521] DMAR: Host address width 46
[    1.701522] DMAR: DRHD base: 0x000000fbffe000 flags: 0x0
[    1.701531] DMAR: dmar0: reg_base_addr fbffe000 ver 1:0 cap d2078c106f0466 ecap f020df
[    1.701534] DMAR: DRHD base: 0x000000cfffc000 flags: 0x1
[    1.701544] DMAR: dmar1: reg_base_addr cfffc000 ver 1:0 cap d2078c106f0466 ecap f020df
[    1.701546] DMAR: RMRR base: 0x0000007e953000 end: 0x0000007e969fff
[    1.701549] DMAR: ATSR flags: 0x0
[    1.701550] DMAR: RHSA base: 0x000000fbffe000 proximity domain: 0x1
[    1.701552] DMAR: RHSA base: 0x000000cfffc000 proximity domain: 0x0
[    1.701555] DMAR-IR: IOAPIC id 3 under DRHD base  0xfbffe000 IOMMU 0
[    1.701557] DMAR-IR: IOAPIC id 0 under DRHD base  0xcfffc000 IOMMU 1
[    1.701559] DMAR-IR: IOAPIC id 2 under DRHD base  0xcfffc000 IOMMU 1
[    1.701561] DMAR-IR: HPET id 0 under DRHD base 0xcfffc000
[    1.701562] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    1.702379] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    1.702383] x2apic enabled
[    1.702466] APIC: Switched APIC routing to: cluster x2apic
[    1.703154] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    1.721524] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x26eb3a8a196, max_idle_ns: 440795235157 ns
[    1.721532] Calibrating delay loop (skipped), value calculated using timer frequency.. 5399.99 BogoMIPS (lpj=10799984)
[    1.721570] CPU0: Thermal monitoring enabled (TM1)
[    1.721667] process: using mwait in idle threads
[    1.721671] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    1.721674] Last level dTLB entries: 4KB 512, 2MB 0, 4MB 0, 1GB 4
[    1.721679] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.721683] Spectre V2 : Mitigation: Retpolines
[    1.721684] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    1.721686] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[    1.721688] Speculative Store Bypass: Vulnerable
[    1.721691] MDS: Vulnerable: Clear CPU buffers attempted, no microcode
[    1.721692] MMIO Stale Data: Unknown: No mitigations
[    1.721700] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    1.721702] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    1.721704] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    1.721706] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    1.721707] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    1.750836] Freeing SMP alternatives memory: 44K
[    1.750840] pid_max: default: 49152 minimum: 384
[    1.750955] LSM: initializing lsm=lockdown,capability,yama,apparmor,integrity
[    1.750973] Yama: becoming mindful.
[    1.751012] AppArmor: AppArmor initialized
[    1.795191] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc hugepage)
[    1.817328] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
[    1.818144] Mount-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc)
[    1.818863] Mountpoint-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc)
[    1.819899] smpboot: CPU0: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz (family: 0x6, model: 0x3e, stepping: 0x4)
[    1.820239] RCU Tasks: Setting shift to 6 and lim to 1 rcu_task_cb_adjust=1.
[    1.820273] RCU Tasks Rude: Setting shift to 6 and lim to 1 rcu_task_cb_adjust=1.
[    1.820312] RCU Tasks Trace: Setting shift to 6 and lim to 1 rcu_task_cb_adjust=1.
[    1.820343] Performance Events: PEBS fmt1+, IvyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
[    1.820395] ... version:                3
[    1.820397] ... bit width:              48
[    1.820398] ... generic registers:      4
[    1.820399] ... value mask:             0000ffffffffffff
[    1.820401] ... max period:             00007fffffffffff
[    1.820402] ... fixed-purpose events:   3
[    1.820403] ... event mask:             000000070000000f
[    1.820608] signal: max sigframe size: 1776
[    1.820639] Estimated ratio of average max frequency by base frequency (times 1024): 1213
[    1.820704] rcu: Hierarchical SRCU implementation.
[    1.820707] rcu: 	Max phase no-delay instances is 1000.
[    1.822779] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    1.823588] smp: Bringing up secondary CPUs ...
[    1.823797] smpboot: x86: Booting SMP configuration:
[    1.823799] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11
[    1.827514] .... node  #1, CPUs:   #12 #13 #14 #15 #16 #17 #18 #19 #20 #21 #22 #23
[    0.011462] smpboot: CPU 12 Converting physical 0 to logical die 1

[    1.875532] .... node  #0, CPUs:   #24 #25 #26 #27 #28 #29 #30 #31 #32 #33 #34 #35
[    1.882453] .... node  #1, CPUs:   #36 #37 #38 #39 #40 #41 #42 #43 #44 #45 #46 #47
[    1.887532] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    1.933640] smp: Brought up 2 nodes, 48 CPUs
[    1.933640] smpboot: Max logical packages: 2
[    1.933640] smpboot: Total of 48 processors activated (259199.61 BogoMIPS)
[    1.953544] devtmpfs: initialized
[    1.953630] x86/mm: Memory block size: 2048MB
[    1.956592] ACPI: PM: Registering ACPI NVS region [mem 0x7cca5000-0x7d8defff] (12820480 bytes)
[    1.956592] ACPI: PM: Registering ACPI NVS region [mem 0x7eb07000-0x7effffff] (5214208 bytes)
[    1.956592] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    1.956592] futex hash table entries: 16384 (order: 8, 1048576 bytes, vmalloc)
[    1.957714] pinctrl core: initialized pinctrl subsystem
[    1.957832] PM: RTC time: 19:55:14, date: 2024-05-25
[    1.960173] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    1.962089] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    1.963096] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    1.964101] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    1.964115] audit: initializing netlink subsys (disabled)
[    1.964158] audit: type=2000 audit(1716666913.260:1): state=initialized audit_enabled=0 res=1
[    1.964158] thermal_sys: Registered thermal governor 'fair_share'
[    1.964158] thermal_sys: Registered thermal governor 'bang_bang'
[    1.964158] thermal_sys: Registered thermal governor 'step_wise'
[    1.964158] thermal_sys: Registered thermal governor 'user_space'
[    1.964158] thermal_sys: Registered thermal governor 'power_allocator'
[    1.964158] EISA bus registered
[    1.964158] cpuidle: using governor ladder
[    1.964158] cpuidle: using governor menu
[    1.964158] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    1.964158] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff]
[    1.964158] PCI: ECAM [mem 0x80000000-0x8fffffff] reserved as E820 entry
[    1.964158] PCI: Using configuration type 1 for base access
[    1.964158] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    1.964158] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    1.965563] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    1.965565] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    1.965567] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    1.965569] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    1.965755] ACPI: Added _OSI(Module Device)
[    1.965758] ACPI: Added _OSI(Processor Device)
[    1.965759] ACPI: Added _OSI(3.0 _SCP Extensions)
[    1.965761] ACPI: Added _OSI(Processor Aggregator Device)
[    2.118973] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    2.146130] ACPI: _OSC evaluated successfully for all CPUs
[    2.146413] ACPI: Interpreter enabled
[    2.146434] ACPI: PM: (supports S0 S1 S5)
[    2.146437] ACPI: Using IOAPIC for interrupt routing
[    2.149889] HEST: Table parsing has been initialized.
[    2.150020] GHES: APEI firmware first mode is enabled by WHEA _OSC.
[    2.150028] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.150031] PCI: Using E820 reservations for host bridge windows
[    2.150608] ACPI: Enabled 8 GPEs in block 00 to 3F
[    2.152033] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    2.175102] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
[    2.175114] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.175224] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[    2.175408] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    2.175906] PCI host bridge to bus 0000:00
[    2.175911] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    2.175914] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    2.175916] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    2.175918] pci_bus 0000:00: root bus resource [io  0x0d00-0x9fff window]
[    2.175921] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
[    2.175923] pci_bus 0000:00: root bus resource [mem 0x80000000-0xcfffffff window]
[    2.175927] pci_bus 0000:00: root bus resource [bus 00-7e]
[    2.175964] pci 0000:00:00.0: [8086:0e00] type 00 class 0x060000 PCIe Root Port
[    2.176046] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    2.176169] pci 0000:00:01.0: [8086:0e02] type 01 class 0x060400 PCIe Root Port
[    2.176194] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.176270] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    2.176443] pci 0000:00:01.1: [8086:0e03] type 01 class 0x060400 PCIe Root Port
[    2.176469] pci 0000:00:01.1: PCI bridge to [bus 02]
[    2.176542] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    2.176723] pci 0000:00:02.0: [8086:0e04] type 01 class 0x060400 PCIe Root Port
[    2.176749] pci 0000:00:02.0: PCI bridge to [bus 03]
[    2.176822] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    2.176983] pci 0000:00:02.2: [8086:0e06] type 01 class 0x060400 PCIe Root Port
[    2.177010] pci 0000:00:02.2: PCI bridge to [bus 04]
[    2.177018] pci 0000:00:02.2:   bridge window [mem 0xc8a00000-0xc8cfffff]
[    2.177088] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    2.177247] pci 0000:00:03.0: [8086:0e08] type 01 class 0x060400 PCIe Root Port
[    2.177272] pci 0000:00:03.0: PCI bridge to [bus 05]
[    2.177278] pci 0000:00:03.0:   bridge window [io  0x8000-0x8fff]
[    2.177282] pci 0000:00:03.0:   bridge window [mem 0xb8000000-0xc60fffff]
[    2.177298] pci 0000:00:03.0: enabling Extended Tags
[    2.177357] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    2.177505] pci 0000:00:04.0: [8086:0e20] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.177523] pci 0000:00:04.0: BAR 0 [mem 0xc6120000-0xc6123fff 64bit]
[    2.177651] pci 0000:00:04.1: [8086:0e21] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.177668] pci 0000:00:04.1: BAR 0 [mem 0xc611c000-0xc611ffff 64bit]
[    2.177789] pci 0000:00:04.2: [8086:0e22] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.177805] pci 0000:00:04.2: BAR 0 [mem 0xc6118000-0xc611bfff 64bit]
[    2.177926] pci 0000:00:04.3: [8086:0e23] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.177943] pci 0000:00:04.3: BAR 0 [mem 0xc6114000-0xc6117fff 64bit]
[    2.178062] pci 0000:00:04.4: [8086:0e24] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.178079] pci 0000:00:04.4: BAR 0 [mem 0xc6110000-0xc6113fff 64bit]
[    2.178208] pci 0000:00:04.5: [8086:0e25] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.178224] pci 0000:00:04.5: BAR 0 [mem 0xc610c000-0xc610ffff 64bit]
[    2.178343] pci 0000:00:04.6: [8086:0e26] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.178360] pci 0000:00:04.6: BAR 0 [mem 0xc6108000-0xc610bfff 64bit]
[    2.178481] pci 0000:00:04.7: [8086:0e27] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.178497] pci 0000:00:04.7: BAR 0 [mem 0xc6104000-0xc6107fff 64bit]
[    2.178618] pci 0000:00:05.0: [8086:0e28] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.178729] pci 0000:00:05.2: [8086:0e2a] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.178841] pci 0000:00:05.4: [8086:0e2c] type 00 class 0x080020 PCIe Root Complex Integrated Endpoint
[    2.178854] pci 0000:00:05.4: BAR 0 [mem 0xc612b000-0xc612bfff]
[    2.178989] pci 0000:00:11.0: [8086:1d3e] type 01 class 0x060400 PCIe Root Port
[    2.179026] pci 0000:00:11.0: PCI bridge to [bus 06]
[    2.179032] pci 0000:00:11.0:   bridge window [io  0x7000-0x7fff]
[    2.179037] pci 0000:00:11.0:   bridge window [mem 0xc8400000-0xc88fffff]
[    2.179051] pci 0000:00:11.0:   bridge window [mem 0xcfe00000-0xcfefffff 64bit pref]
[    2.179123] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold
[    2.179263] pci 0000:00:16.0: [8086:1d3a] type 00 class 0x078000 conventional PCI endpoint
[    2.179282] pci 0000:00:16.0: BAR 0 [mem 0xc612a000-0xc612a00f 64bit]
[    2.179344] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    2.179438] pci 0000:00:16.1: [8086:1d3b] type 00 class 0x078000 conventional PCI endpoint
[    2.179457] pci 0000:00:16.1: BAR 0 [mem 0xc6129000-0xc612900f 64bit]
[    2.179519] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[    2.179616] pci 0000:00:1a.0: [8086:1d2d] type 00 class 0x0c0320 conventional PCI endpoint
[    2.179637] pci 0000:00:1a.0: BAR 0 [mem 0xc6127000-0xc61273ff]
[    2.179721] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    2.179818] pci 0000:00:1b.0: [8086:1d20] type 00 class 0x040300 PCIe Root Complex Integrated Endpoint
[    2.179838] pci 0000:00:1b.0: BAR 0 [mem 0xc6100000-0xc6103fff 64bit]
[    2.179916] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    2.180006] pci 0000:00:1c.0: [8086:1d10] type 01 class 0x060400 PCIe Root Port
[    2.180036] pci 0000:00:1c.0: PCI bridge to [bus 07-08]
[    2.180041] pci 0000:00:1c.0:   bridge window [io  0x6000-0x6fff]
[    2.180046] pci 0000:00:1c.0:   bridge window [mem 0xc8e00000-0xc8efffff]
[    2.180115] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    2.180144] pci 0000:00:1c.0: Enabling MPC IRBNCE
[    2.180147] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[    2.180270] pci 0000:00:1c.7: [8086:1d1e] type 01 class 0x060400 PCIe Root Port
[    2.180303] pci 0000:00:1c.7: PCI bridge to [bus 09-0a]
[    2.180310] pci 0000:00:1c.7:   bridge window [io  0x5000-0x5fff]
[    2.180316] pci 0000:00:1c.7:   bridge window [mem 0xc7000000-0xc80fffff]
[    2.180384] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
[    2.180408] pci 0000:00:1c.7: Enabling MPC IRBNCE
[    2.180411] pci 0000:00:1c.7: Intel PCH root port ACS workaround enabled
[    2.180515] pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320 conventional PCI endpoint
[    2.180532] pci 0000:00:1d.0: BAR 0 [mem 0xc6126000-0xc61263ff]
[    2.180617] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    2.180710] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401 conventional PCI bridge
[    2.180736] pci 0000:00:1e.0: PCI bridge to [bus 0b] (subtractive decode)
[    2.180853] pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100 conventional PCI endpoint
[    2.181059] pci 0000:00:1f.2: [8086:1d02] type 00 class 0x010601 conventional PCI endpoint
[    2.181075] pci 0000:00:1f.2: BAR 0 [io  0x9070-0x9077]
[    2.181085] pci 0000:00:1f.2: BAR 1 [io  0x9060-0x9063]
[    2.181092] pci 0000:00:1f.2: BAR 2 [io  0x9050-0x9057]
[    2.181100] pci 0000:00:1f.2: BAR 3 [io  0x9040-0x9043]
[    2.181107] pci 0000:00:1f.2: BAR 4 [io  0x9020-0x903f]
[    2.181115] pci 0000:00:1f.2: BAR 5 [mem 0xc6125000-0xc61257ff]
[    2.181156] pci 0000:00:1f.2: PME# supported from D3hot
[    2.181242] pci 0000:00:1f.3: [8086:1d22] type 00 class 0x0c0500 conventional PCI endpoint
[    2.181260] pci 0000:00:1f.3: BAR 0 [mem 0xc6124000-0xc61240ff 64bit]
[    2.181282] pci 0000:00:1f.3: BAR 4 [io  0x9000-0x901f]
[    2.181400] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.181446] pci 0000:00:01.1: PCI bridge to [bus 02]
[    2.181487] pci 0000:00:02.0: PCI bridge to [bus 03]
[    2.181543] pci 0000:04:00.0: [9005:0285] type 00 class 0x010400 PCIe Endpoint
[    2.181560] pci 0000:04:00.0: BAR 0 [mem 0xc8a00000-0xc8bfffff 64bit]
[    2.181588] pci 0000:04:00.0: ROM [mem 0xc8c00000-0xc8c7ffff pref]
[    2.181632] pci 0000:04:00.0: supports D1
[    2.181700] pci 0000:00:02.2: PCI bridge to [bus 04]
[    2.181754] pci 0000:05:00.0: [10de:1201] type 00 class 0x030000 PCIe Endpoint
[    2.181766] pci 0000:05:00.0: BAR 0 [mem 0xc4000000-0xc5ffffff]
[    2.181774] pci 0000:05:00.0: BAR 1 [mem 0xb8000000-0xbfffffff 64bit pref]
[    2.181782] pci 0000:05:00.0: BAR 3 [mem 0xc0000000-0xc3ffffff 64bit pref]
[    2.181788] pci 0000:05:00.0: BAR 5 [io  0x8000-0x807f]
[    2.181793] pci 0000:05:00.0: ROM [mem 0xc6000000-0xc607ffff pref]
[    2.181801] pci 0000:05:00.0: enabling Extended Tags
[    2.181918] pci 0000:05:00.1: [10de:0e0c] type 00 class 0x040300 PCIe Endpoint
[    2.181929] pci 0000:05:00.1: BAR 0 [mem 0xc6080000-0xc6083fff]
[    2.181964] pci 0000:05:00.1: enabling Extended Tags
[    2.182060] pci 0000:00:03.0: PCI bridge to [bus 05]
[    2.182132] pci 0000:06:00.0: [8086:1d6b] type 00 class 0x010700 PCIe Endpoint
[    2.182156] pci 0000:06:00.0: BAR 0 [mem 0xc8800000-0xc8803fff 64bit pref]
[    2.182173] pci 0000:06:00.0: BAR 2 [mem 0xc8400000-0xc87fffff 64bit pref]
[    2.182183] pci 0000:06:00.0: BAR 4 [io  0x7000-0x70ff]
[    2.182210] pci 0000:06:00.0: enabling Extended Tags
[    2.182311] pci 0000:06:00.0: VF BAR 0 [mem 0xcfe00000-0xcfe03fff 64bit pref]
[    2.182315] pci 0000:06:00.0: VF BAR 0 [mem 0xcfe00000-0xcfe7bfff 64bit pref]: contains BAR 0 for 31 VFs
[    2.182557] pci 0000:00:11.0: PCI bridge to [bus 06]
[    2.182662] pci 0000:07:00.0: [8086:1521] type 00 class 0x020000 PCIe Endpoint
[    2.182686] pci 0000:07:00.0: BAR 0 [mem 0xc8e20000-0xc8e3ffff]
[    2.182711] pci 0000:07:00.0: BAR 2 [io  0x6020-0x603f]
[    2.182728] pci 0000:07:00.0: BAR 3 [mem 0xc8ec4000-0xc8ec7fff]
[    2.182888] pci 0000:07:00.0: PME# supported from D0 D3hot D3cold
[    2.182933] pci 0000:07:00.0: VF BAR 0 [mem 0xc8ea0000-0xc8ea3fff]
[    2.182938] pci 0000:07:00.0: VF BAR 0 [mem 0xc8ea0000-0xc8ebffff]: contains BAR 0 for 8 VFs
[    2.182972] pci 0000:07:00.0: VF BAR 3 [mem 0xc8e80000-0xc8e83fff]
[    2.182974] pci 0000:07:00.0: VF BAR 3 [mem 0xc8e80000-0xc8e9ffff]: contains BAR 3 for 8 VFs
[    2.183295] pci 0000:07:00.1: [8086:1521] type 00 class 0x020000 PCIe Endpoint
[    2.183321] pci 0000:07:00.1: BAR 0 [mem 0xc8e00000-0xc8e1ffff]
[    2.183346] pci 0000:07:00.1: BAR 2 [io  0x6000-0x601f]
[    2.183361] pci 0000:07:00.1: BAR 3 [mem 0xc8ec0000-0xc8ec3fff]
[    2.183515] pci 0000:07:00.1: PME# supported from D0 D3hot D3cold
[    2.183555] pci 0000:07:00.1: VF BAR 0 [mem 0xc8e60000-0xc8e63fff]
[    2.183557] pci 0000:07:00.1: VF BAR 0 [mem 0xc8e60000-0xc8e7ffff]: contains BAR 0 for 8 VFs
[    2.183593] pci 0000:07:00.1: VF BAR 3 [mem 0xc8e40000-0xc8e43fff]
[    2.183599] pci 0000:07:00.1: VF BAR 3 [mem 0xc8e40000-0xc8e5ffff]: contains BAR 3 for 8 VFs
[    2.183857] pci 0000:00:1c.0: PCI bridge to [bus 07-08]
[    2.183957] pci 0000:09:00.0: [1a03:1150] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
[    2.184014] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    2.184025] pci 0000:09:00.0:   bridge window [io  0x5000-0x5fff]
[    2.184033] pci 0000:09:00.0:   bridge window [mem 0xc7000000-0xc80fffff]
[    2.184158] pci 0000:09:00.0: supports D1 D2
[    2.184162] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.184281] pci 0000:09:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    2.184293] pci 0000:00:1c.7: PCI bridge to [bus 09-0a]
[    2.184360] pci_bus 0000:0a: extended config space not accessible
[    2.184397] pci 0000:0a:00.0: [1a03:2000] type 00 class 0x030000 conventional PCI endpoint
[    2.184430] pci 0000:0a:00.0: BAR 0 [mem 0xc7000000-0xc7ffffff]
[    2.184449] pci 0000:0a:00.0: BAR 1 [mem 0xc8000000-0xc801ffff]
[    2.184467] pci 0000:0a:00.0: BAR 2 [io  0x5000-0x507f]
[    2.184558] pci 0000:0a:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    2.184607] pci 0000:0a:00.0: supports D1 D2
[    2.184610] pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.184741] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    2.184791] pci_bus 0000:0b: extended config space not accessible
[    2.184843] pci 0000:00:1e.0: PCI bridge to [bus 0b] (subtractive decode)
[    2.184853] pci 0000:00:1e.0:   bridge window [io  0x0000-0x03af window] (subtractive decode)
[    2.184856] pci 0000:00:1e.0:   bridge window [io  0x03e0-0x0cf7 window] (subtractive decode)
[    2.184858] pci 0000:00:1e.0:   bridge window [io  0x03b0-0x03df window] (subtractive decode)
[    2.184862] pci 0000:00:1e.0:   bridge window [io  0x0d00-0x9fff window] (subtractive decode)
[    2.184864] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000dffff window] (subtractive decode)
[    2.184866] pci 0000:00:1e.0:   bridge window [mem 0x80000000-0xcfffffff window] (subtractive decode)
[    2.184917] pci_bus 0000:00: on NUMA node 0
[    2.185768] ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus 7f])
[    2.185775] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.185796] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[    2.185866] PCI host bridge to bus 0000:7f
[    2.185870] pci_bus 0000:7f: root bus resource [bus 7f]
[    2.185883] pci 0000:7f:08.0: [8086:0e80] type 00 class 0x088000 conventional PCI endpoint
[    2.185946] pci 0000:7f:09.0: [8086:0e90] type 00 class 0x088000 conventional PCI endpoint
[    2.186003] pci 0000:7f:0a.0: [8086:0ec0] type 00 class 0x088000 conventional PCI endpoint
[    2.186052] pci 0000:7f:0a.1: [8086:0ec1] type 00 class 0x088000 conventional PCI endpoint
[    2.186103] pci 0000:7f:0a.2: [8086:0ec2] type 00 class 0x088000 conventional PCI endpoint
[    2.186151] pci 0000:7f:0a.3: [8086:0ec3] type 00 class 0x088000 conventional PCI endpoint
[    2.186212] pci 0000:7f:0b.0: [8086:0e1e] type 00 class 0x088000 conventional PCI endpoint
[    2.186259] pci 0000:7f:0b.3: [8086:0e1f] type 00 class 0x088000 conventional PCI endpoint
[    2.186307] pci 0000:7f:0c.0: [8086:0ee0] type 00 class 0x088000 conventional PCI endpoint
[    2.186357] pci 0000:7f:0c.1: [8086:0ee2] type 00 class 0x088000 conventional PCI endpoint
[    2.186403] pci 0000:7f:0c.2: [8086:0ee4] type 00 class 0x088000 conventional PCI endpoint
[    2.186452] pci 0000:7f:0c.3: [8086:0ee6] type 00 class 0x088000 conventional PCI endpoint
[    2.186501] pci 0000:7f:0c.4: [8086:0ee8] type 00 class 0x088000 conventional PCI endpoint
[    2.186554] pci 0000:7f:0c.5: [8086:0eea] type 00 class 0x088000 conventional PCI endpoint
[    2.186613] pci 0000:7f:0d.0: [8086:0ee1] type 00 class 0x088000 conventional PCI endpoint
[    2.186663] pci 0000:7f:0d.1: [8086:0ee3] type 00 class 0x088000 conventional PCI endpoint
[    2.186712] pci 0000:7f:0d.2: [8086:0ee5] type 00 class 0x088000 conventional PCI endpoint
[    2.186760] pci 0000:7f:0d.3: [8086:0ee7] type 00 class 0x088000 conventional PCI endpoint
[    2.186807] pci 0000:7f:0d.4: [8086:0ee9] type 00 class 0x088000 conventional PCI endpoint
[    2.186856] pci 0000:7f:0d.5: [8086:0eeb] type 00 class 0x088000 conventional PCI endpoint
[    2.186904] pci 0000:7f:0e.0: [8086:0ea0] type 00 class 0x088000 conventional PCI endpoint
[    2.186955] pci 0000:7f:0e.1: [8086:0e30] type 00 class 0x110100 conventional PCI endpoint
[    2.187024] pci 0000:7f:0f.0: [8086:0ea8] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.187093] pci 0000:7f:0f.1: [8086:0e71] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.187162] pci 0000:7f:0f.2: [8086:0eaa] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.187230] pci 0000:7f:0f.3: [8086:0eab] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.187296] pci 0000:7f:0f.4: [8086:0eac] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.187365] pci 0000:7f:0f.5: [8086:0ead] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.187433] pci 0000:7f:10.0: [8086:0eb0] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.187501] pci 0000:7f:10.1: [8086:0eb1] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.187577] pci 0000:7f:10.2: [8086:0eb2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.187646] pci 0000:7f:10.3: [8086:0eb3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.187714] pci 0000:7f:10.4: [8086:0eb4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.187782] pci 0000:7f:10.5: [8086:0eb5] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.187849] pci 0000:7f:10.6: [8086:0eb6] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.187917] pci 0000:7f:10.7: [8086:0eb7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.187983] pci 0000:7f:13.0: [8086:0e1d] type 00 class 0x088000 conventional PCI endpoint
[    2.188032] pci 0000:7f:13.1: [8086:0e34] type 00 class 0x110100 conventional PCI endpoint
[    2.188090] pci 0000:7f:13.4: [8086:0e81] type 00 class 0x088000 conventional PCI endpoint
[    2.188141] pci 0000:7f:13.5: [8086:0e36] type 00 class 0x110100 conventional PCI endpoint
[    2.188192] pci 0000:7f:16.0: [8086:0ec8] type 00 class 0x088000 conventional PCI endpoint
[    2.188240] pci 0000:7f:16.1: [8086:0ec9] type 00 class 0x088000 conventional PCI endpoint
[    2.188290] pci 0000:7f:16.2: [8086:0eca] type 00 class 0x088000 conventional PCI endpoint
[    2.188345] pci 0000:7f:1c.0: [8086:0e60] type 00 class 0x088000 conventional PCI endpoint
[    2.188399] pci 0000:7f:1c.1: [8086:0e38] type 00 class 0x110100 conventional PCI endpoint
[    2.188458] pci 0000:7f:1d.0: [8086:0e68] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.188535] pci 0000:7f:1d.1: [8086:0e79] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.188605] pci 0000:7f:1d.2: [8086:0e6a] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.188674] pci 0000:7f:1d.3: [8086:0e6b] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.188746] pci 0000:7f:1d.4: [8086:0e6c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.188815] pci 0000:7f:1d.5: [8086:0e6d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.188884] pci 0000:7f:1e.0: [8086:0ef0] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.188954] pci 0000:7f:1e.1: [8086:0ef1] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.189022] pci 0000:7f:1e.2: [8086:0ef2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.189109] pci 0000:7f:1e.3: [8086:0ef3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.189179] pci 0000:7f:1e.4: [8086:0ef4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.189250] pci 0000:7f:1e.5: [8086:0ef5] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.189318] pci 0000:7f:1e.6: [8086:0ef6] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.189387] pci 0000:7f:1e.7: [8086:0ef7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.189452] pci_bus 0000:7f: on NUMA node 0
[    2.189659] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 80-fe])
[    2.189670] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.189776] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[    2.189957] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    2.190198] PCI host bridge to bus 0000:80
[    2.190201] pci_bus 0000:80: root bus resource [io  0xa000-0xffff window]
[    2.190204] pci_bus 0000:80: root bus resource [mem 0xd0000000-0xfbffffff window]
[    2.190206] pci_bus 0000:80: root bus resource [bus 80-fe]
[    2.190237] pci 0000:80:00.0: [8086:0e01] type 01 class 0x060400 PCIe Root Port
[    2.190265] pci 0000:80:00.0: PCI bridge to [bus 81]
[    2.190343] pci 0000:80:00.0: PME# supported from D0 D3hot D3cold
[    2.190514] pci 0000:80:01.0: [8086:0e02] type 01 class 0x060400 PCIe Root Port
[    2.190542] pci 0000:80:01.0: PCI bridge to [bus 82]
[    2.190625] pci 0000:80:01.0: PME# supported from D0 D3hot D3cold
[    2.190798] pci 0000:80:02.0: [8086:0e04] type 01 class 0x060400 PCIe Root Port
[    2.190827] pci 0000:80:02.0: PCI bridge to [bus 83]
[    2.190910] pci 0000:80:02.0: PME# supported from D0 D3hot D3cold
[    2.191102] pci 0000:80:03.0: [8086:0e08] type 01 class 0x060400 PCIe Root Port
[    2.191130] pci 0000:80:03.0: PCI bridge to [bus 84]
[    2.191153] pci 0000:80:03.0: enabling Extended Tags
[    2.191220] pci 0000:80:03.0: PME# supported from D0 D3hot D3cold
[    2.191383] pci 0000:80:04.0: [8086:0e20] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.191402] pci 0000:80:04.0: BAR 0 [mem 0xfbf1c000-0xfbf1ffff 64bit]
[    2.191536] pci 0000:80:04.1: [8086:0e21] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.191555] pci 0000:80:04.1: BAR 0 [mem 0xfbf18000-0xfbf1bfff 64bit]
[    2.191685] pci 0000:80:04.2: [8086:0e22] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.191703] pci 0000:80:04.2: BAR 0 [mem 0xfbf14000-0xfbf17fff 64bit]
[    2.191835] pci 0000:80:04.3: [8086:0e23] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.191853] pci 0000:80:04.3: BAR 0 [mem 0xfbf10000-0xfbf13fff 64bit]
[    2.191983] pci 0000:80:04.4: [8086:0e24] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.192001] pci 0000:80:04.4: BAR 0 [mem 0xfbf0c000-0xfbf0ffff 64bit]
[    2.192132] pci 0000:80:04.5: [8086:0e25] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.192150] pci 0000:80:04.5: BAR 0 [mem 0xfbf08000-0xfbf0bfff 64bit]
[    2.192279] pci 0000:80:04.6: [8086:0e26] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.192297] pci 0000:80:04.6: BAR 0 [mem 0xfbf04000-0xfbf07fff 64bit]
[    2.192439] pci 0000:80:04.7: [8086:0e27] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.192457] pci 0000:80:04.7: BAR 0 [mem 0xfbf00000-0xfbf03fff 64bit]
[    2.192588] pci 0000:80:05.0: [8086:0e28] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.192708] pci 0000:80:05.2: [8086:0e2a] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.192827] pci 0000:80:05.4: [8086:0e2c] type 00 class 0x080020 PCIe Root Complex Integrated Endpoint
[    2.192841] pci 0000:80:05.4: BAR 0 [mem 0xfbf20000-0xfbf20fff]
[    2.193013] pci 0000:80:00.0: PCI bridge to [bus 81]
[    2.193059] pci 0000:80:01.0: PCI bridge to [bus 82]
[    2.193108] pci 0000:80:02.0: PCI bridge to [bus 83]
[    2.193156] pci 0000:80:03.0: PCI bridge to [bus 84]
[    2.193190] pci_bus 0000:80: on NUMA node 1
[    2.193300] ACPI: PCI Root Bridge [UNC1] (domain 0000 [bus ff])
[    2.193308] acpi PNP0A03:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.193329] acpi PNP0A03:01: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[    2.193399] PCI host bridge to bus 0000:ff
[    2.193402] pci_bus 0000:ff: root bus resource [bus ff]
[    2.193416] pci 0000:ff:08.0: [8086:0e80] type 00 class 0x088000 conventional PCI endpoint
[    2.193482] pci 0000:ff:09.0: [8086:0e90] type 00 class 0x088000 conventional PCI endpoint
[    2.193551] pci 0000:ff:0a.0: [8086:0ec0] type 00 class 0x088000 conventional PCI endpoint
[    2.193610] pci 0000:ff:0a.1: [8086:0ec1] type 00 class 0x088000 conventional PCI endpoint
[    2.193674] pci 0000:ff:0a.2: [8086:0ec2] type 00 class 0x088000 conventional PCI endpoint
[    2.193730] pci 0000:ff:0a.3: [8086:0ec3] type 00 class 0x088000 conventional PCI endpoint
[    2.193787] pci 0000:ff:0b.0: [8086:0e1e] type 00 class 0x088000 conventional PCI endpoint
[    2.193839] pci 0000:ff:0b.3: [8086:0e1f] type 00 class 0x088000 conventional PCI endpoint
[    2.193896] pci 0000:ff:0c.0: [8086:0ee0] type 00 class 0x088000 conventional PCI endpoint
[    2.193952] pci 0000:ff:0c.1: [8086:0ee2] type 00 class 0x088000 conventional PCI endpoint
[    2.194005] pci 0000:ff:0c.2: [8086:0ee4] type 00 class 0x088000 conventional PCI endpoint
[    2.194063] pci 0000:ff:0c.3: [8086:0ee6] type 00 class 0x088000 conventional PCI endpoint
[    2.194126] pci 0000:ff:0c.4: [8086:0ee8] type 00 class 0x088000 conventional PCI endpoint
[    2.194181] pci 0000:ff:0c.5: [8086:0eea] type 00 class 0x088000 conventional PCI endpoint
[    2.194242] pci 0000:ff:0d.0: [8086:0ee1] type 00 class 0x088000 conventional PCI endpoint
[    2.194296] pci 0000:ff:0d.1: [8086:0ee3] type 00 class 0x088000 conventional PCI endpoint
[    2.194351] pci 0000:ff:0d.2: [8086:0ee5] type 00 class 0x088000 conventional PCI endpoint
[    2.194407] pci 0000:ff:0d.3: [8086:0ee7] type 00 class 0x088000 conventional PCI endpoint
[    2.194464] pci 0000:ff:0d.4: [8086:0ee9] type 00 class 0x088000 conventional PCI endpoint
[    2.194517] pci 0000:ff:0d.5: [8086:0eeb] type 00 class 0x088000 conventional PCI endpoint
[    2.194580] pci 0000:ff:0e.0: [8086:0ea0] type 00 class 0x088000 conventional PCI endpoint
[    2.194644] pci 0000:ff:0e.1: [8086:0e30] type 00 class 0x110100 conventional PCI endpoint
[    2.194712] pci 0000:ff:0f.0: [8086:0ea8] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.194794] pci 0000:ff:0f.1: [8086:0e71] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.194875] pci 0000:ff:0f.2: [8086:0eaa] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.194957] pci 0000:ff:0f.3: [8086:0eab] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.195039] pci 0000:ff:0f.4: [8086:0eac] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.195121] pci 0000:ff:0f.5: [8086:0ead] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.195213] pci 0000:ff:10.0: [8086:0eb0] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.195296] pci 0000:ff:10.1: [8086:0eb1] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.195377] pci 0000:ff:10.2: [8086:0eb2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.195458] pci 0000:ff:10.3: [8086:0eb3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.195538] pci 0000:ff:10.4: [8086:0eb4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.195619] pci 0000:ff:10.5: [8086:0eb5] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.195701] pci 0000:ff:10.6: [8086:0eb6] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.195782] pci 0000:ff:10.7: [8086:0eb7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.195870] pci 0000:ff:13.0: [8086:0e1d] type 00 class 0x088000 conventional PCI endpoint
[    2.195925] pci 0000:ff:13.1: [8086:0e34] type 00 class 0x110100 conventional PCI endpoint
[    2.195980] pci 0000:ff:13.4: [8086:0e81] type 00 class 0x088000 conventional PCI endpoint
[    2.196037] pci 0000:ff:13.5: [8086:0e36] type 00 class 0x110100 conventional PCI endpoint
[    2.196096] pci 0000:ff:16.0: [8086:0ec8] type 00 class 0x088000 conventional PCI endpoint
[    2.196152] pci 0000:ff:16.1: [8086:0ec9] type 00 class 0x088000 conventional PCI endpoint
[    2.196208] pci 0000:ff:16.2: [8086:0eca] type 00 class 0x088000 conventional PCI endpoint
[    2.196272] pci 0000:ff:1c.0: [8086:0e60] type 00 class 0x088000 conventional PCI endpoint
[    2.196347] pci 0000:ff:1c.1: [8086:0e38] type 00 class 0x110100 conventional PCI endpoint
[    2.196419] pci 0000:ff:1d.0: [8086:0e68] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.196503] pci 0000:ff:1d.1: [8086:0e79] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.196586] pci 0000:ff:1d.2: [8086:0e6a] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.196671] pci 0000:ff:1d.3: [8086:0e6b] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.196752] pci 0000:ff:1d.4: [8086:0e6c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.196836] pci 0000:ff:1d.5: [8086:0e6d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.196920] pci 0000:ff:1e.0: [8086:0ef0] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.197013] pci 0000:ff:1e.1: [8086:0ef1] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.197097] pci 0000:ff:1e.2: [8086:0ef2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.197183] pci 0000:ff:1e.3: [8086:0ef3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.197268] pci 0000:ff:1e.4: [8086:0ef4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.197357] pci 0000:ff:1e.5: [8086:0ef5] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.197442] pci 0000:ff:1e.6: [8086:0ef6] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.197529] pci 0000:ff:1e.7: [8086:0ef7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.197611] pci_bus 0000:ff: on NUMA node 1
[    2.197744] ACPI: PCI: Interrupt link LNKA configured for IRQ 11
[    2.197806] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[    2.197866] ACPI: PCI: Interrupt link LNKC configured for IRQ 15
[    2.197926] ACPI: PCI: Interrupt link LNKD configured for IRQ 5
[    2.197986] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    2.198047] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    2.198108] ACPI: PCI: Interrupt link LNKG configured for IRQ 7
[    2.198168] ACPI: PCI: Interrupt link LNKH configured for IRQ 14
[    2.202408] iommu: Default domain type: Passthrough (set via kernel command line)
[    2.202408] SCSI subsystem initialized
[    2.202408] libata version 3.00 loaded.
[    2.202408] ACPI: bus type USB registered
[    2.202408] usbcore: registered new interface driver usbfs
[    2.202408] usbcore: registered new interface driver hub
[    2.202408] usbcore: registered new device driver usb
[    2.202408] pps_core: LinuxPPS API ver. 1 registered
[    2.202408] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    2.202408] PTP clock support registered
[    2.202408] EDAC MC: Ver: 3.0.0
[    2.202408] NetLabel: Initializing
[    2.202408] NetLabel:  domain hash size = 128
[    2.202408] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    2.202408] NetLabel:  unlabeled traffic allowed by default
[    2.202408] mctp: management component transport protocol core
[    2.202408] NET: Registered PF_MCTP protocol family
[    2.202408] PCI: Using ACPI for IRQ routing
[    2.208320] PCI: pci_cache_line_size set to 64 bytes
[    2.208551] e820: reserve RAM buffer [mem 0x00097000-0x0009ffff]
[    2.208554] e820: reserve RAM buffer [mem 0x7cb60000-0x7fffffff]
[    2.208581] pci 0000:05:00.0: vgaarb: setting as boot VGA device
[    2.208581] pci 0000:05:00.0: vgaarb: bridge control possible
[    2.208581] pci 0000:05:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    2.208581] pci 0000:0a:00.0: vgaarb: setting as boot VGA device (overriding previous)
[    2.208581] pci 0000:0a:00.0: vgaarb: bridge control possible
[    2.208581] pci 0000:0a:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    2.208581] vgaarb: loaded
[    2.208581] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    2.208581] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    2.210711] clocksource: Switched to clocksource tsc-early
[    2.210711] VFS: Disk quotas dquot_6.6.0
[    2.210711] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    2.210711] AppArmor: AppArmor Filesystem Enabled
[    2.210711] pnp: PnP ACPI init
[    2.210817] system 00:00: [mem 0xfc000000-0xfcffffff] has been reserved
[    2.210822] system 00:00: [mem 0xfd000000-0xfdffffff] has been reserved
[    2.210824] system 00:00: [mem 0xfe000000-0xfeafffff] has been reserved
[    2.210826] system 00:00: [mem 0xfeb00000-0xfebfffff] has been reserved
[    2.210829] system 00:00: [mem 0xfed00400-0xfed3ffff] could not be reserved
[    2.210831] system 00:00: [mem 0xfed45000-0xfedfffff] has been reserved
[    2.210834] system 00:00: [mem 0x00000400-0x000004ff] could not be reserved
[    2.210994] system 00:01: [mem 0xcfffc000-0xcfffdfff] could not be reserved
[    2.211173] system 00:02: [io  0x0290-0x029f] has been reserved
[    2.211344] system 00:04: [io  0x04d0-0x04d1] has been reserved
[    2.211675] pnp 00:06: [dma 0 disabled]
[    2.211956] pnp 00:07: [dma 0 disabled]
[    2.212315] system 00:08: [io  0x0400-0x0453] has been reserved
[    2.212319] system 00:08: [io  0x0458-0x047f] has been reserved
[    2.212322] system 00:08: [io  0x1180-0x119f] has been reserved
[    2.212326] system 00:08: [io  0x0500-0x057f] has been reserved
[    2.212329] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    2.212331] system 00:08: [mem 0xfec00000-0xfecfffff] could not be reserved
[    2.212334] system 00:08: [mem 0xfed08000-0xfed08fff] has been reserved
[    2.212336] system 00:08: [mem 0xff000000-0xffffffff] has been reserved
[    2.212491] system 00:09: [io  0x0454-0x0457] has been reserved
[    2.212833] system 00:0b: [mem 0xfbffe000-0xfbffffff] could not be reserved
[    2.213229] pnp: PnP ACPI: found 12 devices
[    2.219365] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    2.219512] NET: Registered PF_INET protocol family
[    2.220306] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc)
[    2.240503] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    2.240700] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[    2.242188] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    2.243228] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    2.243501] TCP: Hash tables configured (established 524288 bind 65536)
[    2.244233] MPTCP token hash table entries: 65536 (order: 8, 1572864 bytes, vmalloc)
[    2.245092] UDP hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    2.246073] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    2.246404] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    2.246416] NET: Registered PF_XDP protocol family
[    2.246449] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.246462] pci 0000:00:01.1: PCI bridge to [bus 02]
[    2.246471] pci 0000:00:02.0: PCI bridge to [bus 03]
[    2.246479] pci 0000:00:02.2: PCI bridge to [bus 04]
[    2.246483] pci 0000:00:02.2:   bridge window [mem 0xc8a00000-0xc8cfffff]
[    2.246490] pci 0000:00:03.0: PCI bridge to [bus 05]
[    2.246493] pci 0000:00:03.0:   bridge window [io  0x8000-0x8fff]
[    2.246497] pci 0000:00:03.0:   bridge window [mem 0xb8000000-0xc60fffff]
[    2.246504] pci 0000:00:11.0: PCI bridge to [bus 06]
[    2.246507] pci 0000:00:11.0:   bridge window [io  0x7000-0x7fff]
[    2.246513] pci 0000:00:11.0:   bridge window [mem 0xc8400000-0xc88fffff]
[    2.246517] pci 0000:00:11.0:   bridge window [mem 0xcfe00000-0xcfefffff 64bit pref]
[    2.246525] pci 0000:00:1c.0: PCI bridge to [bus 07-08]
[    2.246528] pci 0000:00:1c.0:   bridge window [io  0x6000-0x6fff]
[    2.246534] pci 0000:00:1c.0:   bridge window [mem 0xc8e00000-0xc8efffff]
[    2.246543] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    2.246546] pci 0000:09:00.0:   bridge window [io  0x5000-0x5fff]
[    2.246554] pci 0000:09:00.0:   bridge window [mem 0xc7000000-0xc80fffff]
[    2.246567] pci 0000:00:1c.7: PCI bridge to [bus 09-0a]
[    2.246570] pci 0000:00:1c.7:   bridge window [io  0x5000-0x5fff]
[    2.246575] pci 0000:00:1c.7:   bridge window [mem 0xc7000000-0xc80fffff]
[    2.246583] pci 0000:00:1e.0: PCI bridge to [bus 0b]
[    2.246593] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    2.246596] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    2.246597] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    2.246599] pci_bus 0000:00: resource 7 [io  0x0d00-0x9fff window]
[    2.246600] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
[    2.246602] pci_bus 0000:00: resource 9 [mem 0x80000000-0xcfffffff window]
[    2.246604] pci_bus 0000:04: resource 1 [mem 0xc8a00000-0xc8cfffff]
[    2.246606] pci_bus 0000:05: resource 0 [io  0x8000-0x8fff]
[    2.246608] pci_bus 0000:05: resource 1 [mem 0xb8000000-0xc60fffff]
[    2.246610] pci_bus 0000:06: resource 0 [io  0x7000-0x7fff]
[    2.246611] pci_bus 0000:06: resource 1 [mem 0xc8400000-0xc88fffff]
[    2.246613] pci_bus 0000:06: resource 2 [mem 0xcfe00000-0xcfefffff 64bit pref]
[    2.246615] pci_bus 0000:07: resource 0 [io  0x6000-0x6fff]
[    2.246616] pci_bus 0000:07: resource 1 [mem 0xc8e00000-0xc8efffff]
[    2.246618] pci_bus 0000:09: resource 0 [io  0x5000-0x5fff]
[    2.246619] pci_bus 0000:09: resource 1 [mem 0xc7000000-0xc80fffff]
[    2.246621] pci_bus 0000:0a: resource 0 [io  0x5000-0x5fff]
[    2.246623] pci_bus 0000:0a: resource 1 [mem 0xc7000000-0xc80fffff]
[    2.246624] pci_bus 0000:0b: resource 4 [io  0x0000-0x03af window]
[    2.246626] pci_bus 0000:0b: resource 5 [io  0x03e0-0x0cf7 window]
[    2.246628] pci_bus 0000:0b: resource 6 [io  0x03b0-0x03df window]
[    2.246629] pci_bus 0000:0b: resource 7 [io  0x0d00-0x9fff window]
[    2.246631] pci_bus 0000:0b: resource 8 [mem 0x000a0000-0x000dffff window]
[    2.246632] pci_bus 0000:0b: resource 9 [mem 0x80000000-0xcfffffff window]
[    2.246721] pci 0000:80:00.0: PCI bridge to [bus 81]
[    2.246732] pci 0000:80:01.0: PCI bridge to [bus 82]
[    2.246741] pci 0000:80:02.0: PCI bridge to [bus 83]
[    2.246750] pci 0000:80:03.0: PCI bridge to [bus 84]
[    2.246760] pci_bus 0000:80: resource 4 [io  0xa000-0xffff window]
[    2.246762] pci_bus 0000:80: resource 5 [mem 0xd0000000-0xfbffffff window]
[    2.246826] pci 0000:00:05.0: disabled boot interrupts on device [8086:0e28]
[    2.273660] pci 0000:00:1a.0: quirk_usb_early_handoff+0x0/0x780 took 26187 usecs
[    2.301650] pci 0000:00:1d.0: quirk_usb_early_handoff+0x0/0x780 took 27309 usecs
[    2.301681] pci 0000:05:00.1: extending delay after power-on from D3hot to 20 msec
[    2.301726] pci 0000:05:00.1: D0 power state depends on 0000:05:00.0
[    2.301886] pci 0000:80:05.0: disabled boot interrupts on device [8086:0e28]
[    2.302011] PCI: CLS 64 bytes, default 64
[    2.302099] DMAR: No SATC found
[    2.302104] DMAR: dmar0: Using Queued invalidation
[    2.302110] DMAR: dmar1: Using Queued invalidation
[    2.302115] Trying to unpack rootfs image as initramfs...
[    2.302235] pci 0000:80:00.0: Adding to iommu group 0
[    2.302280] pci 0000:80:01.0: Adding to iommu group 1
[    2.302319] pci 0000:80:02.0: Adding to iommu group 2
[    2.302358] pci 0000:80:03.0: Adding to iommu group 3
[    2.302395] pci 0000:80:04.0: Adding to iommu group 4
[    2.302434] pci 0000:80:04.1: Adding to iommu group 5
[    2.302472] pci 0000:80:04.2: Adding to iommu group 6
[    2.302508] pci 0000:80:04.3: Adding to iommu group 7
[    2.302547] pci 0000:80:04.4: Adding to iommu group 8
[    2.302584] pci 0000:80:04.5: Adding to iommu group 9
[    2.302621] pci 0000:80:04.6: Adding to iommu group 10
[    2.302658] pci 0000:80:04.7: Adding to iommu group 11
[    2.302753] pci 0000:00:00.0: Adding to iommu group 12
[    2.302793] pci 0000:00:01.0: Adding to iommu group 13
[    2.302832] pci 0000:00:01.1: Adding to iommu group 14
[    2.302871] pci 0000:00:02.0: Adding to iommu group 15
[    2.302912] pci 0000:00:02.2: Adding to iommu group 16
[    2.302951] pci 0000:00:03.0: Adding to iommu group 17
[    2.302990] pci 0000:00:04.0: Adding to iommu group 18
[    2.303029] pci 0000:00:04.1: Adding to iommu group 19
[    2.303068] pci 0000:00:04.2: Adding to iommu group 20
[    2.303105] pci 0000:00:04.3: Adding to iommu group 21
[    2.303142] pci 0000:00:04.4: Adding to iommu group 22
[    2.303181] pci 0000:00:04.5: Adding to iommu group 23
[    2.303217] pci 0000:00:04.6: Adding to iommu group 24
[    2.303255] pci 0000:00:04.7: Adding to iommu group 25
[    2.303293] pci 0000:00:05.0: Adding to iommu group 26
[    2.303331] pci 0000:00:05.2: Adding to iommu group 27
[    2.303367] pci 0000:00:05.4: Adding to iommu group 28
[    2.303405] pci 0000:00:11.0: Adding to iommu group 29
[    2.303503] pci 0000:00:16.0: Adding to iommu group 30
[    2.303542] pci 0000:00:16.1: Adding to iommu group 30
[    2.303579] pci 0000:00:1a.0: Adding to iommu group 31
[    2.303616] pci 0000:00:1b.0: Adding to iommu group 32
[    2.303655] pci 0000:00:1c.0: Adding to iommu group 33
[    2.303692] pci 0000:00:1c.7: Adding to iommu group 34
[    2.303729] pci 0000:00:1d.0: Adding to iommu group 35
[    2.303767] pci 0000:00:1e.0: Adding to iommu group 36
[    2.303893] pci 0000:00:1f.0: Adding to iommu group 37
[    2.303935] pci 0000:00:1f.2: Adding to iommu group 37
[    2.303975] pci 0000:00:1f.3: Adding to iommu group 37
[    2.304013] pci 0000:04:00.0: Adding to iommu group 38
[    2.304112] pci 0000:05:00.0: Adding to iommu group 39
[    2.304154] pci 0000:05:00.1: Adding to iommu group 39
[    2.304223] pci 0000:06:00.0: Adding to iommu group 40
[    2.304260] pci 0000:07:00.0: Adding to iommu group 41
[    2.304300] pci 0000:07:00.1: Adding to iommu group 42
[    2.304337] pci 0000:09:00.0: Adding to iommu group 43
[    2.304342] pci 0000:0a:00.0: Adding to iommu group 43
[    2.304412] pci 0000:7f:08.0: Adding to iommu group 44
[    2.304482] pci 0000:7f:09.0: Adding to iommu group 45
[    2.304638] pci 0000:7f:0a.0: Adding to iommu group 46
[    2.304684] pci 0000:7f:0a.1: Adding to iommu group 46
[    2.304728] pci 0000:7f:0a.2: Adding to iommu group 46
[    2.304770] pci 0000:7f:0a.3: Adding to iommu group 46
[    2.304868] pci 0000:7f:0b.0: Adding to iommu group 47
[    2.304912] pci 0000:7f:0b.3: Adding to iommu group 47
[    2.305127] pci 0000:7f:0c.0: Adding to iommu group 48
[    2.305173] pci 0000:7f:0c.1: Adding to iommu group 48
[    2.305217] pci 0000:7f:0c.2: Adding to iommu group 48
[    2.305264] pci 0000:7f:0c.3: Adding to iommu group 48
[    2.305307] pci 0000:7f:0c.4: Adding to iommu group 48
[    2.305351] pci 0000:7f:0c.5: Adding to iommu group 48
[    2.305621] pci 0000:7f:0d.0: Adding to iommu group 49
[    2.305669] pci 0000:7f:0d.1: Adding to iommu group 49
[    2.305713] pci 0000:7f:0d.2: Adding to iommu group 49
[    2.305760] pci 0000:7f:0d.3: Adding to iommu group 49
[    2.305806] pci 0000:7f:0d.4: Adding to iommu group 49
[    2.305851] pci 0000:7f:0d.5: Adding to iommu group 49
[    2.305950] pci 0000:7f:0e.0: Adding to iommu group 50
[    2.305996] pci 0000:7f:0e.1: Adding to iommu group 50
[    2.306036] pci 0000:7f:0f.0: Adding to iommu group 51
[    2.306073] pci 0000:7f:0f.1: Adding to iommu group 52
[    2.306111] pci 0000:7f:0f.2: Adding to iommu group 53
[    2.306149] pci 0000:7f:0f.3: Adding to iommu group 54
[    2.306189] pci 0000:7f:0f.4: Adding to iommu group 55
[    2.306226] pci 0000:7f:0f.5: Adding to iommu group 56
[    2.306264] pci 0000:7f:10.0: Adding to iommu group 57
[    2.306304] pci 0000:7f:10.1: Adding to iommu group 58
[    2.306342] pci 0000:7f:10.2: Adding to iommu group 59
[    2.306379] pci 0000:7f:10.3: Adding to iommu group 60
[    2.306418] pci 0000:7f:10.4: Adding to iommu group 61
[    2.306457] pci 0000:7f:10.5: Adding to iommu group 62
[    2.306496] pci 0000:7f:10.6: Adding to iommu group 63
[    2.306533] pci 0000:7f:10.7: Adding to iommu group 64
[    2.306692] pci 0000:7f:13.0: Adding to iommu group 65
[    2.306741] pci 0000:7f:13.1: Adding to iommu group 65
[    2.306790] pci 0000:7f:13.4: Adding to iommu group 65
[    2.306838] pci 0000:7f:13.5: Adding to iommu group 65
[    2.306965] pci 0000:7f:16.0: Adding to iommu group 66
[    2.307015] pci 0000:7f:16.1: Adding to iommu group 66
[    2.307066] pci 0000:7f:16.2: Adding to iommu group 66
[    2.307163] pci 0000:7f:1c.0: Adding to iommu group 67
[    2.307213] pci 0000:7f:1c.1: Adding to iommu group 67
[    2.307253] pci 0000:7f:1d.0: Adding to iommu group 68
[    2.307292] pci 0000:7f:1d.1: Adding to iommu group 69
[    2.307329] pci 0000:7f:1d.2: Adding to iommu group 70
[    2.307366] pci 0000:7f:1d.3: Adding to iommu group 71
[    2.307403] pci 0000:7f:1d.4: Adding to iommu group 72
[    2.307443] pci 0000:7f:1d.5: Adding to iommu group 73
[    2.307480] pci 0000:7f:1e.0: Adding to iommu group 74
[    2.307517] pci 0000:7f:1e.1: Adding to iommu group 75
[    2.307561] pci 0000:7f:1e.2: Adding to iommu group 76
[    2.307598] pci 0000:7f:1e.3: Adding to iommu group 77
[    2.307636] pci 0000:7f:1e.4: Adding to iommu group 78
[    2.307673] pci 0000:7f:1e.5: Adding to iommu group 79
[    2.307712] pci 0000:7f:1e.6: Adding to iommu group 80
[    2.307750] pci 0000:7f:1e.7: Adding to iommu group 81
[    2.307788] pci 0000:80:05.0: Adding to iommu group 82
[    2.307826] pci 0000:80:05.2: Adding to iommu group 83
[    2.307872] pci 0000:80:05.4: Adding to iommu group 84
[    2.307939] pci 0000:ff:08.0: Adding to iommu group 85
[    2.308008] pci 0000:ff:09.0: Adding to iommu group 86
[    2.308165] pci 0000:ff:0a.0: Adding to iommu group 87
[    2.308221] pci 0000:ff:0a.1: Adding to iommu group 87
[    2.308277] pci 0000:ff:0a.2: Adding to iommu group 87
[    2.308332] pci 0000:ff:0a.3: Adding to iommu group 87
[    2.308428] pci 0000:ff:0b.0: Adding to iommu group 88
[    2.308487] pci 0000:ff:0b.3: Adding to iommu group 88
[    2.308702] pci 0000:ff:0c.0: Adding to iommu group 89
[    2.308759] pci 0000:ff:0c.1: Adding to iommu group 89
[    2.308815] pci 0000:ff:0c.2: Adding to iommu group 89
[    2.308871] pci 0000:ff:0c.3: Adding to iommu group 89
[    2.308930] pci 0000:ff:0c.4: Adding to iommu group 89
[    2.308988] pci 0000:ff:0c.5: Adding to iommu group 89
[    2.309204] pci 0000:ff:0d.0: Adding to iommu group 90
[    2.309261] pci 0000:ff:0d.1: Adding to iommu group 90
[    2.309319] pci 0000:ff:0d.2: Adding to iommu group 90
[    2.309376] pci 0000:ff:0d.3: Adding to iommu group 90
[    2.309434] pci 0000:ff:0d.4: Adding to iommu group 90
[    2.309493] pci 0000:ff:0d.5: Adding to iommu group 90
[    2.309599] pci 0000:ff:0e.0: Adding to iommu group 91
[    2.309659] pci 0000:ff:0e.1: Adding to iommu group 91
[    2.309697] pci 0000:ff:0f.0: Adding to iommu group 92
[    2.309737] pci 0000:ff:0f.1: Adding to iommu group 93
[    2.309774] pci 0000:ff:0f.2: Adding to iommu group 94
[    2.309812] pci 0000:ff:0f.3: Adding to iommu group 95
[    2.309849] pci 0000:ff:0f.4: Adding to iommu group 96
[    2.309891] pci 0000:ff:0f.5: Adding to iommu group 97
[    2.309928] pci 0000:ff:10.0: Adding to iommu group 98
[    2.309965] pci 0000:ff:10.1: Adding to iommu group 99
[    2.310004] pci 0000:ff:10.2: Adding to iommu group 100
[    2.310042] pci 0000:ff:10.3: Adding to iommu group 101
[    2.310079] pci 0000:ff:10.4: Adding to iommu group 102
[    2.310119] pci 0000:ff:10.5: Adding to iommu group 103
[    2.310159] pci 0000:ff:10.6: Adding to iommu group 104
[    2.310196] pci 0000:ff:10.7: Adding to iommu group 105
[    2.310352] pci 0000:ff:13.0: Adding to iommu group 106
[    2.310413] pci 0000:ff:13.1: Adding to iommu group 106
[    2.310478] pci 0000:ff:13.4: Adding to iommu group 106
[    2.310540] pci 0000:ff:13.5: Adding to iommu group 106
[    2.310667] pci 0000:ff:16.0: Adding to iommu group 107
[    2.310729] pci 0000:ff:16.1: Adding to iommu group 107
[    2.310791] pci 0000:ff:16.2: Adding to iommu group 107
[    2.310892] pci 0000:ff:1c.0: Adding to iommu group 108
[    2.310955] pci 0000:ff:1c.1: Adding to iommu group 108
[    2.310992] pci 0000:ff:1d.0: Adding to iommu group 109
[    2.311029] pci 0000:ff:1d.1: Adding to iommu group 110
[    2.311068] pci 0000:ff:1d.2: Adding to iommu group 111
[    2.311106] pci 0000:ff:1d.3: Adding to iommu group 112
[    2.311143] pci 0000:ff:1d.4: Adding to iommu group 113
[    2.311180] pci 0000:ff:1d.5: Adding to iommu group 114
[    2.311218] pci 0000:ff:1e.0: Adding to iommu group 115
[    2.311256] pci 0000:ff:1e.1: Adding to iommu group 116
[    2.311294] pci 0000:ff:1e.2: Adding to iommu group 117
[    2.311334] pci 0000:ff:1e.3: Adding to iommu group 118
[    2.311372] pci 0000:ff:1e.4: Adding to iommu group 119
[    2.311409] pci 0000:ff:1e.5: Adding to iommu group 120
[    2.311447] pci 0000:ff:1e.6: Adding to iommu group 121
[    2.311486] pci 0000:ff:1e.7: Adding to iommu group 122
[    2.311578] DMAR: Intel(R) Virtualization Technology for Directed I/O
[    2.311580] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    2.311581] software IO TLB: mapped [mem 0x0000000078b60000-0x000000007cb60000] (64MB)
[    2.314888] Initialise system trusted keyrings
[    2.314907] Key type blacklist registered
[    2.315020] workingset: timestamp_bits=36 max_order=26 bucket_order=0
[    2.315033] zbud: loaded
[    2.315496] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    2.315664] fuse: init (API version 7.39)
[    2.315921] integrity: Platform Keyring initialized
[    2.315928] integrity: Machine keyring initialized
[    2.330104] Key type asymmetric registered
[    2.330107] Asymmetric key parser 'x509' registered
[    2.330141] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[    2.330246] io scheduler mq-deadline registered
[    2.334140] pcieport 0000:00:01.0: PME: Signaling with IRQ 25
[    2.334445] pcieport 0000:00:01.1: PME: Signaling with IRQ 26
[    2.334738] pcieport 0000:00:02.0: PME: Signaling with IRQ 28
[    2.335017] pcieport 0000:00:02.2: PME: Signaling with IRQ 29
[    2.335311] pcieport 0000:00:03.0: PME: Signaling with IRQ 31
[    2.335564] pcieport 0000:00:11.0: PME: Signaling with IRQ 32
[    2.335789] pcieport 0000:00:1c.0: PME: Signaling with IRQ 33
[    2.335991] pcieport 0000:00:1c.7: PME: Signaling with IRQ 34
[    2.336484] pcieport 0000:80:00.0: PME: Signaling with IRQ 36
[    2.336850] pcieport 0000:80:01.0: PME: Signaling with IRQ 38
[    2.337198] pcieport 0000:80:02.0: PME: Signaling with IRQ 40
[    2.337475] pcieport 0000:80:03.0: PME: Signaling with IRQ 42
[    2.337762] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    2.337986] Monitor-Mwait will be used to enter C-1 state
[    2.337993] Monitor-Mwait will be used to enter C-2 state
[    2.337997] ACPI: \_SB_.SCK0.C000: Found 2 idle states
[    2.341069] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    2.341141] ACPI: button: Power Button [PWRB]
[    2.341191] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    2.341239] ACPI: button: Power Button [PWRF]
[    2.400743] ERST: Error Record Serialization Table (ERST) support is initialized.
[    2.400852] pstore: Using crash dump compression: deflate
[    2.400855] pstore: Registered erst as persistent store backend
[    2.401099] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    2.421673] 00:06: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    2.442952] 00:07: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    2.446264] Linux agpgart interface v0.103
[    2.457814] loop: module loaded
[    2.458321] tun: Universal TUN/TAP device driver, 1.6
[    2.458368] PPP generic driver version 2.4.2
[    2.458471] i8042: PNP: PS/2 Controller [PNP0f03:PS2M] at 0x60,0x64 irq 12
[    2.458475] i8042: PNP: PS/2 controller doesn't have KBD irq; using default 1
[    2.461212] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.461224] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.461316] mousedev: PS/2 mouse device common for all mice
[    2.461464] rtc_cmos 00:03: RTC can wake from S4
[    2.461746] rtc_cmos 00:03: registered as rtc0
[    2.461782] rtc_cmos 00:03: setting system clock to 2024-05-25T19:55:14 UTC (1716666914)
[    2.461820] rtc_cmos 00:03: alarms up to one month, y3k, 114 bytes nvram
[    2.461831] i2c_dev: i2c /dev entries driver
[    2.463765] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    2.463786] device-mapper: uevent: version 1.0.3
[    2.463900] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
[    2.463929] platform eisa.0: Probing EISA bus 0
[    2.463932] platform eisa.0: EISA: Cannot allocate resource for mainboard
[    2.463935] platform eisa.0: Cannot allocate resource for EISA slot 1
[    2.463937] platform eisa.0: Cannot allocate resource for EISA slot 2
[    2.463939] platform eisa.0: Cannot allocate resource for EISA slot 3
[    2.463941] platform eisa.0: Cannot allocate resource for EISA slot 4
[    2.463942] platform eisa.0: Cannot allocate resource for EISA slot 5
[    2.463945] platform eisa.0: Cannot allocate resource for EISA slot 6
[    2.463946] platform eisa.0: Cannot allocate resource for EISA slot 7
[    2.463948] platform eisa.0: Cannot allocate resource for EISA slot 8
[    2.463950] platform eisa.0: EISA: Detected 0 cards
[    2.463965] intel_pstate: Intel P-state driver initializing
[    2.469053] ledtrig-cpu: registered to indicate activity on CPUs
[    2.469256] drop_monitor: Initializing network drop monitor service
[    2.469446] NET: Registered PF_INET6 protocol family
[    3.331488] tsc: Refined TSC clocksource calibration: 2699.998 MHz
[    3.331542] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x26eb3cc21a9, max_idle_ns: 440795299783 ns
[    3.331687] clocksource: Switched to clocksource tsc
[    5.977083] Freeing initrd memory: 413556K
[    5.985719] Segment Routing with IPv6
[    5.985763] In-situ OAM (IOAM) with IPv6
[    5.985814] NET: Registered PF_PACKET protocol family
[    5.985845] Bridge firewalling registered
[    5.985966] Key type dns_resolver registered
[    5.991666] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    5.993822] microcode: Current revision: 0x00000424
[    5.996216] IPI shorthand broadcast: enabled
[    5.997727] sched_clock: Marking stable (5988687665, 7462414)->(6162863450, -166713371)
[    5.998019] registered taskstats version 1
[    6.002585] Loading compiled-in X.509 certificates
[    6.003323] Loaded X.509 cert 'Build time autogenerated kernel key: bd72e3f68099f5aebbd2514afdab38d0d0ea0ddc'
[    6.005352] Key type .fscrypt registered
[    6.005355] Key type fscrypt-provisioning registered
[    6.023573] Key type encrypted registered
[    6.023579] AppArmor: AppArmor sha256 policy hashing enabled
[    6.023593] ima: No TPM chip found, activating TPM-bypass!
[    6.023597] Loading compiled-in module X.509 certificates
[    6.024190] Loaded X.509 cert 'Build time autogenerated kernel key: bd72e3f68099f5aebbd2514afdab38d0d0ea0ddc'
[    6.024193] ima: Allocated hash algorithm: sha1
[    6.024209] ima: No architecture policies found
[    6.024221] evm: Initialising EVM extended attributes:
[    6.024222] evm: security.selinux
[    6.024224] evm: security.SMACK64
[    6.024225] evm: security.SMACK64EXEC
[    6.024226] evm: security.SMACK64TRANSMUTE
[    6.024227] evm: security.SMACK64MMAP
[    6.024228] evm: security.apparmor
[    6.024229] evm: security.ima
[    6.024230] evm: security.capability
[    6.024231] evm: HMAC attrs: 0x1
[    6.024724] PM:   Magic number: 8:779:951
[    6.024778] clockevents clockevent36: hash matches
[    6.024797] tty tty8: hash matches
[    6.024867] processor cpu6: hash matches
[    6.024887] memory memory4: hash matches
[    6.029303] RAS: Correctable Errors collector initialized.
[    6.029416] clk: Disabling unused clocks
[    6.031582] Freeing unused decrypted memory: 2028K
[    6.033612] Freeing unused kernel image (initmem) memory: 4712K
[    6.033697] Write protecting the kernel read-only data: 34816k
[    6.034580] Freeing unused kernel image (rodata/data gap) memory: 1336K
[    6.076399] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    6.076403] x86/mm: Checking user space page tables
[    6.116005] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    6.116012] Run /init as init process
[    6.116014]   with arguments:
[    6.116015]     /init
[    6.116016]   with environment:
[    6.116017]     HOME=/
[    6.116018]     TERM=linux
[    6.116019]     BOOT_IMAGE=/boot/vmlinuz-6.8.11-dirty
[    6.262393] dca service started, version 1.12.1
[    6.265990] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[    6.266560] i2c i2c-0: 16/16 memory slots populated (from DMI)
[    6.266564] i2c i2c-0: Systems with more than 8 memory slots not supported yet, not instantiating SPD
[    6.268489] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    6.268502] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    6.268515] ehci-pci 0000:00:1a.0: debug port 2
[    6.272454] ehci-pci 0000:00:1a.0: irq 17, io mem 0xc6127000
[    6.272587] ahci 0000:00:1f.2: version 3.0
[    6.272760] Adaptec aacraid driver 1.2.1[50983]-custom
[    6.273074] aacraid: Comm Interface enabled
[    6.282870] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
[    6.282875] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst 
[    6.287488] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    6.287555] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.08
[    6.287559] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.287560] usb usb1: Product: EHCI Host Controller
[    6.287562] usb usb1: Manufacturer: Linux 6.8.11-dirty ehci_hcd
[    6.287563] usb usb1: SerialNumber: 0000:00:1a.0
[    6.287717] hub 1-0:1.0: USB hub found
[    6.287728] hub 1-0:1.0: 2 ports detected
[    6.288061] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    6.288071] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    6.288085] ehci-pci 0000:00:1d.0: debug port 2
[    6.290986] igb: Intel(R) Gigabit Ethernet Network Driver
[    6.290990] igb: Copyright (c) 2007-2014 Intel Corporation.
[    6.291996] ehci-pci 0000:00:1d.0: irq 23, io mem 0xc6126000
[    6.315023] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    6.315080] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.08
[    6.315083] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.315085] usb usb2: Product: EHCI Host Controller
[    6.315087] usb usb2: Manufacturer: Linux 6.8.11-dirty ehci_hcd
[    6.315088] usb usb2: SerialNumber: 0000:00:1d.0
[    6.315235] hub 2-0:1.0: USB hub found
[    6.315245] hub 2-0:1.0: 2 ports detected
[    6.352060] scsi host1: ahci
[    6.352389] scsi host2: ahci
[    6.352575] scsi host3: ahci
[    6.352735] scsi host4: ahci
[    6.352937] scsi host5: ahci
[    6.353122] scsi host6: ahci
[    6.353233] ata1: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125100 irq 43 lpm-pol 0
[    6.353236] ata2: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125180 irq 43 lpm-pol 0
[    6.353239] ata3: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125200 irq 43 lpm-pol 0
[    6.353241] ata4: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125280 irq 43 lpm-pol 0
[    6.353243] ata5: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125300 irq 43 lpm-pol 0
[    6.353245] ata6: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125380 irq 43 lpm-pol 0
[    6.362572] igb 0000:07:00.0: added PHC on eth0
[    6.362594] igb 0000:07:00.0: Intel(R) Gigabit Ethernet Network Connection
[    6.362596] igb 0000:07:00.0: eth0: (PCIe:5.0Gb/s:Width x4) e0:3f:49:e7:2a:31
[    6.362671] igb 0000:07:00.0: eth0: PBA No: 104900-000
[    6.362673] igb 0000:07:00.0: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s)
[    6.371783] isci: Intel(R) C600 SAS Controller Driver - version 1.2.0
[    6.371810] isci 0000:06:00.0: driver configured for rev: 6 silicon
[    6.371824] isci 0000:06:00.0: OEM parameter table found in OROM
[    6.371827] isci 0000:06:00.0: OEM SAS parameters (version: 1.1) loaded (platform)
[    6.372074] isci 0000:06:00.0: SCU controller 0: phy 3-0 cables: {short, short, short, short}
[    6.374556] scsi host7: isci
[    6.418606] igb 0000:07:00.1: added PHC on eth1
[    6.418629] igb 0000:07:00.1: Intel(R) Gigabit Ethernet Network Connection
[    6.418630] igb 0000:07:00.1: eth1: (PCIe:5.0Gb/s:Width x4) e0:3f:49:e7:2a:32
[    6.418706] igb 0000:07:00.1: eth1: PBA No: 104900-000
[    6.418707] igb 0000:07:00.1: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s)
[    6.479758] AAC0: kernel 5.2-0[18948] Apr 13 2012
[    6.479763] AAC0: monitor 5.2-0[18948]
[    6.479765] AAC0: bios 5.2-0[18948]
[    6.479768] AAC0: serial 3E4313486E1
[    6.479769] AAC0: Non-DASD support enabled.
[    6.479771] AAC0: 64bit support enabled.
[    6.479773] aacraid 0000:04:00.0: 64 Bit DAC enabled
[    6.494417] scsi host0: aacraid
[    6.494791] scsi 0:0:0:0: Direct-Access     Adaptec  linus_raid1_1tb  V1.0 PQ: 0 ANSI: 2
[    6.494972] scsi 0:0:1:0: Direct-Access     Adaptec  linus_raid5_5tb  V1.0 PQ: 0 ANSI: 2
[    6.506558] scsi 0:1:0:0: Direct-Access              Samsung SSD 860  RVM0 PQ: 1 ANSI: 5
[    6.509915] scsi 0:1:1:0: Direct-Access              Samsung SSD 860  RVM0 PQ: 1 ANSI: 5
[    6.513255] scsi 0:1:2:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    6.516787] scsi 0:1:3:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    6.520286] scsi 0:1:4:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    6.523794] scsi 0:1:5:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    6.527287] scsi 0:1:6:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    6.530908] scsi 0:1:7:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    6.547482] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    6.571478] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    6.666364] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    6.666405] ata6: SATA link down (SStatus 0 SControl 300)
[    6.666425] ata4: SATA link down (SStatus 0 SControl 300)
[    6.666462] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    6.666481] ata5: SATA link down (SStatus 0 SControl 300)
[    6.666500] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    6.666682] ata1.00: ATA-9: M4-CT256M4SSD2, 0309, max UDMA/100
[    6.666743] ata2.00: ATA-9: M4-CT256M4SSD2, 0309, max UDMA/100
[    6.666886] ata1.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    6.666913] ata2.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    6.667289] ata2.00: configured for UDMA/100
[    6.667334] ata1.00: configured for UDMA/100
[    6.667400] scsi: waiting for bus probes to complete ...
[    6.668348] ata3.00: ATAPI: ATAPI   iHAS124   W, HL0F, max UDMA/100
[    6.670377] ata3.00: configured for UDMA/100
[    6.703870] usb 1-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[    6.703875] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    6.704183] hub 1-1:1.0: USB hub found
[    6.704244] hub 1-1:1.0: 6 ports detected
[    6.727871] usb 2-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[    6.727876] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    6.728195] hub 2-1:1.0: USB hub found
[    6.728245] hub 2-1:1.0: 8 ports detected
[    6.765796] scsi 0:3:0:0: Enclosure         ADAPTEC  Virtual SGPIO  0 0001 PQ: 0 ANSI: 5
[    6.906272] scsi 0:3:0:0: scsi_get_vpd_size: long VPD page 0 length: 516 bytes
[    6.991530] usb 1-1.3: new high-speed USB device number 3 using ehci-pci
[    7.015534] usb 2-1.1: new low-speed USB device number 3 using ehci-pci
[    7.129282] usb 2-1.1: New USB device found, idVendor=046d, idProduct=c31c, bcdDevice=64.02
[    7.129287] usb 2-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    7.129289] usb 2-1.1: Product: USB Keyboard
[    7.129290] usb 2-1.1: Manufacturer: Logitech
[    7.143990] hid: raw HID events driver (C) Jiri Kosina
[    7.191764] input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input4
[    7.288620] usb 1-1.3: New USB device found, idVendor=046b, idProduct=ff01, bcdDevice= 1.00
[    7.288625] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    7.288627] usb 1-1.3: Product: Virtual Hub
[    7.288628] usb 1-1.3: Manufacturer: American Megatrends Inc.
[    7.288629] usb 1-1.3: SerialNumber: serial
[    7.289132] hub 1-1.3:1.0: USB hub found
[    7.289244] hub 1-1.3:1.0: 5 ports detected
[    7.627533] usb 1-1.3.1: new low-speed USB device number 4 using ehci-pci
[    7.800872] usb 1-1.3.1: New USB device found, idVendor=046b, idProduct=ff10, bcdDevice= 1.00
[    7.800876] usb 1-1.3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    7.800880] usb 1-1.3.1: Product: Virtual Keyboard and Mouse
[    7.800881] usb 1-1.3.1: Manufacturer: American Megatrends Inc.
[    7.856221] usbcore: registered new interface driver usbhid
[    7.856224] usbhid: USB HID core driver
[    7.931537] usb 1-1.3.2: new high-speed USB device number 5 using ehci-pci
[    8.104370] usb 1-1.3.2: New USB device found, idVendor=046b, idProduct=ff20, bcdDevice= 1.00
[    8.104375] usb 1-1.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    8.104377] usb 1-1.3.2: Product: Virtual Cdrom Device
[    8.104378] usb 1-1.3.2: Manufacturer: American Megatrends Inc.
[    8.104380] usb 1-1.3.2: SerialNumber: AAAABBBBCCCC1
[    8.114069] usb-storage 1-1.3.2:1.0: USB Mass Storage device detected
[    8.114242] scsi host8: usb-storage 1-1.3.2:1.0
[    8.114320] usbcore: registered new interface driver usb-storage
[    8.235526] usb 1-1.3.3: new high-speed USB device number 6 using ehci-pci
[    8.408371] usb 1-1.3.3: New USB device found, idVendor=046b, idProduct=ff40, bcdDevice= 1.00
[    8.408376] usb 1-1.3.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    8.408378] usb 1-1.3.3: Product: Virtual Floppy Device
[    8.408380] usb 1-1.3.3: Manufacturer: American Megatrends Inc.
[    8.408382] usb 1-1.3.3: SerialNumber: AAAABBBBCCCC2
[    8.408761] usb-storage 1-1.3.3:1.0: USB Mass Storage device detected
[    8.408944] usb-storage 1-1.3.3:1.0: Quirks match for vid 046b pid ff40: 200
[    8.408996] scsi host9: usb-storage 1-1.3.3:1.0
[    8.412792] usbcore: registered new interface driver uas
[    8.539531] usb 1-1.3.4: new high-speed USB device number 7 using ehci-pci
[    8.712372] usb 1-1.3.4: New USB device found, idVendor=046b, idProduct=ff31, bcdDevice= 1.00
[    8.712376] usb 1-1.3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    8.712379] usb 1-1.3.4: Product: Virtual HardDisk Device
[    8.712380] usb 1-1.3.4: Manufacturer: American Megatrends Inc.
[    8.712382] usb 1-1.3.4: SerialNumber: AAAABBBBCCCC3
[    8.712765] usb-storage 1-1.3.4:1.0: USB Mass Storage device detected
[    8.712964] scsi host10: usb-storage 1-1.3.4:1.0
[    9.124291] scsi 8:0:0:0: CD-ROM            AMI      Virtual CDROM0   1.00 PQ: 0 ANSI: 0 CCS
[    9.412167] scsi 9:0:0:0: Direct-Access     AMI      Virtual Floppy0  1.00 PQ: 0 ANSI: 0 CCS
[    9.732132] scsi 10:0:0:0: Direct-Access     AMI      Virtual HDISK0   1.00 PQ: 0 ANSI: 0 CCS
[   35.764443] scsi 0:3:1:0: Enclosure         ADAPTEC  Virtual SGPIO  1 0001 PQ: 0 ANSI: 5
[   64.719794] sd 0:0:0:0: Attached scsi generic sg0 type 0
[   64.719934] sd 0:0:1:0: Attached scsi generic sg1 type 0
[   64.719960] sd 0:0:0:0: [sda] 1998565376 512-byte logical blocks: (1.02 TB/953 GiB)
[   64.719980] sd 0:0:0:0: [sda] Write Protect is off
[   64.719986] sd 0:0:0:0: [sda] Mode Sense: 12 00 10 08
[   64.720013] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, supports DPO and FUA
[   64.720043] sd 0:0:1:0: [sdb] Very big device. Trying to use READ CAPACITY(16).
[   64.720060] scsi 0:1:0:0: Attached scsi generic sg2 type 0
[   64.720064] sd 0:0:1:0: [sdb] 9762222080 512-byte logical blocks: (5.00 TB/4.54 TiB)
[   64.720079] sd 0:0:1:0: [sdb] Write Protect is off
[   64.720082] sd 0:0:1:0: [sdb] Mode Sense: 12 00 10 08
[   64.720103] sd 0:0:1:0: [sdb] Write cache: disabled, read cache: enabled, supports DPO and FUA
[   64.720250] scsi 0:1:1:0: Attached scsi generic sg3 type 0
[   64.720437] scsi 0:1:2:0: Attached scsi generic sg4 type 0
[   64.720547] scsi 0:1:3:0: Attached scsi generic sg5 type 0
[   64.720670] scsi 0:1:4:0: Attached scsi generic sg6 type 0
[   64.720717] sd 0:0:1:0: [sdb] Very big device. Trying to use READ CAPACITY(16).
[   64.720797] scsi 0:1:5:0: Attached scsi generic sg7 type 0
[   64.720909] scsi 0:1:6:0: Attached scsi generic sg8 type 0
[   64.721029] scsi 0:1:7:0: Attached scsi generic sg9 type 0
[   64.721150] scsi 0:3:0:0: Attached scsi generic sg10 type 13
[   64.721324] scsi 0:3:1:0: Attached scsi generic sg11 type 13
[   64.721499] scsi 1:0:0:0: Direct-Access     ATA      M4-CT256M4SSD2   0309 PQ: 0 ANSI: 5
[   64.721866] sd 1:0:0:0: Attached scsi generic sg12 type 0
[   64.721926] scsi: waiting for bus probes to complete ...
[   64.721955] sd 1:0:0:0: [sdc] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[   64.721972] sd 1:0:0:0: [sdc] Write Protect is off
[   64.721976] sd 1:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[   64.721997] sd 1:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   64.722027] sd 1:0:0:0: [sdc] Preferred minimum I/O size 512 bytes
[   64.722970]  sdc: sdc1 sdc2 < sdc5 >
[   64.723144] sd 1:0:0:0: [sdc] Attached SCSI disk
[   64.723179] sd 0:0:0:0: [sda] Attached SCSI removable disk
[   64.724331] sr 8:0:0:0: [sr0] scsi-1 drive
[   64.724336] cdrom: Uniform CD-ROM driver Revision: 3.20
[   64.725328] sr 8:0:0:0: Attached scsi CD-ROM sr0
[   64.725398] sr 8:0:0:0: Attached scsi generic sg13 type 5
[   64.725534] sd 9:0:0:0: Attached scsi generic sg14 type 0
[   64.725688] sd 10:0:0:0: Attached scsi generic sg15 type 0
[   64.725838] scsi 2:0:0:0: Direct-Access     ATA      M4-CT256M4SSD2   0309 PQ: 0 ANSI: 5
[   64.726170] sd 2:0:0:0: Attached scsi generic sg16 type 0
[   64.726250] sd 2:0:0:0: [sdf] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[   64.726271] sd 2:0:0:0: [sdf] Write Protect is off
[   64.726274] sd 2:0:0:0: [sdf] Mode Sense: 00 3a 00 00
[   64.726303] sd 2:0:0:0: [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   64.726335] sd 2:0:0:0: [sdf] Preferred minimum I/O size 512 bytes
[   64.726423] sd 9:0:0:0: [sdd] Media removed, stopped polling
[   64.726551] sd 10:0:0:0: [sde] Media removed, stopped polling
[   64.726824] sd 9:0:0:0: [sdd] Attached SCSI removable disk
[   64.726917] scsi 3:0:0:0: CD-ROM            ATAPI    iHAS124   W      HL0F PQ: 0 ANSI: 5
[   64.726965] sd 10:0:0:0: [sde] Attached SCSI removable disk
[   64.728131]  sdf: sdf1
[   64.728221] sd 2:0:0:0: [sdf] Attached SCSI disk
[   64.735669] sd 0:0:1:0: [sdb] Attached SCSI removable disk
[   64.802292] sr 3:0:0:0: [sr1] scsi3-mmc drive: 188x/125x writer dvd-ram cd/rw xa/form2 cdda tray
[   64.833165] sr 3:0:0:0: Attached scsi CD-ROM sr1
[   64.833261] sr 3:0:0:0: Attached scsi generic sg17 type 5
[   64.836411] usbcore: registered new interface driver usbmouse
[   64.836646] usbcore: registered new interface driver usbkbd
[   64.841967] ses 0:3:0:0: Attached Enclosure device
[   64.841992] ses 0:3:1:0: Attached Enclosure device
[   64.842631] input: Logitech USB Keyboard as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.0/0003:046D:C31C.0001/input/input5
[   64.863585] igb 0000:07:00.1 enp7s0f1: renamed from eth1
[   64.899933] hid-generic 0003:046D:C31C.0001: input,hidraw0: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-0000:00:1d.0-1.1/input0
[   64.900137] input: Logitech USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.1/0003:046D:C31C.0002/input/input6
[   64.923501] igb 0000:07:00.0 enp7s0f0: renamed from eth0
[   64.959570] input: Logitech USB Keyboard System Control as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.1/0003:046D:C31C.0002/input/input7
[   64.959706] hid-generic 0003:046D:C31C.0002: input,hiddev0,hidraw1: USB HID v1.10 Device [Logitech USB Keyboard] on usb-0000:00:1d.0-1.1/input1
[   64.959912] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3.1/1-1.3.1:1.0/0003:046B:FF10.0003/input/input8
[   64.959979] hid-generic 0003:046B:FF10.0003: input,hidraw2: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.0-1.3.1/input0
[   64.960099] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3.1/1-1.3.1:1.1/0003:046B:FF10.0004/input/input9
[   64.960197] hid-generic 0003:046B:FF10.0004: input,hidraw3: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.0-1.3.1/input1
[   70.807101] device-mapper: thin: Data device (dm-1) discard unsupported: Disabling discard passdown.
[   80.220122] device-mapper: thin: Data device (dm-3) discard unsupported: Disabling discard passdown.
[  131.067479] raid6: sse2x4   gen() 12524 MB/s
[  131.135479] raid6: sse2x2   gen()  8558 MB/s
[  131.203475] raid6: sse2x1   gen()  8505 MB/s
[  131.203478] raid6: using algorithm sse2x4 gen() 12524 MB/s
[  131.271476] raid6: .... xor() 8106 MB/s, rmw enabled
[  131.271477] raid6: using ssse3x2 recovery algorithm
[  131.273384] xor: automatically using best checksumming function   avx       
[  131.488316] Btrfs loaded, zoned=yes, fsverity=yes
[  132.192926] PM: Image not found (code -22)
[  132.230477] EXT4-fs (sdc1): mounted filesystem 3842ebdd-e37f-4e4e-afd4-d7eb79b41984 ro with ordered data mode. Quota mode: none.
[  132.501119] systemd[1]: Inserted module 'autofs4'
[  132.531830] systemd[1]: systemd 252.22-1~deb12u1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[  132.531838] systemd[1]: Detected architecture x86-64.
[  132.534362] systemd[1]: Hostname set to <linus.localdomain>.
[  132.749907] systemd[1]: Queued start job for default target graphical.target.
[  132.773513] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[  132.774024] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[  132.774557] systemd[1]: Created slice system-postfix.slice - Slice /system/postfix.
[  132.775021] systemd[1]: Created slice user.slice - User and Session Slice.
[  132.775099] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[  132.775157] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[  132.775321] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[  132.775347] systemd[1]: Expecting device dev-disk-by\x2duuid-e5873103\x2d5ea5\x2d4dc0\x2da645\x2db8c511b219a8.device - /dev/disk/by-uuid/e5873103-5ea5-4dc0-a645-b8c511b219a8...
[  132.775356] systemd[1]: Expecting device dev-disk-by\x2duuid-fcf5433d\x2d28bd\x2d4d22\x2db3ba\x2ddd7262ae33a9.device - /dev/disk/by-uuid/fcf5433d-28bd-4d22-b3ba-dd7262ae33a9...
[  132.775371] systemd[1]: Reached target ceph-fuse.target - ceph target allowing to start/stop all ceph-fuse@.service instances at once.
[  132.775384] systemd[1]: Reached target ceph.target - ceph target allowing to start/stop all ceph*@.service instances at once.
[  132.775397] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
[  132.775416] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[  132.775448] systemd[1]: Reached target paths.target - Path Units.
[  132.775783] systemd[1]: Reached target slices.target - Slice Units.
[  132.775816] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[  132.775918] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[  132.776034] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[  132.779972] systemd[1]: Listening on rpcbind.socket - RPCbind Server Activation Socket.
[  132.780583] systemd[1]: Listening on syslog.socket - Syslog Socket.
[  132.780718] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[  132.780807] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[  132.781197] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
[  132.781323] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[  132.781490] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[  132.781847] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[  132.781970] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[  132.783032] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[  132.784182] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[  132.785438] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[  132.786554] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[  132.786628] systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
[  132.788095] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[  132.789305] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[  132.790753] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[  132.791953] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[  132.793010] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[  132.794182] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[  132.795517] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[  132.796709] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[  132.797889] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
[  132.798172] systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).
[  132.800496] systemd[1]: Starting systemd-journald.service - Journal Service...
[  132.802743] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[  132.804013] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[  132.805364] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[  132.807442] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[  132.807622] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[  132.807731] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[  132.807878] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[  132.808167] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[  132.808551] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[  132.808720] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[  132.809062] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[  132.809229] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[  132.809526] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[  132.809708] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[  132.810012] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[  132.810172] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[  132.810453] systemd[1]: modprobe@loop.service: Deactivated successfully.
[  132.810591] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.
[  132.812422] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[  132.813633] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[  132.813732] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
[  132.815132] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[  132.816034] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[  132.847555] EXT4-fs (sdc1): re-mounted 3842ebdd-e37f-4e4e-afd4-d7eb79b41984 r/w. Quota mode: none.
[  132.848940] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[  132.849140] systemd[1]: systemd-firstboot.service - First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
[  132.849193] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[  132.849581] VFIO - User Level meta-driver version: 0.3
[  132.850752] systemd[1]: Starting systemd-random-seed.service - Load/Save Random Seed...
[  132.852125] systemd[1]: Starting systemd-sysusers.service - Create System Users...
[  132.870837] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[  132.874196] systemd[1]: Started dm-event.service - Device-mapper event daemon.
[  132.876457] systemd[1]: Finished systemd-random-seed.service - Load/Save Random Seed.
[  132.876578] systemd[1]: first-boot-complete.target - First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
[  132.898462] systemd[1]: Finished systemd-sysusers.service - Create System Users.
[  132.899844] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[  132.911413] vfio-pci 0000:05:00.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=none
[  132.911598] vfio_pci: add [10de:1201[ffffffff:ffffffff]] class 0x000000/00000000
[  132.911988] ACPI: bus type drm_connector registered
[  132.913932] systemd[1]: modprobe@drm.service: Deactivated successfully.
[  132.914110] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[  132.924741] systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
[  132.926088] systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
[  132.947698] systemd[1]: Started systemd-journald.service - Journal Service.
[  132.954462] systemd-journald[841]: Received client request to flush runtime journal.
[  132.959782] vfio_pci: add [10de:0e0c[ffffffff:ffffffff]] class 0x000000/00000000
[  133.082385] IPMI message handler: version 39.2
[  133.087959] ipmi device interface
[  133.101127] ioatdma: Intel(R) QuickData Technology Driver 5.00
[  133.108282] input: PC Speaker as /devices/platform/pcspkr/input/input10
[  133.112432] ipmi_si: IPMI System Interface driver
[  133.112459] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
[  133.112463] ipmi_platform: ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
[  133.112466] ipmi_si: Adding SMBIOS-specified kcs state machine
[  133.112538] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
[  133.112712] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca2] regsize 1 spacing 1 irq 0
[  133.112925] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
[  133.112927] ipmi_si: Adding ACPI-specified kcs state machine
[  133.113011] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca2, slave address 0x20, irq 0
[  133.125760] igb 0000:07:00.0: DCA enabled
[  133.125788] igb 0000:07:00.1: DCA enabled
[  133.146077] mei_me 0000:00:16.0: Device doesn't have valid ME Interface
[  133.245225] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
[  133.245233] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[  133.245234] RAPL PMU: hw unit of domain package 2^-16 Joules
[  133.245235] RAPL PMU: hw unit of domain dram 2^-16 Joules
[  133.254274] cryptd: max_cpu_qlen set to 1000
[  133.268722] ast 0000:0a:00.0: vgaarb: deactivate vga console
[  133.269471] AVX version of gcm_enc/dec engaged.
[  133.269558] AES CTR mode by8 optimization enabled
[  133.270196] Console: switching to colour dummy device 80x25
[  133.270404] ast 0000:0a:00.0: Using P2A bridge for configuration
[  133.270409] ast 0000:0a:00.0: AST 2300 detected
[  133.270494] ast 0000:0a:00.0: [drm] Using analog VGA
[  133.270504] ast 0000:0a:00.0: [drm] dram MCLK=408 Mhz type=1 bus_width=16
[  133.275936] [drm] Initialized ast 0.1.0 20120228 for 0000:0a:00.0 on minor 0
[  133.428842] snd_hda_intel 0000:00:1b.0: no codecs found!
[  133.439642] fbcon: astdrmfb (fb0) is primary device
[  133.492567] Console: switching to colour frame buffer device 210x65
[  133.574172] ast 0000:0a:00.0: [drm] fb0: astdrmfb frame buffer device
[  133.638610] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x000a3f, prod_id: 0x0c63, dev_id: 0x20)
[  133.684456] Adding 31307772k swap on /dev/sdc5.  Priority:-2 extents:1 across:31307772k SS
[  133.750632] ipmi_si IPI0001:00: IPMI kcs interface initialized
[  133.768445] ipmi_ssif: IPMI SSIF Interface driver
[  133.819945] EXT4-fs (sdf1): mounted filesystem fcf5433d-28bd-4d22-b3ba-dd7262ae33a9 r/w with ordered data mode. Quota mode: none.
[  133.983638] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[  133.983669] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[  133.983684] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[  133.983691] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[  133.983698] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[  133.983703] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[  133.983705] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[  133.983710] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[  133.983715] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[  133.983718] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[  133.983723] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[  133.983729] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[  133.983731] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[  133.983736] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[  133.983742] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[  133.983745] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[  133.983750] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[  133.983756] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[  133.983758] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[  133.983764] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[  133.983769] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[  133.983772] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[  133.983777] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[  133.983783] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[  133.983785] EDAC sbridge: Seeking for: PCI ID 8086:0e68
[  133.983791] EDAC sbridge: Seeking for: PCI ID 8086:0e68
[  133.983797] EDAC sbridge: Seeking for: PCI ID 8086:0e68
[  133.983799] EDAC sbridge: Seeking for: PCI ID 8086:0e79
[  133.983804] EDAC sbridge: Seeking for: PCI ID 8086:0e79
[  133.983810] EDAC sbridge: Seeking for: PCI ID 8086:0e79
[  133.983812] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[  133.983818] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[  133.983823] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[  133.983825] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[  133.983831] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[  133.983837] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[  133.983838] EDAC sbridge: Seeking for: PCI ID 8086:0e6c
[  133.983844] EDAC sbridge: Seeking for: PCI ID 8086:0e6c
[  133.983850] EDAC sbridge: Seeking for: PCI ID 8086:0e6c
[  133.983852] EDAC sbridge: Seeking for: PCI ID 8086:0e6d
[  133.983858] EDAC sbridge: Seeking for: PCI ID 8086:0e6d
[  133.983864] EDAC sbridge: Seeking for: PCI ID 8086:0e6d
[  133.983865] EDAC sbridge: Seeking for: PCI ID 8086:0eb8
[  133.983873] EDAC sbridge: Seeking for: PCI ID 8086:0ebc
[  133.983882] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[  133.983887] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[  133.983893] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[  133.983894] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[  133.983900] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[  133.983906] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[  133.983908] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[  133.983913] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[  133.983920] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[  133.984018] EDAC MC0: Giving out device to module sb_edac controller Ivy Bridge SrcID#0_Ha#0: DEV 0000:7f:0e.0 (INTERRUPT)
[  133.984093] EDAC MC1: Giving out device to module sb_edac controller Ivy Bridge SrcID#1_Ha#0: DEV 0000:ff:0e.0 (INTERRUPT)
[  133.984176] EDAC MC2: Giving out device to module sb_edac controller Ivy Bridge SrcID#0_Ha#1: DEV 0000:7f:1c.0 (INTERRUPT)
[  133.984253] EDAC MC3: Giving out device to module sb_edac controller Ivy Bridge SrcID#1_Ha#1: DEV 0000:ff:1c.0 (INTERRUPT)
[  133.984255] EDAC sbridge:  Ver: 1.1.2 
[  134.120434] intel_rapl_common: Found RAPL domain package
[  134.120439] intel_rapl_common: Found RAPL domain core
[  134.120444] intel_rapl_common: Found RAPL domain dram
[  134.120451] intel_rapl_common: package-0:core:long_term locked by BIOS
[  134.120454] intel_rapl_common: package-0:dram:long_term locked by BIOS
[  134.120821] intel_rapl_common: Found RAPL domain package
[  134.120827] intel_rapl_common: Found RAPL domain core
[  134.120832] intel_rapl_common: Found RAPL domain dram
[  134.120839] intel_rapl_common: package-1:core:long_term locked by BIOS
[  134.120842] intel_rapl_common: package-1:dram:long_term locked by BIOS
[  134.234490] audit: type=1400 audit(1716667046.265:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/lxc-start" pid=1529 comm="apparmor_parser"
[  134.234513] audit: type=1400 audit(1716667046.265:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/lxc-copy" pid=1528 comm="apparmor_parser"
[  134.234563] audit: type=1400 audit(1716667046.265:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="pve-container-mounthotplug" pid=1526 comm="apparmor_parser"
[  134.235590] audit: type=1400 audit(1716667046.269:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="swtpm" pid=1531 comm="apparmor_parser"
[  134.237332] audit: type=1400 audit(1716667046.269:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=1523 comm="apparmor_parser"
[  134.237585] audit: type=1400 audit(1716667046.269:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=1525 comm="apparmor_parser"
[  134.237589] audit: type=1400 audit(1716667046.269:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=1525 comm="apparmor_parser"
[  134.238714] audit: type=1400 audit(1716667046.269:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=1530 comm="apparmor_parser"
[  134.238721] audit: type=1400 audit(1716667046.269:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=1530 comm="apparmor_parser"
[  134.238725] audit: type=1400 audit(1716667046.269:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=1530 comm="apparmor_parser"
[  134.386500] softdog: initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout=0)
[  134.386507] softdog:              soft_reboot_cmd=<not set> soft_active_on_boot=0
[  134.454075] RPC: Registered named UNIX socket transport module.
[  134.454081] RPC: Registered udp transport module.
[  134.454082] RPC: Registered tcp transport module.
[  134.454083] RPC: Registered tcp-with-tls transport module.
[  134.454084] RPC: Registered tcp NFSv4.1 backchannel transport module.
[  135.271150] vmbr0: port 1(enp7s0f0) entered blocking state
[  135.271159] vmbr0: port 1(enp7s0f0) entered disabled state
[  135.271178] igb 0000:07:00.0 enp7s0f0: entered allmulticast mode
[  135.271235] igb 0000:07:00.0 enp7s0f0: entered promiscuous mode
[  135.898158] Loading iSCSI transport class v2.0-870.
[  138.687906] igb 0000:07:00.0 enp7s0f0: igb: enp7s0f0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX
[  138.688166] vmbr0: port 1(enp7s0f0) entered blocking state
[  138.688173] vmbr0: port 1(enp7s0f0) entered forwarding state
[  148.353756] kvm_intel: L1TF CPU bug present and SMT on, data leak possible. See CVE-2018-3646 and https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/l1tf.html for details.
[  148.670040] netfs: FS-Cache loaded
[  149.108892] NFS: Registering the id_resolver key type
[  149.108907] Key type id_resolver registered
[  149.108909] Key type id_legacy registered

[-- Attachment #1.1.5: dmesg-erst-7373208397568540677 --]
[-- Type: text/plain, Size: 13259 bytes --]

Panic#2 Part1
<6>[    2.266225] pci 0000:7f:1e.3: Adding to iommu group 77
<6>[    2.266263] pci 0000:7f:1e.4: Adding to iommu group 78
<6>[    2.266302] pci 0000:7f:1e.5: Adding to iommu group 79
<6>[    2.266340] pci 0000:7f:1e.6: Adding to iommu group 80
<6>[    2.266378] pci 0000:7f:1e.7: Adding to iommu group 81
<6>[    2.266417] pci 0000:80:05.0: Adding to iommu group 82
<6>[    2.266458] pci 0000:80:05.2: Adding to iommu group 83
<6>[    2.266496] pci 0000:80:05.4: Adding to iommu group 84
<6>[    2.266564] pci 0000:ff:08.0: Adding to iommu group 85
<6>[    2.266631] pci 0000:ff:09.0: Adding to iommu group 86
<6>[    2.266790] pci 0000:ff:0a.0: Adding to iommu group 87
<6>[    2.266846] pci 0000:ff:0a.1: Adding to iommu group 87
<6>[    2.266902] pci 0000:ff:0a.2: Adding to iommu group 87
<6>[    2.266959] pci 0000:ff:0a.3: Adding to iommu group 87
<6>[    2.267059] pci 0000:ff:0b.0: Adding to iommu group 88
<6>[    2.267116] pci 0000:ff:0b.3: Adding to iommu group 88
<6>[    2.267336] pci 0000:ff:0c.0: Adding to iommu group 89
<6>[    2.267399] pci 0000:ff:0c.1: Adding to iommu group 89
<6>[    2.267456] pci 0000:ff:0c.2: Adding to iommu group 89
<6>[    2.267512] pci 0000:ff:0c.3: Adding to iommu group 89
<6>[    2.267569] pci 0000:ff:0c.4: Adding to iommu group 89
<6>[    2.267626] pci 0000:ff:0c.5: Adding to iommu group 89
<6>[    2.267843] pci 0000:ff:0d.0: Adding to iommu group 90
<6>[    2.267903] pci 0000:ff:0d.1: Adding to iommu group 90
<6>[    2.267961] pci 0000:ff:0d.2: Adding to iommu group 90
<6>[    2.268018] pci 0000:ff:0d.3: Adding to iommu group 90
<6>[    2.268076] pci 0000:ff:0d.4: Adding to iommu group 90
<6>[    2.268140] pci 0000:ff:0d.5: Adding to iommu group 90
<6>[    2.268238] pci 0000:ff:0e.0: Adding to iommu group 91
<6>[    2.268297] pci 0000:ff:0e.1: Adding to iommu group 91
<6>[    2.268337] pci 0000:ff:0f.0: Adding to iommu group 92
<6>[    2.268376] pci 0000:ff:0f.1: Adding to iommu group 93
<6>[    2.268413] pci 0000:ff:0f.2: Adding to iommu group 94
<6>[    2.268451] pci 0000:ff:0f.3: Adding to iommu group 95
<6>[    2.268492] pci 0000:ff:0f.4: Adding to iommu group 96
<6>[    2.268530] pci 0000:ff:0f.5: Adding to iommu group 97
<6>[    2.268568] pci 0000:ff:10.0: Adding to iommu group 98
<6>[    2.268606] pci 0000:ff:10.1: Adding to iommu group 99
<6>[    2.268646] pci 0000:ff:10.2: Adding to iommu group 100
<6>[    2.268684] pci 0000:ff:10.3: Adding to iommu group 101
<6>[    2.268721] pci 0000:ff:10.4: Adding to iommu group 102
<6>[    2.268759] pci 0000:ff:10.5: Adding to iommu group 103
<6>[    2.268799] pci 0000:ff:10.6: Adding to iommu group 104
<6>[    2.268836] pci 0000:ff:10.7: Adding to iommu group 105
<6>[    2.268994] pci 0000:ff:13.0: Adding to iommu group 106
<6>[    2.269056] pci 0000:ff:13.1: Adding to iommu group 106
<6>[    2.269119] pci 0000:ff:13.4: Adding to iommu group 106
<6>[    2.269183] pci 0000:ff:13.5: Adding to iommu group 106
<6>[    2.269310] pci 0000:ff:16.0: Adding to iommu group 107
<6>[    2.269373] pci 0000:ff:16.1: Adding to iommu group 107
<6>[    2.269434] pci 0000:ff:16.2: Adding to iommu group 107
<6>[    2.269532] pci 0000:ff:1c.0: Adding to iommu group 108
<6>[    2.269595] pci 0000:ff:1c.1: Adding to iommu group 108
<6>[    2.269635] pci 0000:ff:1d.0: Adding to iommu group 109
<6>[    2.269673] pci 0000:ff:1d.1: Adding to iommu group 110
<6>[    2.269711] pci 0000:ff:1d.2: Adding to iommu group 111
<6>[    2.269749] pci 0000:ff:1d.3: Adding to iommu group 112
<6>[    2.269788] pci 0000:ff:1d.4: Adding to iommu group 113
<6>[    2.269825] pci 0000:ff:1d.5: Adding to iommu group 114
<6>[    2.269863] pci 0000:ff:1e.0: Adding to iommu group 115
<6>[    2.269901] pci 0000:ff:1e.1: Adding to iommu group 116
<6>[    2.269940] pci 0000:ff:1e.2: Adding to iommu group 117
<6>[    2.269978] pci 0000:ff:1e.3: Adding to iommu group 118
<6>[    2.270016] pci 0000:ff:1e.4: Adding to iommu group 119
<6>[    2.270056] pci 0000:ff:1e.5: Adding to iommu group 120
<6>[    2.270097] pci 0000:ff:1e.6: Adding to iommu group 121
<6>[    2.270137] pci 0000:ff:1e.7: Adding to iommu group 122
<6>[    2.270229] DMAR: Intel(R) Virtualization Technology for Directed I/O
<6>[    2.270231] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
<6>[    2.270232] software IO TLB: mapped [mem 0x0000000078b60000-0x000000007cb60000] (64MB)
<5>[    2.273047] Initialise system trusted keyrings
<5>[    2.273061] Key type blacklist registered
<6>[    2.273161] workingset: timestamp_bits=36 max_order=26 bucket_order=0
<6>[    2.273172] zbud: loaded
<6>[    2.273655] squashfs: version 4.0 (2009/01/31) Phillip Lougher
<6>[    2.273821] fuse: init (API version 7.39)
<5>[    2.274067] integrity: Platform Keyring initialized
<5>[    2.274073] integrity: Machine keyring initialized
<5>[    2.288158] Key type asymmetric registered
<5>[    2.288161] Asymmetric key parser 'x509' registered
<6>[    2.288192] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
<6>[    2.288274] io scheduler mq-deadline registered
<6>[    2.292894] pcieport 0000:00:01.0: PME: Signaling with IRQ 25
<6>[    2.293192] pcieport 0000:00:01.1: PME: Signaling with IRQ 26
<6>[    2.293479] pcieport 0000:00:02.0: PME: Signaling with IRQ 28
<6>[    2.293761] pcieport 0000:00:02.2: PME: Signaling with IRQ 29
<6>[    2.294071] pcieport 0000:00:03.0: PME: Signaling with IRQ 31
<6>[    2.294317] pcieport 0000:00:11.0: PME: Signaling with IRQ 32
<6>[    2.294550] pcieport 0000:00:1c.0: PME: Signaling with IRQ 33
<6>[    2.294758] pcieport 0000:00:1c.7: PME: Signaling with IRQ 34
<6>[    2.295235] pcieport 0000:80:00.0: PME: Signaling with IRQ 36
<6>[    2.295608] pcieport 0000:80:01.0: PME: Signaling with IRQ 38
<6>[    2.295956] pcieport 0000:80:02.0: PME: Signaling with IRQ 40
<6>[    2.296306] pcieport 0000:80:03.0: PME: Signaling with IRQ 42
<6>[    2.300192] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
<7>[    2.300426] Monitor-Mwait will be used to enter C-1 state
<7>[    2.300443] Monitor-Mwait will be used to enter C-2 state
<6>[    2.300453] ACPI: \_SB_.SCK0.C000: Found 2 idle states
<6>[    2.311093] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
<6>[    2.311190] ACPI: button: Power Button [PWRB]
<6>[    2.311247] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
<6>[    2.311326] ACPI: button: Power Button [PWRF]
<6>[    2.372473] ERST: Error Record Serialization Table (ERST) support is initialized.
<6>[    2.372579] pstore: Using crash dump compression: deflate
<6>[    2.372581] pstore: Registered erst as persistent store backend
<6>[    2.372817] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
<6>[    2.393489] 00:06: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
<6>[    2.414640] 00:07: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
<6>[    2.417834] Linux agpgart interface v0.103
<6>[    2.428270] loop: module loaded
<6>[    2.428778] tun: Universal TUN/TAP device driver, 1.6
<6>[    2.428855] PPP generic driver version 2.4.2
<6>[    2.428951] i8042: PNP: PS/2 Controller [PNP0f03:PS2M] at 0x60,0x64 irq 12
<4>[    2.428956] i8042: PNP: PS/2 controller doesn't have KBD irq; using default 1
<6>[    2.431621] serio: i8042 KBD port at 0x60,0x64 irq 1
<6>[    2.431628] serio: i8042 AUX port at 0x60,0x64 irq 12
<6>[    2.431738] mousedev: PS/2 mouse device common for all mice
<6>[    2.431847] rtc_cmos 00:03: RTC can wake from S4
<6>[    2.432099] rtc_cmos 00:03: registered as rtc0
<6>[    2.432142] rtc_cmos 00:03: setting system clock to 2024-05-26T07:34:13 UTC (1716708853)
<6>[    2.432178] rtc_cmos 00:03: alarms up to one month, y3k, 114 bytes nvram
<6>[    2.432201] i2c_dev: i2c /dev entries driver
<4>[    2.434278] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
<6>[    2.434298] device-mapper: uevent: version 1.0.3
<6>[    2.434407] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
<6>[    2.434436] platform eisa.0: Probing EISA bus 0
<4>[    2.434439] platform eisa.0: EISA: Cannot allocate resource for mainboard
<4>[    2.434441] platform eisa.0: Cannot allocate resource for EISA slot 1
<4>[    2.434445] platform eisa.0: Cannot allocate resource for EISA slot 2
<4>[    2.434447] platform eisa.0: Cannot allocate resource for EISA slot 3
<4>[    2.434449] platform eisa.0: Cannot allocate resource for EISA slot 4
<4>[    2.434450] platform eisa.0: Cannot allocate resource for EISA slot 5
<4>[    2.434452] platform eisa.0: Cannot allocate resource for EISA slot 6
<4>[    2.434454] platform eisa.0: Cannot allocate resource for EISA slot 7
<4>[    2.434456] platform eisa.0: Cannot allocate resource for EISA slot 8
<6>[    2.434457] platform eisa.0: EISA: Detected 0 cards
<6>[    2.434491] intel_pstate: Intel P-state driver initializing
<6>[    2.440217] ledtrig-cpu: registered to indicate activity on CPUs
<6>[    2.440397] drop_monitor: Initializing network drop monitor service
<6>[    2.440579] NET: Registered PF_INET6 protocol family
<6>[    3.287435] tsc: Refined TSC clocksource calibration: 2699.999 MHz
<6>[    3.287484] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x26eb3d7f706, max_idle_ns: 440795268188 ns
<6>[    3.287586] clocksource: Switched to clocksource tsc
<6>[    5.959732] Freeing initrd memory: 413716K
<6>[    5.968491] Segment Routing with IPv6
<6>[    5.968522] In-situ OAM (IOAM) with IPv6
<6>[    5.968583] NET: Registered PF_PACKET protocol family
<5>[    5.968601] Bridge firewalling registered
<5>[    5.968685] Key type dns_resolver registered
<4>[    5.974402] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
<4>[    5.977017] divide error: 0000 [#1] PREEMPT SMP PTI
<4>[    5.977116] CPU: 9 PID: 1 Comm: swapper/0 Not tainted 6.8.0-rc4+ #1
<4>[    5.977213] Hardware name: ASUSTeK COMPUTER INC. Z9PE-D16 Series/Z9PE-D16 Series, BIOS 5601 06/11/2015
<4>[    5.977337] RIP: 0010:init_intel_microcode+0x3c/0x80
<4>[    5.977436] Code: ff 75 44 40 80 fe 05 76 3e 48 8b 05 b6 45 f7 ff a9 00 00 00 40 75 30 8b 05 85 46 f7 ff 0f b7 0d aa 46 f7 ff 31 d2 48 c1 e0 0a <48> f7 f1 89 05 9b f9 46 ff 48 c7 c0 c0 98 e4 a8 31 d2 31 c9 31 f6
<4>[    5.977602] RSP: 0000:ffffb79b8008fd80 EFLAGS: 00010206
<4>[    5.977697] RAX: 0000000001e00000 RBX: 0000000000000000 RCX: 0000000000000000
<4>[    5.977795] RDX: 0000000000000000 RSI: 0000000000000006 RDI: 0000000000000000
<4>[    5.977894] RBP: ffffb79b8008fdf8 R08: 0000000000000000 R09: 0000000000000000
<4>[    5.977992] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
<4>[    5.978090] R13: 000000000000019a R14: ffffb79b8008fe08 R15: ffff96ad4026cf00
<4>[    5.978187] FS:  0000000000000000(0000) GS:ffff96cc3fa40000(0000) knlGS:0000000000000000
<4>[    5.978308] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
<4>[    5.978402] CR2: 0000000000000000 CR3: 0000000e6d236001 CR4: 00000000001706f0
<4>[    5.978500] Call Trace:
<4>[    5.978588]  <TASK>
<4>[    5.978675]  ? show_regs+0x6d/0x80
<4>[    5.978767]  ? die+0x37/0xa0
<4>[    5.978857]  ? do_trap+0xd4/0xf0
<4>[    5.978948]  ? do_error_trap+0x71/0xb0
<4>[    5.979040]  ? init_intel_microcode+0x3c/0x80
<4>[    5.979131]  ? exc_divide_error+0x3a/0x70
<4>[    5.979226]  ? init_intel_microcode+0x3c/0x80
<4>[    5.979317]  ? asm_exc_divide_error+0x1b/0x20
<4>[    5.979427]  ? init_intel_microcode+0x3c/0x80
<4>[    5.979520]  ? microcode_init+0x196/0x260
<4>[    5.979612]  ? __pfx_microcode_init+0x10/0x10
<4>[    5.979718]  do_one_initcall+0x5e/0x340
<4>[    5.979813]  kernel_init_freeable+0x322/0x490
<4>[    5.979906]  ? __pfx_kernel_init+0x10/0x10
<4>[    5.979998]  kernel_init+0x1b/0x200
<4>[    5.980089]  ret_from_fork+0x47/0x70
<4>[    5.980180]  ? __pfx_kernel_init+0x10/0x10
<4>[    5.980272]  ret_from_fork_asm+0x1b/0x30
<4>[    5.980364]  </TASK>
<4>[    5.980450] Modules linked in:
<4>[    5.980544] ---[ end trace 0000000000000000 ]---
<4>[    6.959943] RIP: 0010:init_intel_microcode+0x3c/0x80
<4>[    6.960041] Code: ff 75 44 40 80 fe 05 76 3e 48 8b 05 b6 45 f7 ff a9 00 00 00 40 75 30 8b 05 85 46 f7 ff 0f b7 0d aa 46 f7 ff 31 d2 48 c1 e0 0a <48> f7 f1 89 05 9b f9 46 ff 48 c7 c0 c0 98 e4 a8 31 d2 31 c9 31 f6
<4>[    6.960207] RSP: 0000:ffffb79b8008fd80 EFLAGS: 00010206
<4>[    6.960316] RAX: 0000000001e00000 RBX: 0000000000000000 RCX: 0000000000000000
<4>[    6.960414] RDX: 0000000000000000 RSI: 0000000000000006 RDI: 0000000000000000
<4>[    6.960512] RBP: ffffb79b8008fdf8 R08: 0000000000000000 R09: 0000000000000000
<4>[    6.960610] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
<4>[    6.960708] R13: 000000000000019a R14: ffffb79b8008fe08 R15: ffff96ad4026cf00
<4>[    6.960806] FS:  0000000000000000(0000) GS:ffff96cc3fa40000(0000) knlGS:0000000000000000
<4>[    6.960927] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
<4>[    6.961021] CR2: 0000000000000000 CR3: 0000000e6d236001 CR4: 00000000001706f0
<0>[    6.961120] Kernel panic - not syncing: Attempted to kill init! exitcode=0x0000000b
<0>[    6.961312] Kernel Offset: 0x25c00000 from 0xffffffff81000000 (relocation range: 0xffffffff80000000-0xffffffffbfffffff)

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 236 bytes --]

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: Kernel 6.9 regression: X86: Bogus messages from topology detection
  2024-05-27  7:29 Kernel 6.9 regression: X86: Bogus messages from topology detection Peter Schneider
@ 2024-05-27 13:14 ` Thomas Gleixner
  2024-05-27 20:49   ` Thomas Gleixner
  2024-05-27 21:06   ` Peter Schneider
  0 siblings, 2 replies; 29+ messages in thread
From: Thomas Gleixner @ 2024-05-27 13:14 UTC (permalink / raw)
  To: Peter Schneider; +Cc: LKML, x86, stable, regressions

On Mon, May 27 2024 at 09:29, Peter Schneider wrote:
> This is coming from an older server machine: 2-socket Ivy Bridge Xeon E5-2697 v2 (24C/48T) 
> in an Asus Z9PE-D16/2L motherboard (Intel C-602A chipset); BIOS patched to the latest 
> available from Asus. All memory slots occupied, so 256 GB RAM in total.
>
>  From a "good boot", e.g. kernel 6.8.11, dmesg output looks like this:
>
> [    1.823797] smpboot: x86: Booting SMP configuration:
> [    1.823799] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11
> [    1.827514] .... node  #1, CPUs:   #12 #13 #14 #15 #16 #17 #18 #19 #20 #21 #22 #23
> [    0.011462] smpboot: CPU 12 Converting physical 0 to logical die 1
>
> [    1.875532] .... node  #0, CPUs:   #24 #25 #26 #27 #28 #29 #30 #31 #32 #33 #34 #35
> [    1.882453] .... node  #1, CPUs:   #36 #37 #38 #39 #40 #41 #42 #43 #44 #45 #46 #47
> [    1.887532] MDS CPU bug present and SMT on, data leak possible. See 
> https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
> [    1.933640] smp: Brought up 2 nodes, 48 CPUs
> [    1.933640] smpboot: Max logical packages: 2
> [    1.933640] smpboot: Total of 48 processors activated (259199.61 BogoMIPS)
>
>
>  From a "bad" boot, e.g. kernel 6.9.2, dmesg output has these messages in it:
>
> [    1.785937] smpboot: x86: Booting SMP configuration:
> [    1.785939] .... node  #0, CPUs:        #4
> [    1.786215] .... node  #1, CPUs:   #12 #16

Yuck. That does not make any sense.

> [    1.797547] .... node  #0, CPUs:    #1  #2  #3  #5  #6  #7  #8  #9 #10 #11
> [    1.801858] .... node  #1, CPUs:   #13 #14 #15 #17 #18 #19 #20 #21 #22 #23
> [    1.804687] .... node  #0, CPUs:   #24 #25 #26 #27 #28 #29 #30 #31 #32 #33 #34 #35
> [    1.810728] .... node  #1, CPUs:   #36 #37 #38 #39 #40 #41 #42 #43 #44 #45 #46 #47

> However the machine boots, and except from these strange messages, I cannot detect any 
> other abnormal behaviour. It is running ~15 QEMU/KVM virtual machines just fine. Because 
> these messages look unusual and a bit scary though, I have bisected the issue, to be able 
> to report it here. The first bad commit I found is this one:

Ok. So as the machine is booting, can you please provide the output of:

 cat /sys/kernel/debug/x86/topo/cpus/*

on the 6.9 kernel and 

 cat /proc/cpuinfo

for both 6.8 and 6.9?

Thanks,

        tglx

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: Kernel 6.9 regression: X86: Bogus messages from topology detection
  2024-05-27 13:14 ` Thomas Gleixner
@ 2024-05-27 20:49   ` Thomas Gleixner
  2024-05-27 21:06   ` Peter Schneider
  1 sibling, 0 replies; 29+ messages in thread
From: Thomas Gleixner @ 2024-05-27 20:49 UTC (permalink / raw)
  To: Peter Schneider; +Cc: LKML, x86, stable, regressions

On Mon, May 27 2024 at 15:14, Thomas Gleixner wrote:
> On Mon, May 27 2024 at 09:29, Peter Schneider wrote:
>> This is coming from an older server machine: 2-socket Ivy Bridge Xeon E5-2697 v2 (24C/48T) 
>> in an Asus Z9PE-D16/2L motherboard (Intel C-602A chipset); BIOS patched to the latest 
>> available from Asus. All memory slots occupied, so 256 GB RAM in total.
>>
>>  From a "good boot", e.g. kernel 6.8.11, dmesg output looks like this:
>>
>> [    1.823797] smpboot: x86: Booting SMP configuration:
>> [    1.823799] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11
>> [    1.827514] .... node  #1, CPUs:   #12 #13 #14 #15 #16 #17 #18 #19 #20 #21 #22 #23
>> [    0.011462] smpboot: CPU 12 Converting physical 0 to logical die 1
>>
>> [    1.875532] .... node  #0, CPUs:   #24 #25 #26 #27 #28 #29 #30 #31 #32 #33 #34 #35
>> [    1.882453] .... node  #1, CPUs:   #36 #37 #38 #39 #40 #41 #42 #43 #44 #45 #46 #47
>> [    1.887532] MDS CPU bug present and SMT on, data leak possible. See 
>> https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
>> [    1.933640] smp: Brought up 2 nodes, 48 CPUs
>> [    1.933640] smpboot: Max logical packages: 2
>> [    1.933640] smpboot: Total of 48 processors activated (259199.61 BogoMIPS)
>>
>>
>>  From a "bad" boot, e.g. kernel 6.9.2, dmesg output has these messages in it:
>>
>> [    1.785937] smpboot: x86: Booting SMP configuration:
>> [    1.785939] .... node  #0, CPUs:        #4
>> [    1.786215] .... node  #1, CPUs:   #12 #16
>
> Yuck. That does not make any sense.
>
>> [    1.797547] .... node  #0, CPUs:    #1  #2  #3  #5  #6  #7  #8  #9 #10 #11
>> [    1.801858] .... node  #1, CPUs:   #13 #14 #15 #17 #18 #19 #20 #21 #22 #23
>> [    1.804687] .... node  #0, CPUs:   #24 #25 #26 #27 #28 #29 #30 #31 #32 #33 #34 #35
>> [    1.810728] .... node  #1, CPUs:   #36 #37 #38 #39 #40 #41 #42 #43 #44 #45 #46 #47
>
>> However the machine boots, and except from these strange messages, I cannot detect any 
>> other abnormal behaviour. It is running ~15 QEMU/KVM virtual machines just fine. Because 
>> these messages look unusual and a bit scary though, I have bisected the issue, to be able 
>> to report it here. The first bad commit I found is this one:
>
> Ok. So as the machine is booting, can you please provide the output of:
>
>  cat /sys/kernel/debug/x86/topo/cpus/*
>
> on the 6.9 kernel and 
>
>  cat /proc/cpuinfo
>
> for both 6.8 and 6.9?

And once the output of:

  cpuid -r

no matter on which kernel please?

Thanks,

        tglx

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: Kernel 6.9 regression: X86: Bogus messages from topology detection
  2024-05-27 13:14 ` Thomas Gleixner
  2024-05-27 20:49   ` Thomas Gleixner
@ 2024-05-27 21:06   ` Peter Schneider
  2024-05-27 21:15     ` Peter Schneider
  1 sibling, 1 reply; 29+ messages in thread
From: Peter Schneider @ 2024-05-27 21:06 UTC (permalink / raw)
  To: Thomas Gleixner; +Cc: LKML, x86, stable, regressions


[-- Attachment #1.1.1: Type: text/plain, Size: 1337 bytes --]

Hello Thomas,

thanks very much for looking into this issue!


Am 27.05.2024 um 15:14 schrieb Thomas Gleixner:

 > Ok. So as the machine is booting, can you please provide the output of:
 >
 >   cat /sys/kernel/debug/x86/topo/cpus/*
 >
 > on the 6.9 kernel and

Please find attached files topo_cpus_RAW_6_8_11.txt, topo_cpus_RAW_6_9_2.txt, 
topo_cpus_SORTED_6_8_11.txt, topo_cpus_SORTED_6_9_2.txt. One for each kernel, and one raw 
as requested, and one a bit sorted for easier navigation.


 >   cat /proc/cpuinfo
 >
 > for both 6.8 and 6.9?

Please find attached files cpuinfo_6_8_11.txt and cpuinfo_6_9_2.txt


> And once the output of:
> 
>   cpuid -r
> 
> no matter on which kernel please?

Please find attached files cpuid.txt and cpuid-r.txt.

Beste Grüße,
Peter Schneider

-- 
Climb the mountain not to plant your flag, but to embrace the challenge,
enjoy the air and behold the view. Climb it so you can see the world,
not so the world can see you.                    -- David McCullough Jr.

OpenPGP:  0xA3828BD796CCE11A8CADE8866E3A92C92C3FF244
Download: https://www.peters-netzplatz.de/download/pschneider1968_pub.asc
https://keys.mailvelope.com/pks/lookup?op=get&search=pschneider1968@googlemail.com
https://keys.mailvelope.com/pks/lookup?op=get&search=pschneider1968@gmail.com

[-- Attachment #1.1.2: topo_cpus_RAW_6_8_11.txt --]
[-- Type: text/plain, Size: 15750 bytes --]

online:              1
initial_apicid:      0
apicid:              0
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              0
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      2
apicid:              2
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             1
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              2
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      18
apicid:              18
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             12
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              24
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      1a
apicid:              1a
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             13
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              26
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      20
apicid:              20
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              32
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      22
apicid:              22
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             1
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              34
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      24
apicid:              24
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             2
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              36
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      26
apicid:              26
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             3
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              38
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      28
apicid:              28
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             4
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              40
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      2a
apicid:              2a
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             5
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              42
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      30
apicid:              30
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             8
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              48
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      32
apicid:              32
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             9
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              50
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      4
apicid:              4
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             2
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              4
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      34
apicid:              34
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             10
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              52
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      36
apicid:              36
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             11
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              54
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      38
apicid:              38
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             12
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              56
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      3a
apicid:              3a
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             13
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              58
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      1
apicid:              1
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              0
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      3
apicid:              3
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             1
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              2
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      5
apicid:              5
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             2
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              4
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      7
apicid:              7
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             3
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              6
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      9
apicid:              9
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             4
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              8
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      b
apicid:              b
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             5
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              10
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      6
apicid:              6
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             3
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              6
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      11
apicid:              11
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             8
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              16
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      13
apicid:              13
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             9
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              18
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      15
apicid:              15
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             10
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              20
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      17
apicid:              17
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             11
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              22
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      19
apicid:              19
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             12
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              24
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      1b
apicid:              1b
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             13
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              26
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      21
apicid:              21
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              32
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      23
apicid:              23
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             1
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              34
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      25
apicid:              25
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             2
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              36
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      27
apicid:              27
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             3
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              38
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      8
apicid:              8
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             4
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              8
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      29
apicid:              29
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             4
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              40
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      2b
apicid:              2b
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             5
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              42
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      31
apicid:              31
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             8
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              48
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      33
apicid:              33
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             9
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              50
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      35
apicid:              35
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             10
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              52
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      37
apicid:              37
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             11
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              54
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      39
apicid:              39
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             12
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              56
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      3b
apicid:              3b
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             13
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              58
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      a
apicid:              a
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             5
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              10
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      10
apicid:              10
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             8
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              16
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      12
apicid:              12
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             9
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              18
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      14
apicid:              14
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             10
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              20
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2
online:              1
initial_apicid:      16
apicid:              16
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             11
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              22
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

[-- Attachment #1.1.3: topo_cpus_RAW_6_9_2.txt --]
[-- Type: text/plain, Size: 19094 bytes --]

online:              1
initial_apicid:      0
apicid:              0
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              0
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      2
apicid:              2
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              2
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      18
apicid:              18
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              24
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      1a
apicid:              1a
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              26
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      20
apicid:              20
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              32
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      22
apicid:              22
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              34
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      24
apicid:              24
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              36
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      26
apicid:              26
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              38
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      28
apicid:              28
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              40
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      2a
apicid:              2a
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              42
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      30
apicid:              30
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              48
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      32
apicid:              32
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              50
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      4
apicid:              4
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              4
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      34
apicid:              34
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              52
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      36
apicid:              36
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              54
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      38
apicid:              38
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              56
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      3a
apicid:              3a
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              58
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      1
apicid:              1
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              0
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      3
apicid:              3
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              2
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      5
apicid:              5
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              4
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      7
apicid:              7
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              6
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      9
apicid:              9
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              8
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      b
apicid:              b
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              10
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      6
apicid:              6
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              6
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      11
apicid:              11
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              16
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      13
apicid:              13
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              18
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      15
apicid:              15
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              20
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      17
apicid:              17
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              22
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      19
apicid:              19
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              24
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      1b
apicid:              1b
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              26
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      21
apicid:              21
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              32
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      23
apicid:              23
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              34
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      25
apicid:              25
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              36
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      27
apicid:              27
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              38
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      8
apicid:              8
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              8
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      29
apicid:              29
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              40
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      2b
apicid:              2b
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              42
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      31
apicid:              31
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              48
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      33
apicid:              33
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              50
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      35
apicid:              35
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              52
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      37
apicid:              37
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              54
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      39
apicid:              39
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              56
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      3b
apicid:              3b
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              58
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      a
apicid:              a
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              10
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      10
apicid:              10
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              16
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      12
apicid:              12
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              18
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      14
apicid:              14
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              20
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24
online:              1
initial_apicid:      16
apicid:              16
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              22
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

[-- Attachment #1.1.4: topo_cpus_SORTED_6_8_11.txt --]
[-- Type: text/plain, Size: 17468 bytes --]

/sys/kernel/debug/x86/topo/cpus/0
online:              1
initial_apicid:      0
apicid:              0
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              0
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/1
online:              1
initial_apicid:      2
apicid:              2
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             1
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              2
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/2
online:              1
initial_apicid:      4
apicid:              4
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             2
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              4
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/3
online:              1
initial_apicid:      6
apicid:              6
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             3
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              6
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/4
online:              1
initial_apicid:      8
apicid:              8
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             4
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              8
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/5
online:              1
initial_apicid:      a
apicid:              a
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             5
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              10
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/6
online:              1
initial_apicid:      10
apicid:              10
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             8
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              16
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/7
online:              1
initial_apicid:      12
apicid:              12
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             9
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              18
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/8
online:              1
initial_apicid:      14
apicid:              14
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             10
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              20
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/9
online:              1
initial_apicid:      16
apicid:              16
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             11
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              22
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/10
online:              1
initial_apicid:      18
apicid:              18
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             12
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              24
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/11
online:              1
initial_apicid:      1a
apicid:              1a
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             13
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              26
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/12
online:              1
initial_apicid:      20
apicid:              20
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              32
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/13
online:              1
initial_apicid:      22
apicid:              22
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             1
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              34
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/14
online:              1
initial_apicid:      24
apicid:              24
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             2
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              36
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/15
online:              1
initial_apicid:      26
apicid:              26
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             3
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              38
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/16
online:              1
initial_apicid:      28
apicid:              28
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             4
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              40
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/17
online:              1
initial_apicid:      2a
apicid:              2a
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             5
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              42
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/18
online:              1
initial_apicid:      30
apicid:              30
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             8
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              48
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/19
online:              1
initial_apicid:      32
apicid:              32
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             9
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              50
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/20
online:              1
initial_apicid:      34
apicid:              34
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             10
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              52
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/21
online:              1
initial_apicid:      36
apicid:              36
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             11
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              54
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/22
online:              1
initial_apicid:      38
apicid:              38
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             12
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              56
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/23
online:              1
initial_apicid:      3a
apicid:              3a
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             13
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              58
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/24
online:              1
initial_apicid:      1
apicid:              1
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              0
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/25
online:              1
initial_apicid:      3
apicid:              3
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             1
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              2
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/26
online:              1
initial_apicid:      5
apicid:              5
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             2
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              4
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/27
online:              1
initial_apicid:      7
apicid:              7
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             3
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              6
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/28
online:              1
initial_apicid:      9
apicid:              9
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             4
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              8
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/29
online:              1
initial_apicid:      b
apicid:              b
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             5
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              10
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/30
online:              1
initial_apicid:      11
apicid:              11
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             8
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              16
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/31
online:              1
initial_apicid:      13
apicid:              13
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             9
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              18
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/32
online:              1
initial_apicid:      15
apicid:              15
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             10
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              20
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/33
online:              1
initial_apicid:      17
apicid:              17
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             11
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              22
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/34
online:              1
initial_apicid:      19
apicid:              19
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             12
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              24
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/35
online:              1
initial_apicid:      1b
apicid:              1b
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             13
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              26
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/36
online:              1
initial_apicid:      21
apicid:              21
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              32
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/37
online:              1
initial_apicid:      23
apicid:              23
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             1
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              34
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/38
online:              1
initial_apicid:      25
apicid:              25
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             2
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              36
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/39
online:              1
initial_apicid:      27
apicid:              27
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             3
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              38
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/40
online:              1
initial_apicid:      29
apicid:              29
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             4
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              40
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/41
online:              1
initial_apicid:      2b
apicid:              2b
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             5
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              42
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/42
online:              1
initial_apicid:      31
apicid:              31
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             8
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              48
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/43
online:              1
initial_apicid:      33
apicid:              33
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             9
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              50
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/44
online:              1
initial_apicid:      35
apicid:              35
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             10
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              52
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/45
online:              1
initial_apicid:      37
apicid:              37
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             11
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              54
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/46
online:              1
initial_apicid:      39
apicid:              39
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             12
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              56
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2

/sys/kernel/debug/x86/topo/cpus/47
online:              1
initial_apicid:      3b
apicid:              3b
pkg_id:              1
die_id:              0
cu_id:               255
core_id:             13
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              58
max_cores:           12
max_die_per_pkg:     1
smp_num_siblings:    2


[-- Attachment #1.1.5: topo_cpus_SORTED_6_9_2.txt --]
[-- Type: text/plain, Size: 20812 bytes --]

/sys/kernel/debug/x86/topo/cpus/0
online:              1
initial_apicid:      0
apicid:              0
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              0
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/1
online:              1
initial_apicid:      2
apicid:              2
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              2
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/2
online:              1
initial_apicid:      4
apicid:              4
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              4
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/3
online:              1
initial_apicid:      6
apicid:              6
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              6
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/4
online:              1
initial_apicid:      8
apicid:              8
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              8
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/5
online:              1
initial_apicid:      a
apicid:              a
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              10
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/6
online:              1
initial_apicid:      10
apicid:              10
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              16
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/7
online:              1
initial_apicid:      12
apicid:              12
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              18
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/8
online:              1
initial_apicid:      14
apicid:              14
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              20
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/9
online:              1
initial_apicid:      16
apicid:              16
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              22
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/10
online:              1
initial_apicid:      18
apicid:              18
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              24
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/11
online:              1
initial_apicid:      1a
apicid:              1a
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              26
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/12
online:              1
initial_apicid:      20
apicid:              20
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              32
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/13
online:              1
initial_apicid:      22
apicid:              22
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              34
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/14
online:              1
initial_apicid:      24
apicid:              24
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              36
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/15
online:              1
initial_apicid:      26
apicid:              26
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              38
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/16
online:              1
initial_apicid:      28
apicid:              28
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              40
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/17
online:              1
initial_apicid:      2a
apicid:              2a
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              42
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/18
online:              1
initial_apicid:      30
apicid:              30
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              48
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/19
online:              1
initial_apicid:      32
apicid:              32
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              50
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/20
online:              1
initial_apicid:      34
apicid:              34
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              52
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/21
online:              1
initial_apicid:      36
apicid:              36
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              54
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/22
online:              1
initial_apicid:      38
apicid:              38
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              56
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/23
online:              1
initial_apicid:      3a
apicid:              3a
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              58
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/24
online:              1
initial_apicid:      1
apicid:              1
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              0
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/25
online:              1
initial_apicid:      3
apicid:              3
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              2
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/26
online:              1
initial_apicid:      5
apicid:              5
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              4
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/27
online:              1
initial_apicid:      7
apicid:              7
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              6
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/28
online:              1
initial_apicid:      9
apicid:              9
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              8
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/29
online:              1
initial_apicid:      b
apicid:              b
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              10
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/30
online:              1
initial_apicid:      11
apicid:              11
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              16
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/31
online:              1
initial_apicid:      13
apicid:              13
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              18
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/32
online:              1
initial_apicid:      15
apicid:              15
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              20
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/33
online:              1
initial_apicid:      17
apicid:              17
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              22
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/34
online:              1
initial_apicid:      19
apicid:              19
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              24
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/35
online:              1
initial_apicid:      1b
apicid:              1b
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              26
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/36
online:              1
initial_apicid:      21
apicid:              21
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              32
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/37
online:              1
initial_apicid:      23
apicid:              23
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              34
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/38
online:              1
initial_apicid:      25
apicid:              25
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              36
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/39
online:              1
initial_apicid:      27
apicid:              27
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              38
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/40
online:              1
initial_apicid:      29
apicid:              29
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              40
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/41
online:              1
initial_apicid:      2b
apicid:              2b
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              42
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/42
online:              1
initial_apicid:      31
apicid:              31
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              48
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/43
online:              1
initial_apicid:      33
apicid:              33
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              50
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/44
online:              1
initial_apicid:      35
apicid:              35
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              52
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/45
online:              1
initial_apicid:      37
apicid:              37
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              54
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/46
online:              1
initial_apicid:      39
apicid:              39
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              56
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24

/sys/kernel/debug/x86/topo/cpus/47
online:              1
initial_apicid:      3b
apicid:              3b
pkg_id:              1
die_id:              1
cu_id:               255
core_id:             0
logical_pkg_id:      1
logical_die_id:      1
llc_id:              32
l2c_id:              58
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         24
num_cores:           1
max_dies_per_pkg:    1
max_threads_per_core:24


[-- Attachment #1.1.6: cpuinfo_6_8_11.txt --]
[-- Type: text/plain, Size: 60370 bytes --]

processor	: 0
vendor_id	: GenuineIntel
cpu family	: 6
model		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 0
cpu cores	: 12
apicid		: 0
initial apicid	: 0
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 1
cpu cores	: 12
apicid		: 2
initial apicid	: 2
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 2
cpu cores	: 12
apicid		: 4
initial apicid	: 4
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 3
cpu cores	: 12
apicid		: 6
initial apicid	: 6
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 4
cpu cores	: 12
apicid		: 8
initial apicid	: 8
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 5
cpu cores	: 12
apicid		: 10
initial apicid	: 10
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 8
cpu cores	: 12
apicid		: 16
initial apicid	: 16
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 9
cpu cores	: 12
apicid		: 18
initial apicid	: 18
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 10
cpu cores	: 12
apicid		: 20
initial apicid	: 20
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 11
cpu cores	: 12
apicid		: 22
initial apicid	: 22
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 12
cpu cores	: 12
apicid		: 24
initial apicid	: 24
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 13
cpu cores	: 12
apicid		: 26
initial apicid	: 26
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 0
cpu cores	: 12
apicid		: 32
initial apicid	: 32
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 1
cpu cores	: 12
apicid		: 34
initial apicid	: 34
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 2
cpu cores	: 12
apicid		: 36
initial apicid	: 36
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 3
cpu cores	: 12
apicid		: 38
initial apicid	: 38
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 4
cpu cores	: 12
apicid		: 40
initial apicid	: 40
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 5
cpu cores	: 12
apicid		: 42
initial apicid	: 42
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 8
cpu cores	: 12
apicid		: 48
initial apicid	: 48
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 9
cpu cores	: 12
apicid		: 50
initial apicid	: 50
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 10
cpu cores	: 12
apicid		: 52
initial apicid	: 52
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 11
cpu cores	: 12
apicid		: 54
initial apicid	: 54
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 12
cpu cores	: 12
apicid		: 56
initial apicid	: 56
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 13
cpu cores	: 12
apicid		: 58
initial apicid	: 58
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 0
cpu cores	: 12
apicid		: 1
initial apicid	: 1
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 1
cpu cores	: 12
apicid		: 3
initial apicid	: 3
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 2
cpu cores	: 12
apicid		: 5
initial apicid	: 5
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 3
cpu cores	: 12
apicid		: 7
initial apicid	: 7
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 4
cpu cores	: 12
apicid		: 9
initial apicid	: 9
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 5
cpu cores	: 12
apicid		: 11
initial apicid	: 11
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 8
cpu cores	: 12
apicid		: 17
initial apicid	: 17
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 9
cpu cores	: 12
apicid		: 19
initial apicid	: 19
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 10
cpu cores	: 12
apicid		: 21
initial apicid	: 21
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 11
cpu cores	: 12
apicid		: 23
initial apicid	: 23
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 12
cpu cores	: 12
apicid		: 25
initial apicid	: 25
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 13
cpu cores	: 12
apicid		: 27
initial apicid	: 27
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 0
cpu cores	: 12
apicid		: 33
initial apicid	: 33
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 1
cpu cores	: 12
apicid		: 35
initial apicid	: 35
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 2
cpu cores	: 12
apicid		: 37
initial apicid	: 37
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 3
cpu cores	: 12
apicid		: 39
initial apicid	: 39
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 4
cpu cores	: 12
apicid		: 41
initial apicid	: 41
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 5
cpu cores	: 12
apicid		: 43
initial apicid	: 43
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 8
cpu cores	: 12
apicid		: 49
initial apicid	: 49
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 9
cpu cores	: 12
apicid		: 51
initial apicid	: 51
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 10
cpu cores	: 12
apicid		: 53
initial apicid	: 53
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 11
cpu cores	: 12
apicid		: 55
initial apicid	: 55
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 12
cpu cores	: 12
apicid		: 57
initial apicid	: 57
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 13
cpu cores	: 12
apicid		: 59
initial apicid	: 59
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.97
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:


[-- Attachment #1.1.7: cpuinfo_6_9_2.txt --]
[-- Type: text/plain, Size: 59836 bytes --]

processor	: 0
vendor_id	: GenuineIntel
cpu family	: 6
model		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 0
initial apicid	: 0
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 2
initial apicid	: 2
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 4
initial apicid	: 4
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 6
initial apicid	: 6
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 8
initial apicid	: 8
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 10
initial apicid	: 10
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 16
initial apicid	: 16
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 18
initial apicid	: 18
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 20
initial apicid	: 20
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 22
initial apicid	: 22
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 24
initial apicid	: 24
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 26
initial apicid	: 26
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 32
initial apicid	: 32
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 34
initial apicid	: 34
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 36
initial apicid	: 36
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 38
initial apicid	: 38
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 40
initial apicid	: 40
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 42
initial apicid	: 42
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 48
initial apicid	: 48
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 50
initial apicid	: 50
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 52
initial apicid	: 52
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 54
initial apicid	: 54
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 56
initial apicid	: 56
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 58
initial apicid	: 58
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 1
initial apicid	: 1
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 3
initial apicid	: 3
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 5
initial apicid	: 5
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 7
initial apicid	: 7
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 9
initial apicid	: 9
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 11
initial apicid	: 11
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 17
initial apicid	: 17
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 19
initial apicid	: 19
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 21
initial apicid	: 21
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 23
initial apicid	: 23
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 25
initial apicid	: 25
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 0
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 27
initial apicid	: 27
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 33
initial apicid	: 33
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 35
initial apicid	: 35
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 37
initial apicid	: 37
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 39
initial apicid	: 39
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 41
initial apicid	: 41
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 43
initial apicid	: 43
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 49
initial apicid	: 49
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 51
initial apicid	: 51
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 53
initial apicid	: 53
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 55
initial apicid	: 55
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 57
initial apicid	: 57
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
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		: 62
model name	: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz
stepping	: 4
microcode	: 0x424
cpu MHz		: 3500.000
cache size	: 30720 KB
physical id	: 1
siblings	: 24
core id		: 0
cpu cores	: 1
apicid		: 59
initial apicid	: 59
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
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 arch_perfmon pebs bts rep_good nopl nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault epb pti tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi
vmx flags	: vnmi preemption_timer posted_intr invvpid ept_x_only ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple
bugs		: cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds swapgs itlb_multihit mmio_unknown
bogomips	: 5399.77
clflush size	: 64
cache_alignment	: 64
address sizes	: 46 bits physical, 48 bits virtual
power management:


[-- Attachment #1.1.8: cpuid.txt --]
[-- Type: text/plain, Size: 1261046 bytes --]

CPU 0:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x0 (0)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 0
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=0 SMT_ID=0
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 1:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x2 (2)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 2
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=1 SMT_ID=0
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 2:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x4 (4)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 4
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=2 SMT_ID=0
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 3:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x6 (6)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 6
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=3 SMT_ID=0
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 4:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x8 (8)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 8
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=4 SMT_ID=0
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 5:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0xa (10)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 10
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=5 SMT_ID=0
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 6:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x10 (16)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 16
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=8 SMT_ID=0
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 7:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x12 (18)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 18
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=9 SMT_ID=0
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 8:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x14 (20)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 20
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=10 SMT_ID=0
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 9:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x16 (22)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 22
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=11 SMT_ID=0
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 10:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x18 (24)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 24
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=12 SMT_ID=0
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 11:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x1a (26)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 26
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=13 SMT_ID=0
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 12:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x20 (32)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 32
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=16 SMT_ID=0
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 13:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x22 (34)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 34
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=17 SMT_ID=0
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 14:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x24 (36)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 36
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=18 SMT_ID=0
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 15:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x26 (38)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 38
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=19 SMT_ID=0
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 16:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x28 (40)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 40
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=20 SMT_ID=0
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 17:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x2a (42)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 42
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=21 SMT_ID=0
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 18:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x30 (48)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 48
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=24 SMT_ID=0
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 19:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x32 (50)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 50
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=25 SMT_ID=0
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 20:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x34 (52)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 52
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=26 SMT_ID=0
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 21:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x36 (54)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 54
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=27 SMT_ID=0
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 22:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x38 (56)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 56
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=28 SMT_ID=0
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 23:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x3a (58)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 58
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=29 SMT_ID=0
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 24:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x1 (1)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 1
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=0 SMT_ID=1
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 25:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x3 (3)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 3
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=1 SMT_ID=1
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 26:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x5 (5)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 5
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=2 SMT_ID=1
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 27:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x7 (7)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 7
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=3 SMT_ID=1
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 28:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x9 (9)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 9
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=4 SMT_ID=1
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 29:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0xb (11)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 11
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=5 SMT_ID=1
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 30:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x11 (17)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 17
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=8 SMT_ID=1
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 31:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x13 (19)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 19
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=9 SMT_ID=1
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 32:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x15 (21)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 21
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=10 SMT_ID=1
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 33:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x17 (23)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 23
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=11 SMT_ID=1
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 34:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x19 (25)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 25
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=12 SMT_ID=1
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 35:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x1b (27)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 27
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=13 SMT_ID=1
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 36:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x21 (33)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 33
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=16 SMT_ID=1
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 37:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x23 (35)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 35
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=17 SMT_ID=1
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 38:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x25 (37)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 37
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=18 SMT_ID=1
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 39:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x27 (39)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 39
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=19 SMT_ID=1
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 40:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x29 (41)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 41
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=20 SMT_ID=1
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 41:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x2b (43)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 43
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=21 SMT_ID=1
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 42:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x31 (49)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 49
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=24 SMT_ID=1
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 43:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x33 (51)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 51
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=25 SMT_ID=1
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 44:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x35 (53)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 53
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=26 SMT_ID=1
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 45:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x37 (55)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 55
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=27 SMT_ID=1
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 46:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x39 (57)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 57
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=28 SMT_ID=1
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
CPU 47:
   vendor_id = "GenuineIntel"
   version information (1/eax):
      processor type  = primary processor (0)
      family          = 0x6 (6)
      model           = 0xe (14)
      stepping id     = 0x4 (4)
      extended family = 0x0 (0)
      extended model  = 0x3 (3)
      (family synth)  = 0x6 (6)
      (model synth)   = 0x3e (62)
      (simple synth)  = Intel Core (unknown type) (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm
   miscellaneous (1/ebx):
      process local APIC physical ID = 0x3b (59)
      maximum IDs for CPUs in pkg    = 0x20 (32)
      CLFLUSH line size              = 0x8 (8)
      brand index                    = 0x0 (0)
   brand id = 0x00 (0): unknown
   feature information (1/edx):
      x87 FPU on chip                        = true
      VME: virtual-8086 mode enhancement     = true
      DE: debugging extensions               = true
      PSE: page size extensions              = true
      TSC: time stamp counter                = true
      RDMSR and WRMSR support                = true
      PAE: physical address extensions       = true
      MCE: machine check exception           = true
      CMPXCHG8B inst.                        = true
      APIC on chip                           = true
      SYSENTER and SYSEXIT                   = true
      MTRR: memory type range registers      = true
      PTE global bit                         = true
      MCA: machine check architecture        = true
      CMOV: conditional move/compare instr   = true
      PAT: page attribute table              = true
      PSE-36: page size extension            = true
      PSN: processor serial number           = false
      CLFLUSH instruction                    = true
      DS: debug store                        = true
      ACPI: thermal monitor and clock ctrl   = true
      MMX Technology                         = true
      FXSAVE/FXRSTOR                         = true
      SSE extensions                         = true
      SSE2 extensions                        = true
      SS: self snoop                         = true
      hyper-threading / multi-core supported = true
      TM: therm. monitor                     = true
      IA64                                   = false
      PBE: pending break event               = true
   feature information (1/ecx):
      PNI/SSE3: Prescott New Instructions     = true
      PCLMULDQ instruction                    = true
      DTES64: 64-bit debug store              = true
      MONITOR/MWAIT                           = true
      CPL-qualified debug store               = true
      VMX: virtual machine extensions         = true
      SMX: safer mode extensions              = true
      Enhanced Intel SpeedStep Technology     = true
      TM2: thermal monitor 2                  = true
      SSSE3 extensions                        = true
      context ID: adaptive or shared L1 data  = false
      SDBG: IA32_DEBUG_INTERFACE              = false
      FMA instruction                         = false
      CMPXCHG16B instruction                  = true
      xTPR disable                            = true
      PDCM: perfmon and debug                 = true
      PCID: process context identifiers       = true
      DCA: direct cache access                = true
      SSE4.1 extensions                       = true
      SSE4.2 extensions                       = true
      x2APIC: extended xAPIC support          = true
      MOVBE instruction                       = false
      POPCNT instruction                      = true
      time stamp counter deadline             = true
      AES instruction                         = true
      XSAVE/XSTOR states                      = true
      OS-enabled XSAVE/XSTOR                  = true
      AVX: advanced vector extensions         = true
      F16C half-precision convert instruction = true
      RDRAND instruction                      = true
      hypervisor guest status                 = false
   cache and TLB information (2):
      0x63: data TLB: 2M/4M pages, 4-way, 32 entries
            data TLB: 1G pages, 4-way, 4 entries
      0x03: data TLB: 4K pages, 4-way, 64 entries
      0x76: instruction TLB: 2M/4M pages, fully, 8 entries
      0xff: cache data is in CPUID leaf 4
      0xb2: instruction TLB: 4K, 4-way, 64 entries
      0xf0: 64 byte prefetching
      0xca: L2 TLB: 4K pages, 4-way, 512 entries
   processor serial number = 0003-06E4-0000-0000-0000-0000
   deterministic cache parameters (4):
      --- cache 0 ---
      cache type                         = data cache (1)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 1 ---
      cache type                         = instruction cache (2)
      cache level                        = 0x1 (1)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x40 (64)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 64
      (size synth)                       = 32768 (32 KB)
      --- cache 2 ---
      cache type                         = unified cache (3)
      cache level                        = 0x2 (2)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1 (1)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x8 (8)
      number of sets                     = 0x200 (512)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = false
      complex cache indexing             = false
      number of sets (s)                 = 512
      (size synth)                       = 262144 (256 KB)
      --- cache 3 ---
      cache type                         = unified cache (3)
      cache level                        = 0x3 (3)
      self-initializing cache level      = true
      fully associative cache            = false
      maximum IDs for CPUs sharing cache = 0x1f (31)
      maximum IDs for cores in pkg       = 0xf (15)
      system coherency line size         = 0x40 (64)
      physical line partitions           = 0x1 (1)
      ways of associativity              = 0x14 (20)
      number of sets                     = 0x6000 (24576)
      WBINVD/INVD acts on lower caches   = false
      inclusive to lower caches          = true
      complex cache indexing             = true
      number of sets (s)                 = 24576
      (size synth)                       = 31457280 (30 MB)
      --- cache 4 ---
      cache type                         = no more caches (0)
   MONITOR/MWAIT (5):
      smallest monitor-line size (bytes)       = 0x40 (64)
      largest monitor-line size (bytes)        = 0x40 (64)
      enum of Monitor-MWAIT exts supported     = true
      supports intrs as break-event for MWAIT  = true
      number of C0 sub C-states using MWAIT    = 0x0 (0)
      number of C1 sub C-states using MWAIT    = 0x2 (2)
      number of C2 sub C-states using MWAIT    = 0x1 (1)
      number of C3 sub C-states using MWAIT    = 0x1 (1)
      number of C4 sub C-states using MWAIT    = 0x0 (0)
      number of C5 sub C-states using MWAIT    = 0x0 (0)
      number of C6 sub C-states using MWAIT    = 0x0 (0)
      number of C7 sub C-states using MWAIT    = 0x0 (0)
   Thermal and Power Management Features (6):
      digital thermometer                     = true
      Intel Turbo Boost Technology            = true
      ARAT always running APIC timer          = true
      PLN power limit notification            = true
      ECMD extended clock modulation duty     = true
      PTM package thermal management          = true
      HWP base registers                      = false
      HWP notification                        = false
      HWP activity window                     = false
      HWP energy performance preference       = false
      HWP package level request               = false
      HDC base registers                      = false
      Intel Turbo Boost Max Technology 3.0    = false
      HWP capabilities                        = false
      HWP PECI override                       = false
      flexible HWP                            = false
      IA32_HWP_REQUEST MSR fast access mode   = false
      HW_FEEDBACK MSRs supported              = false
      ignoring idle logical processor HWP req = false
      Thread Director                         = false
      IA32_HW_FEEDBACK_THREAD_CONFIG bit 25   = false
      digital thermometer thresholds          = 0x2 (2)
      hardware coordination feedback          = true
      ACNT2 available                         = false
      performance-energy bias capability      = true
      number of enh hardware feedback classes = 0x0 (0)
      performance capability reporting        = false
      energy efficiency capability reporting  = false
      size of feedback struct (4KB pages)     = 0x1 (1)
      index of CPU's row in feedback struct   = 0x0 (0)
   extended feature flags (7):
      FSGSBASE instructions                    = true
      IA32_TSC_ADJUST MSR supported            = false
      SGX: Software Guard Extensions supported = false
      BMI1 instructions                        = false
      HLE hardware lock elision                = false
      AVX2: advanced vector extensions 2       = false
      FDP_EXCPTN_ONLY                          = false
      SMEP supervisor mode exec protection     = true
      BMI2 instructions                        = false
      enhanced REP MOVSB/STOSB                 = true
      INVPCID instruction                      = false
      RTM: restricted transactional memory     = false
      RDT-CMT/PQoS cache monitoring            = false
      deprecated FPU CS/DS                     = false
      MPX: intel memory protection extensions  = false
      RDT-CAT/PQE cache allocation             = false
      AVX512F: AVX-512 foundation instructions = false
      AVX512DQ: double & quadword instructions = false
      RDSEED instruction                       = false
      ADX instructions                         = false
      SMAP: supervisor mode access prevention  = false
      AVX512IFMA: integer fused multiply add   = false
      PCOMMIT instruction                      = false
      CLFLUSHOPT instruction                   = false
      CLWB instruction                         = false
      Intel processor trace                    = false
      AVX512PF: prefetch instructions          = false
      AVX512ER: exponent & reciprocal instrs   = false
      AVX512CD: conflict detection instrs      = false
      SHA instructions                         = false
      AVX512BW: byte & word instructions       = false
      AVX512VL: vector length                  = false
      PREFETCHWT1                              = false
      AVX512VBMI: vector byte manipulation     = false
      UMIP: user-mode instruction prevention   = false
      PKU protection keys for user-mode        = false
      OSPKE CR4.PKE and RDPKRU/WRPKRU          = false
      WAITPKG instructions                     = false
      AVX512_VBMI2: byte VPCOMPRESS, VPEXPAND  = false
      CET_SS: CET shadow stack                 = false
      GFNI: Galois Field New Instructions      = false
      VAES instructions                        = false
      VPCLMULQDQ instruction                   = false
      AVX512_VNNI: neural network instructions = false
      AVX512_BITALG: bit count/shiffle         = false
      TME: Total Memory Encryption             = false
      AVX512: VPOPCNTDQ instruction            = false
      LA57: 57-bit addrs & 5-level paging      = false
      BNDLDX/BNDSTX MAWAU value in 64-bit mode = 0x0 (0)
      RDPID: read processor ID supported       = false
      KL: key locker                           = false
      bus lock detection                       = false
      CLDEMOTE supports cache line demote      = false
      MOVDIRI instruction                      = false
      MOVDIR64B instruction                    = false
      ENQCMD instruction                       = false
      SGX_LC: SGX launch config supported      = false
      PKS: supervisor protection keys          = false
      SGX-KEYS: SGX attestation services       = false
      AVX512_4VNNIW: neural network instrs     = false
      AVX512_4FMAPS: multiply acc single prec  = false
      fast short REP MOV                       = false
      UINTR: user interrupts                   = false
      AVX512_VP2INTERSECT: intersect mask regs = false
      IA32_MCU_OPT_CTRL SRBDS mitigation MSR   = false
      VERW MD_CLEAR microcode support          = false
      RTM transaction always aborts            = false
      IA32_TSX_FORCE_ABORT MSR                 = false
      SERIALIZE instruction                    = false
      hybrid part                              = false
      TSXLDTRK: TSX suspend load addr tracking = false
      PCONFIG instruction                      = false
      LBR: architectural last branch records   = false
      CET_IBT: CET indirect branch tracking    = false
      AMX-BF16: tile bfloat16 support          = false
      AVX512_FP16: fp16 support                = false
      AMX-TILE: tile architecture support      = false
      AMX-INT8: tile 8-bit integer support     = false
      IBRS/IBPB: indirect branch restrictions  = false
      STIBP: 1 thr indirect branch predictor   = false
      L1D_FLUSH: IA32_FLUSH_CMD MSR            = false
      IA32_ARCH_CAPABILITIES MSR               = false
      IA32_CORE_CAPABILITIES MSR               = false
      SSBD: speculative store bypass disable   = false
   Direct Cache Access Parameters (9):
      PLATFORM_DCA_CAP MSR bits = 1
   Architecture Performance Monitoring Features (0xa):
      version ID                               = 0x3 (3)
      number of counters per logical processor = 0x4 (4)
      bit width of counter                     = 0x30 (48)
      length of EBX bit vector                 = 0x7 (7)
      core cycle event                         = available
      instruction retired event                = available
      reference cycles event                   = available
      last-level cache ref event               = available
      last-level cache miss event              = available
      branch inst retired event                = available
      branch mispred retired event             = available
      top-down slots event                     = not available
      fixed counter  0 supported               = false
      fixed counter  1 supported               = false
      fixed counter  2 supported               = false
      fixed counter  3 supported               = false
      fixed counter  4 supported               = false
      fixed counter  5 supported               = false
      fixed counter  6 supported               = false
      fixed counter  7 supported               = false
      fixed counter  8 supported               = false
      fixed counter  9 supported               = false
      fixed counter 10 supported               = false
      fixed counter 11 supported               = false
      fixed counter 12 supported               = false
      fixed counter 13 supported               = false
      fixed counter 14 supported               = false
      fixed counter 15 supported               = false
      fixed counter 16 supported               = false
      fixed counter 17 supported               = false
      fixed counter 18 supported               = false
      fixed counter 19 supported               = false
      fixed counter 20 supported               = false
      fixed counter 21 supported               = false
      fixed counter 22 supported               = false
      fixed counter 23 supported               = false
      fixed counter 24 supported               = false
      fixed counter 25 supported               = false
      fixed counter 26 supported               = false
      fixed counter 27 supported               = false
      fixed counter 28 supported               = false
      fixed counter 29 supported               = false
      fixed counter 30 supported               = false
      fixed counter 31 supported               = false
      number of contiguous fixed counters      = 0x3 (3)
      bit width of fixed counters              = 0x30 (48)
      anythread deprecation                    = false
   x2APIC features / processor topology (0xb):
      extended APIC ID                      = 59
      --- level 0 ---
      level number                          = 0x0 (0)
      level type                            = thread (1)
      bit width of level                    = 0x1 (1)
      number of logical processors at level = 0x2 (2)
      --- level 1 ---
      level number                          = 0x1 (1)
      level type                            = core (2)
      bit width of level                    = 0x5 (5)
      number of logical processors at level = 0x18 (24)
      --- level 2 ---
      level number                          = 0x2 (2)
      level type                            = invalid (0)
      bit width of level                    = 0x0 (0)
      number of logical processors at level = 0x0 (0)
   XSAVE features (0xd/0):
      XCR0 valid bit field mask               = 0x0000000000000007
         x87 state                            = true
         SSE state                            = true
         AVX state                            = true
         MPX BNDREGS                          = false
         MPX BNDCSR                           = false
         AVX-512 opmask                       = false
         AVX-512 ZMM_Hi256                    = false
         AVX-512 Hi16_ZMM                     = false
         PKRU state                           = false
         XTILECFG state                       = false
         XTILEDATA state                      = false
      bytes required by fields in XCR0        = 0x00000340 (832)
      bytes required by XSAVE/XRSTOR area     = 0x00000340 (832)
      XSAVEOPT instruction                    = true
      XSAVEC instruction                      = false
      XGETBV instruction                      = false
      XSAVES/XRSTORS instructions             = false
      XFD: extended feature disable supported = false
      SAVE area size in bytes                 = 0x00000000 (0)
      IA32_XSS valid bit field mask           = 0x0000000000000000
         PT state                             = false
         PASID state                          = false
         CET_U user state                     = false
         CET_S supervisor state               = false
         HDC state                            = false
         UINTR state                          = false
         LBR state                            = false
         HWP state                            = false
   AVX/YMM features (0xd/2):
      AVX/YMM save state byte size             = 0x00000100 (256)
      AVX/YMM save state byte offset           = 0x00000240 (576)
      supported in IA32_XSS or XCR0            = XCR0 (user state)
      64-byte alignment in compacted XSAVE     = false
      XFD faulting supported                   = false
   extended feature flags (0x80000001/edx):
      SYSCALL and SYSRET instructions        = true
      execution disable                      = true
      1-GB large page support                = true
      RDTSCP                                 = true
      64-bit extensions technology available = true
   Intel feature flags (0x80000001/ecx):
      LAHF/SAHF supported in 64-bit mode     = true
      LZCNT advanced bit manipulation        = false
      3DNow! PREFETCH/PREFETCHW instructions = false
   brand = "      Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz"
   L1 TLB/cache information: 2M/4M pages & L1 TLB (0x80000005/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 TLB/cache information: 4K pages & L1 TLB (0x80000005/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = 0x0 (0)
      data # entries            = 0x0 (0)
      data associativity        = 0x0 (0)
   L1 data cache information (0x80000005/ecx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L1 instruction cache information (0x80000005/edx):
      line size (bytes) = 0x0 (0)
      lines per tag     = 0x0 (0)
      associativity     = 0x0 (0)
      size (KB)         = 0x0 (0)
   L2 TLB/cache information: 2M/4M pages & L2 TLB (0x80000006/eax):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 TLB/cache information: 4K pages & L2 TLB (0x80000006/ebx):
      instruction # entries     = 0x0 (0)
      instruction associativity = L2 off (0)
      data # entries            = 0x0 (0)
      data associativity        = L2 off (0)
   L2 unified cache information (0x80000006/ecx):
      line size (bytes) = 0x40 (64)
      lines per tag     = 0x0 (0)
      associativity     = 8 to 15-way (6)
      size (KB)         = 0x100 (256)
   L3 cache information (0x80000006/edx):
      line size (bytes)     = 0x0 (0)
      lines per tag         = 0x0 (0)
      associativity         = L2 off (0)
      size (in 512KB units) = 0x0 (0)
   RAS Capability (0x80000007/ebx):
      MCA overflow recovery support = false
      SUCCOR support                = false
      HWA: hardware assert support  = false
      scalable MCA support          = false
   Advanced Power Management Features (0x80000007/ecx):
      CmpUnitPwrSampleTimeRatio = 0x0 (0)
   Advanced Power Management Features (0x80000007/edx):
      TS: temperature sensing diode           = false
      FID: frequency ID control               = false
      VID: voltage ID control                 = false
      TTP: thermal trip                       = false
      TM: thermal monitor                     = false
      STC: software thermal control           = false
      100 MHz multiplier control              = false
      hardware P-State control                = false
      TscInvariant                            = true
      CPB: core performance boost             = false
      read-only effective frequency interface = false
      processor feedback interface            = false
      APM power reporting                     = false
      connected standby                       = false
      RAPL: running average power limit       = false
   Physical Address and Linear Address Size (0x80000008/eax):
      maximum physical address bits         = 0x2e (46)
      maximum linear (virtual) address bits = 0x30 (48)
      maximum guest physical address bits   = 0x0 (0)
   Extended Feature Extensions ID (0x80000008/ebx):
      CLZERO instruction                       = false
      instructions retired count support       = false
      always save/restore error pointers       = false
      INVLPGB instruction                      = false
      RDPRU instruction                        = false
      memory bandwidth enforcement             = false
      MCOMMIT instruction                      = false
      WBNOINVD instruction                     = false
      IBPB: indirect branch prediction barrier = false
      interruptible WBINVD, WBNOINVD           = false
      IBRS: indirect branch restr speculation  = false
      STIBP: 1 thr indirect branch predictor   = false
      CPU prefers: IBRS always on              = false
      CPU prefers: STIBP always on             = false
      IBRS preferred over software solution    = false
      IBRS provides same mode protection       = false
      EFER[LMSLE] not supported                = false
      INVLPGB supports TLB flush guest nested  = false
      ppin processor id number supported       = false
      SSBD: speculative store bypass disable   = false
      virtualized SSBD                         = false
      SSBD fixed in hardware                   = false
      CPPC: collaborative processor perf ctrl  = false
      PSFD: predictive store forward disable   = false
      not vulnerable to branch type confusion  = false
      branch sampling feature support          = false
      (vuln to branch type confusion synth)    = true
   Size Identifiers (0x80000008/ecx):
      number of CPU cores                 = 0x1 (1)
      ApicIdCoreIdSize                    = 0x0 (0)
      performance time-stamp counter size = 40 bits (0)
   Feature Extended Size (0x80000008/edx):
      max page count for INVLPGB instruction = 0x0 (0)
      RDPRU instruction max input support    = 0x0 (0)
   (multi-processing synth) = multi-core (c=12), hyper-threaded (t=2)
   (multi-processing method) = Intel leaf 0xb
   (APIC widths synth): CORE_width=5 SMT_width=1
   (APIC synth): PKG_ID=0 CORE_ID=29 SMT_ID=1
   (uarch synth) = Intel Ivy Bridge {Sandy Bridge}, 22nm
   (synth) = Intel Xeon E5-1600/E5-2600 v2 (Ivy Bridge-EP C1/M1/S1) {Sandy Bridge}, 22nm

[-- Attachment #1.1.9: cpuid-r.txt --]
[-- Type: text/plain, Size: 130934 bytes --]

CPU 0:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x00200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000000
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000000
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000000
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 1:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x02200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000002
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000002
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000002
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 2:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x04200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000004
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000004
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000004
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 3:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x06200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000006
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000006
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000006
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 4:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x08200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000008
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000008
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000008
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 5:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x0a200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x0000000a
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x0000000a
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x0000000a
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 6:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x10200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000010
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000010
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000010
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 7:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x12200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000012
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000012
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000012
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 8:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x14200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000014
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000014
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000014
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 9:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x16200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000016
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000016
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000016
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 10:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x18200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000018
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000018
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000018
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 11:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x1a200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x0000001a
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x0000001a
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x0000001a
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 12:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x20200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000020
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000020
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000020
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 13:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x22200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000022
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000022
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000022
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 14:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x24200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000024
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000024
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000024
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 15:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x26200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000026
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000026
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000026
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 16:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x28200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000028
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000028
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000028
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 17:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x2a200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x0000002a
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x0000002a
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x0000002a
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 18:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x30200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000030
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000030
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000030
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 19:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x32200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000032
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000032
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000032
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 20:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x34200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000034
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000034
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000034
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 21:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x36200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000036
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000036
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000036
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 22:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x38200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000038
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000038
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000038
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 23:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x3a200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x0000003a
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x0000003a
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x0000003a
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 24:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x01200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000001
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000001
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000001
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 25:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x03200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000003
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000003
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000003
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 26:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x05200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000005
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000005
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000005
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 27:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x07200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000007
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000007
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000007
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 28:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x09200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000009
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000009
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000009
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 29:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x0b200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x0000000b
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x0000000b
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x0000000b
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 30:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x11200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000011
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000011
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000011
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 31:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x13200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000013
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000013
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000013
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 32:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x15200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000015
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000015
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000015
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 33:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x17200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000017
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000017
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000017
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 34:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x19200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000019
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000019
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000019
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 35:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x1b200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x0000001b
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x0000001b
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x0000001b
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 36:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x21200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000021
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000021
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000021
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 37:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x23200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000023
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000023
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000023
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 38:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x25200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000025
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000025
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000025
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 39:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x27200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000027
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000027
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000027
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 40:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x29200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000029
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000029
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000029
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 41:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x2b200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x0000002b
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x0000002b
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x0000002b
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 42:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x31200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000031
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000031
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000031
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 43:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x33200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000033
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000033
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000033
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 44:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x35200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000035
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000035
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000035
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 45:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x37200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000037
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000037
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000037
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 46:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x39200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000039
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x00000039
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000039
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
CPU 47:
   0x00000000 0x00: eax=0x0000000d ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000306e4 ebx=0x3b200800 ecx=0x7fbee3ff edx=0xbfebfbff
   0x00000002 0x00: eax=0x76036301 ebx=0x00f0b2ff ecx=0x00000000 edx=0x00ca0000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x3c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x3c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x3c004143 ebx=0x01c0003f ecx=0x000001ff edx=0x00000000
   0x00000004 0x03: eax=0x3c07c163 ebx=0x04c0003f ecx=0x00005fff edx=0x00000006
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x00001120
   0x00000006 0x00: eax=0x00000077 ebx=0x00000002 ecx=0x00000009 edx=0x00000000
   0x00000007 0x00: eax=0x00000000 ebx=0x00000281 ecx=0x00000000 edx=0x00000000
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300403 ebx=0x00000000 ecx=0x00000000 edx=0x00000603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x0000003b
   0x0000000b 0x01: eax=0x00000005 ebx=0x00000018 ecx=0x00000201 edx=0x0000003b
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x0000003b
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x0000000d 0x01: eax=0x00000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000001 edx=0x2c100800
   0x80000002 0x00: eax=0x20202020 ebx=0x6e492020 ecx=0x286c6574 edx=0x58202952
   0x80000003 0x00: eax=0x286e6f65 ebx=0x43202952 ecx=0x45205550 edx=0x36322d35
   0x80000004 0x00: eax=0x76203739 ebx=0x20402032 ecx=0x30372e32 edx=0x007a4847
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x01006040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x0000302e ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000
   0xc0000000 0x00: eax=0x00000007 ebx=0x00000340 ecx=0x00000340 edx=0x00000000

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 236 bytes --]

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: Kernel 6.9 regression: X86: Bogus messages from topology detection
  2024-05-27 21:06   ` Peter Schneider
@ 2024-05-27 21:15     ` Peter Schneider
  2024-05-27 21:34       ` Christian Heusel
  2024-05-30  8:30       ` Thomas Gleixner
  0 siblings, 2 replies; 29+ messages in thread
From: Peter Schneider @ 2024-05-27 21:15 UTC (permalink / raw)
  To: Thomas Gleixner; +Cc: LKML, x86, stable, regressions


[-- Attachment #1.1: Type: text/plain, Size: 1047 bytes --]

Thomas,

Am 27.05.2024 um 23:06 schrieb Peter Schneider:
 > Hello Thomas,
 >
 > thanks very much for looking into this issue!

[...]


I want to add one thing: there is a log entry in the dmesg output of a "bad" kernel, which 
I initially overlooked, because it is way up, and I noticed this just now. I guess this 
might be relevant:

[    1.683564] [Firmware Bug]: CPU0: Topology domain 0 shift 1 != 5

This does not appear in the 6.8 kernel dmesg.

What do you think?

Beste Grüße,
Peter Schneider

-- 
Climb the mountain not to plant your flag, but to embrace the challenge,
enjoy the air and behold the view. Climb it so you can see the world,
not so the world can see you.                    -- David McCullough Jr.

OpenPGP:  0xA3828BD796CCE11A8CADE8866E3A92C92C3FF244
Download: https://www.peters-netzplatz.de/download/pschneider1968_pub.asc
https://keys.mailvelope.com/pks/lookup?op=get&search=pschneider1968@googlemail.com
https://keys.mailvelope.com/pks/lookup?op=get&search=pschneider1968@gmail.com


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 236 bytes --]

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: Kernel 6.9 regression: X86: Bogus messages from topology detection
  2024-05-27 21:15     ` Peter Schneider
@ 2024-05-27 21:34       ` Christian Heusel
  2024-05-30  8:30       ` Thomas Gleixner
  1 sibling, 0 replies; 29+ messages in thread
From: Christian Heusel @ 2024-05-27 21:34 UTC (permalink / raw)
  To: Peter Schneider; +Cc: Thomas Gleixner, LKML, x86, stable, regressions

[-- Attachment #1: Type: text/plain, Size: 664 bytes --]

Hey Peter,

On 24/05/27 11:15PM, Peter Schneider wrote:
> 
> I want to add one thing: there is a log entry in the dmesg output of a "bad"
> kernel, which I initially overlooked, because it is way up, and I noticed
> this just now. I guess this might be relevant:
> 
> [    1.683564] [Firmware Bug]: CPU0: Topology domain 0 shift 1 != 5
> 
> This does not appear in the 6.8 kernel dmesg.
> 

I also can't comment on whether this is relevant or not, but I have
noticed this in more places:

    - https://bugzilla.kernel.org/show_bug.cgi?id=218879
    - https://gitlab.archlinux.org/archlinux/packaging/packages/linux/-/issues/57

Cheers,
Chris

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: Kernel 6.9 regression: X86: Bogus messages from topology detection
  2024-05-27 21:15     ` Peter Schneider
  2024-05-27 21:34       ` Christian Heusel
@ 2024-05-30  8:30       ` Thomas Gleixner
  2024-05-30 10:06         ` Peter Schneider
  1 sibling, 1 reply; 29+ messages in thread
From: Thomas Gleixner @ 2024-05-30  8:30 UTC (permalink / raw)
  To: Peter Schneider; +Cc: LKML, x86, stable, regressions

Peter!

On Mon, May 27 2024 at 23:15, Peter Schneider wrote:

Thanks for providing all the information!

> I want to add one thing: there is a log entry in the dmesg output of a "bad" kernel, which 
> I initially overlooked, because it is way up, and I noticed this just now. I guess this 
> might be relevant:
>
> [    1.683564] [Firmware Bug]: CPU0: Topology domain 0 shift 1 != 5

Yes. That's absolutely related. I can see what goes wrong, but I have
absolutely no idea how that happens.

Can you please apply the debug patch below ad provide the full dmesg
after boot?

Thanks,

        tglx
---
--- a/arch/x86/kernel/cpu/topology_common.c
+++ b/arch/x86/kernel/cpu/topology_common.c
@@ -65,6 +65,7 @@ static void parse_legacy(struct topo_sca
 		cores <<= smt_shift;
 	}
 
+	pr_info("Legacy: %u %u %u\n", c->cpuid_level, smt_shift, core_shift);
 	topology_set_dom(tscan, TOPO_SMT_DOMAIN, smt_shift, 1U << smt_shift);
 	topology_set_dom(tscan, TOPO_CORE_DOMAIN, core_shift, cores);
 }
--- a/arch/x86/kernel/cpu/topology_ext.c
+++ b/arch/x86/kernel/cpu/topology_ext.c
@@ -72,6 +72,9 @@ static inline bool topo_subleaf(struct t
 
 	cpuid_subleaf(leaf, subleaf, &sl);
 
+	pr_info("L:%0x %0x %0x S:%u N:%u T:%u\n", leaf, subleaf, sl.level, sl.x2apic_shift,
+		sl.num_processors, sl.type);
+
 	if (!sl.num_processors || sl.type == INVALID_TYPE)
 		return false;
 
@@ -97,6 +100,7 @@ static inline bool topo_subleaf(struct t
 			     leaf, subleaf, tscan->c->topo.initial_apicid, sl.x2apic_id);
 	}
 
+	pr_info("D: %u\n", dom);
 	topology_set_dom(tscan, dom, sl.x2apic_shift, sl.num_processors);
 	return true;
 }

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: Kernel 6.9 regression: X86: Bogus messages from topology detection
  2024-05-30  8:30       ` Thomas Gleixner
@ 2024-05-30 10:06         ` Peter Schneider
  2024-05-30 13:35           ` Thomas Gleixner
  0 siblings, 1 reply; 29+ messages in thread
From: Peter Schneider @ 2024-05-30 10:06 UTC (permalink / raw)
  To: Thomas Gleixner; +Cc: LKML, x86, stable, regressions


[-- Attachment #1.1.1: Type: text/plain, Size: 1434 bytes --]

Hi Thomas,

Am 30.05.24 um 10:30 schrieb Thomas Gleixner:

> Can you please apply the debug patch below ad provide the full dmesg
> after boot?

Here you go... The patch applied cleanly against 6.9.3, which I saw was just released by 
Greg, so I used that. If you want, I can repeat the test against 6.9.2, too.

Please note: to be able to boot any kernel >= 6.8.4 on my machine, I also had to apply 
this patch by Martin Petersen, fixing another (unrelated SCSI) regression I reported some 
time ago, see here:

https://lore.kernel.org/all/20240521023040.2703884-1-martin.petersen@oracle.com/

But I think these two issues are not connected in any way. It was during testing the above 
patch by Martin that I noticed this new issue in 6.9 BTW.

I have attached resulting file dmesg_6.9.3-dirty_Bad_wDebugInfo.txt, and I hope you can 
make some sense of it.

Beste Grüße,
Peter Schneider

-- 
Climb the mountain not to plant your flag, but to embrace the challenge,
enjoy the air and behold the view. Climb it so you can see the world,
not so the world can see you.                    -- David McCullough Jr.

OpenPGP:  0xA3828BD796CCE11A8CADE8866E3A92C92C3FF244
Download: https://www.peters-netzplatz.de/download/pschneider1968_pub.asc
https://keys.mailvelope.com/pks/lookup?op=get&search=pschneider1968@googlemail.com
https://keys.mailvelope.com/pks/lookup?op=get&search=pschneider1968@gmail.com

[-- Attachment #1.1.2: dmesg_v6.9.3-dirty_Bad_wDebugInfo.txt --]
[-- Type: text/plain, Size: 127884 bytes --]

[    0.000000] Linux version 6.9.3-dirty (root@linus.localdomain) (gcc (Debian 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Thu May 30 11:26:14 CEST 2024
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-6.9.3-dirty root=UUID=3842ebdd-e37f-4e4e-afd4-d7eb79b41984 ro quiet rootdelay=50 intel_iommu=on iommu=pt vfio-pci.ids=10de:1201,10de:0e0c
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] Legacy: 2 5 5
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000096fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000097000-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007cb5ffff] usable
[    0.000000] BIOS-e820: [mem 0x000000007cb60000-0x000000007cb8cfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007cb8d000-0x000000007cca4fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000007cca5000-0x000000007d8defff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007d8df000-0x000000007eb06fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007eb07000-0x000000007effffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000080000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed3ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000407fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: ASUSTeK COMPUTER INC. Z9PE-D16 Series/Z9PE-D16 Series, BIOS 5601 06/11/2015
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2699.964 MHz processor
[    0.001121] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.001124] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.001132] last_pfn = 0x4080000 max_arch_pfn = 0x400000000
[    0.001143] total RAM covered: 262144M
[    0.001344] Found optimal setting for mtrr clean up
[    0.001346]  gran_size: 64K 	chunk_size: 64K 	num_reg: 8  	lose cover RAM: 0G
[    0.001353] MTRR map: 7 entries (5 fixed + 2 variable; max 25), built from 10 variable MTRRs
[    0.001355] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.002346] e820: update [mem 0x80000000-0xffffffff] usable ==> reserved
[    0.002359] last_pfn = 0x7cb60 max_arch_pfn = 0x400000000
[    0.012882] found SMP MP-table at [mem 0x000fdd40-0x000fdd4f]
[    0.012900] Using GB pages for direct mapping
[    0.013158] RAMDISK: [mem 0x1d6ce000-0x37feefff]
[    0.013162] ACPI: Early table checksum verification disabled
[    0.013168] ACPI: RSDP 0x00000000000F0490 000024 (v02 ALASKA)
[    0.013173] ACPI: XSDT 0x000000007CBC5090 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.013180] ACPI: FACP 0x000000007CBD27D8 00010C (v05 ALASKA A M I    01072009 AMI  00010013)
[    0.013187] ACPI: DSDT 0x000000007CBC51C8 00D609 (v02 ALASKA A M I    00000000 INTL 20051117)
[    0.013192] ACPI: FACS 0x000000007D8D6F80 000040
[    0.013196] ACPI: APIC 0x000000007CBD28E8 000304 (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.013200] ACPI: FPDT 0x000000007CBD2BF0 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.013205] ACPI: MCFG 0x000000007CBD2C38 00003C (v01 ALASKA OEMMCFG. 01072009 MSFT 00000097)
[    0.013209] ACPI: SRAT 0x000000007CBD2C78 0005B0 (v01 A M I  AMI SRAT 00000001 AMI. 00000000)
[    0.013213] ACPI: SLIT 0x000000007CBD3228 000030 (v01 A M I  AMI SLIT 00000000 AMI. 00000000)
[    0.013217] ACPI: HPET 0x000000007CBD3258 000038 (v01 ALASKA A M I    01072009 AMI. 00000005)
[    0.013221] ACPI: DMAR 0x000000007CCA44D0 000168 (v01 A M I  OEMDMAR  00000001 INTL 00000001)
[    0.013226] ACPI: PRAD 0x000000007CBD32E8 0000BE (v02 PRADID PRADTID  00000001 MSFT 03000001)
[    0.013230] ACPI: SPMI 0x000000007CBD33A8 000040 (v05 A M I  OEMSPMI  00000000 AMI. 00000000)
[    0.013234] ACPI: SSDT 0x000000007CBD33E8 0D0CB0 (v02 INTEL  CpuPm    00004000 INTL 20051117)
[    0.013238] ACPI: EINJ 0x000000007CCA4098 000130 (v01 AMI    AMI EINJ 00000000      00000000)
[    0.013242] ACPI: ERST 0x000000007CCA41C8 000230 (v01 AMIER  AMI ERST 00000000      00000000)
[    0.013246] ACPI: HEST 0x000000007CCA43F8 0000A8 (v01 AMI    AMI HEST 00000000      00000000)
[    0.013250] ACPI: BERT 0x000000007CCA44A0 000030 (v01 AMI    AMI BERT 00000000      00000000)
[    0.013253] ACPI: Reserving FACP table memory at [mem 0x7cbd27d8-0x7cbd28e3]
[    0.013255] ACPI: Reserving DSDT table memory at [mem 0x7cbc51c8-0x7cbd27d0]
[    0.013256] ACPI: Reserving FACS table memory at [mem 0x7d8d6f80-0x7d8d6fbf]
[    0.013257] ACPI: Reserving APIC table memory at [mem 0x7cbd28e8-0x7cbd2beb]
[    0.013259] ACPI: Reserving FPDT table memory at [mem 0x7cbd2bf0-0x7cbd2c33]
[    0.013260] ACPI: Reserving MCFG table memory at [mem 0x7cbd2c38-0x7cbd2c73]
[    0.013261] ACPI: Reserving SRAT table memory at [mem 0x7cbd2c78-0x7cbd3227]
[    0.013262] ACPI: Reserving SLIT table memory at [mem 0x7cbd3228-0x7cbd3257]
[    0.013263] ACPI: Reserving HPET table memory at [mem 0x7cbd3258-0x7cbd328f]
[    0.013264] ACPI: Reserving DMAR table memory at [mem 0x7cca44d0-0x7cca4637]
[    0.013265] ACPI: Reserving PRAD table memory at [mem 0x7cbd32e8-0x7cbd33a5]
[    0.013267] ACPI: Reserving SPMI table memory at [mem 0x7cbd33a8-0x7cbd33e7]
[    0.013268] ACPI: Reserving SSDT table memory at [mem 0x7cbd33e8-0x7cca4097]
[    0.013269] ACPI: Reserving EINJ table memory at [mem 0x7cca4098-0x7cca41c7]
[    0.013270] ACPI: Reserving ERST table memory at [mem 0x7cca41c8-0x7cca43f7]
[    0.013271] ACPI: Reserving HEST table memory at [mem 0x7cca43f8-0x7cca449f]
[    0.013272] ACPI: Reserving BERT table memory at [mem 0x7cca44a0-0x7cca44cf]
[    0.013314] SRAT: PXM 0 -> APIC 0x00 -> Node 0
[    0.013316] SRAT: PXM 0 -> APIC 0x01 -> Node 0
[    0.013317] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[    0.013318] SRAT: PXM 0 -> APIC 0x03 -> Node 0
[    0.013319] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[    0.013320] SRAT: PXM 0 -> APIC 0x05 -> Node 0
[    0.013320] SRAT: PXM 0 -> APIC 0x06 -> Node 0
[    0.013321] SRAT: PXM 0 -> APIC 0x07 -> Node 0
[    0.013322] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[    0.013323] SRAT: PXM 0 -> APIC 0x09 -> Node 0
[    0.013324] SRAT: PXM 0 -> APIC 0x0a -> Node 0
[    0.013325] SRAT: PXM 0 -> APIC 0x0b -> Node 0
[    0.013326] SRAT: PXM 0 -> APIC 0x10 -> Node 0
[    0.013327] SRAT: PXM 0 -> APIC 0x11 -> Node 0
[    0.013328] SRAT: PXM 0 -> APIC 0x12 -> Node 0
[    0.013329] SRAT: PXM 0 -> APIC 0x13 -> Node 0
[    0.013330] SRAT: PXM 0 -> APIC 0x14 -> Node 0
[    0.013331] SRAT: PXM 0 -> APIC 0x15 -> Node 0
[    0.013332] SRAT: PXM 0 -> APIC 0x16 -> Node 0
[    0.013334] SRAT: PXM 0 -> APIC 0x17 -> Node 0
[    0.013335] SRAT: PXM 0 -> APIC 0x18 -> Node 0
[    0.013336] SRAT: PXM 0 -> APIC 0x19 -> Node 0
[    0.013337] SRAT: PXM 0 -> APIC 0x1a -> Node 0
[    0.013338] SRAT: PXM 0 -> APIC 0x1b -> Node 0
[    0.013339] SRAT: PXM 1 -> APIC 0x20 -> Node 1
[    0.013340] SRAT: PXM 1 -> APIC 0x21 -> Node 1
[    0.013341] SRAT: PXM 1 -> APIC 0x22 -> Node 1
[    0.013342] SRAT: PXM 1 -> APIC 0x23 -> Node 1
[    0.013343] SRAT: PXM 1 -> APIC 0x24 -> Node 1
[    0.013344] SRAT: PXM 1 -> APIC 0x25 -> Node 1
[    0.013345] SRAT: PXM 1 -> APIC 0x26 -> Node 1
[    0.013346] SRAT: PXM 1 -> APIC 0x27 -> Node 1
[    0.013347] SRAT: PXM 1 -> APIC 0x28 -> Node 1
[    0.013348] SRAT: PXM 1 -> APIC 0x29 -> Node 1
[    0.013349] SRAT: PXM 1 -> APIC 0x2a -> Node 1
[    0.013350] SRAT: PXM 1 -> APIC 0x2b -> Node 1
[    0.013351] SRAT: PXM 1 -> APIC 0x30 -> Node 1
[    0.013352] SRAT: PXM 1 -> APIC 0x31 -> Node 1
[    0.013353] SRAT: PXM 1 -> APIC 0x32 -> Node 1
[    0.013354] SRAT: PXM 1 -> APIC 0x33 -> Node 1
[    0.013355] SRAT: PXM 1 -> APIC 0x34 -> Node 1
[    0.013356] SRAT: PXM 1 -> APIC 0x35 -> Node 1
[    0.013357] SRAT: PXM 1 -> APIC 0x36 -> Node 1
[    0.013358] SRAT: PXM 1 -> APIC 0x37 -> Node 1
[    0.013359] SRAT: PXM 1 -> APIC 0x38 -> Node 1
[    0.013360] SRAT: PXM 1 -> APIC 0x39 -> Node 1
[    0.013361] SRAT: PXM 1 -> APIC 0x3a -> Node 1
[    0.013362] SRAT: PXM 1 -> APIC 0x3b -> Node 1
[    0.013365] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x7fffffff]
[    0.013367] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[    0.013369] ACPI: SRAT: Node 1 PXM 1 [mem 0x2080000000-0x407fffffff]
[    0.013376] NUMA: Initialized distance table, cnt=2
[    0.013381] NUMA: Node 0 [mem 0x00000000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00000000-0x207fffffff]
[    0.013391] NODE_DATA(0) allocated [mem 0x207ffd5000-0x207fffffff]
[    0.013417] NODE_DATA(1) allocated [mem 0x407ffd4000-0x407fffefff]
[    0.013937] Zone ranges:
[    0.013939]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.013941]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.013943]   Normal   [mem 0x0000000100000000-0x000000407fffffff]
[    0.013945]   Device   empty
[    0.013947] Movable zone start for each node
[    0.013950] Early memory node ranges
[    0.013951]   node   0: [mem 0x0000000000001000-0x0000000000096fff]
[    0.013953]   node   0: [mem 0x0000000000100000-0x000000007cb5ffff]
[    0.013955]   node   0: [mem 0x0000000100000000-0x000000207fffffff]
[    0.013971]   node   1: [mem 0x0000002080000000-0x000000407fffffff]
[    0.013988] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fffffff]
[    0.013993] Initmem setup node 1 [mem 0x0000002080000000-0x000000407fffffff]
[    0.013997] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.014036] On node 0, zone DMA: 105 pages in unavailable ranges
[    0.276986] On node 0, zone Normal: 13472 pages in unavailable ranges
[    0.690489] ACPI: PM-Timer IO Port: 0x408
[    0.690531] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.690534] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.690535] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.690537] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.690538] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.690539] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.690540] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.690542] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.690543] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.690544] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.690545] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.690546] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    0.690547] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
[    0.690549] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
[    0.690550] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
[    0.690551] ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
[    0.690552] ACPI: LAPIC_NMI (acpi_id[0x20] high edge lint[0x1])
[    0.690553] ACPI: LAPIC_NMI (acpi_id[0x22] high edge lint[0x1])
[    0.690554] ACPI: LAPIC_NMI (acpi_id[0x24] high edge lint[0x1])
[    0.690555] ACPI: LAPIC_NMI (acpi_id[0x26] high edge lint[0x1])
[    0.690556] ACPI: LAPIC_NMI (acpi_id[0x28] high edge lint[0x1])
[    0.690557] ACPI: LAPIC_NMI (acpi_id[0x2a] high edge lint[0x1])
[    0.690558] ACPI: LAPIC_NMI (acpi_id[0x2c] high edge lint[0x1])
[    0.690559] ACPI: LAPIC_NMI (acpi_id[0x2e] high edge lint[0x1])
[    0.690560] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.690561] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.690562] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.690563] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.690564] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.690565] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.690566] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.690567] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.690569] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.690570] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.690571] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    0.690572] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    0.690573] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
[    0.690574] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
[    0.690575] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
[    0.690576] ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
[    0.690578] ACPI: LAPIC_NMI (acpi_id[0x21] high edge lint[0x1])
[    0.690579] ACPI: LAPIC_NMI (acpi_id[0x23] high edge lint[0x1])
[    0.690581] ACPI: LAPIC_NMI (acpi_id[0x25] high edge lint[0x1])
[    0.690582] ACPI: LAPIC_NMI (acpi_id[0x27] high edge lint[0x1])
[    0.690584] ACPI: LAPIC_NMI (acpi_id[0x29] high edge lint[0x1])
[    0.690585] ACPI: LAPIC_NMI (acpi_id[0x2b] high edge lint[0x1])
[    0.690586] ACPI: LAPIC_NMI (acpi_id[0x2d] high edge lint[0x1])
[    0.690587] ACPI: LAPIC_NMI (acpi_id[0x2f] high edge lint[0x1])
[    0.690602] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.690608] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
[    0.690614] IOAPIC[2]: apic_id 3, version 32, address 0xfec40000, GSI 48-71
[    0.690617] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.690621] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.690628] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.690631] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.690642] TSC deadline timer available
[    0.690651] CPU topo: Max. logical packages:   2
[    0.690652] CPU topo: Max. logical dies:       2
[    0.690653] CPU topo: Max. dies per package:   1
[    0.690661] CPU topo: Max. threads per core:  24
[    0.690663] CPU topo: Num. cores per package:     1
[    0.690664] CPU topo: Num. threads per package:  24
[    0.690665] CPU topo: Allowing 48 present CPUs plus 0 hotplug CPUs
[    0.690686] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.690689] PM: hibernation: Registered nosave memory: [mem 0x00097000-0x0009ffff]
[    0.690690] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.690691] PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.690693] PM: hibernation: Registered nosave memory: [mem 0x7cb60000-0x7cb8cfff]
[    0.690695] PM: hibernation: Registered nosave memory: [mem 0x7cb8d000-0x7cca4fff]
[    0.690696] PM: hibernation: Registered nosave memory: [mem 0x7cca5000-0x7d8defff]
[    0.690697] PM: hibernation: Registered nosave memory: [mem 0x7d8df000-0x7eb06fff]
[    0.690698] PM: hibernation: Registered nosave memory: [mem 0x7eb07000-0x7effffff]
[    0.690699] PM: hibernation: Registered nosave memory: [mem 0x7f000000-0x7fffffff]
[    0.690700] PM: hibernation: Registered nosave memory: [mem 0x80000000-0x8fffffff]
[    0.690701] PM: hibernation: Registered nosave memory: [mem 0x90000000-0xfed1bfff]
[    0.690701] PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed3ffff]
[    0.690702] PM: hibernation: Registered nosave memory: [mem 0xfed40000-0xfeffffff]
[    0.690703] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.690706] [mem 0x90000000-0xfed1bfff] available for PCI devices
[    0.690709] Booting paravirtualized kernel on bare hardware
[    0.690713] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.690727] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:48 nr_cpu_ids:48 nr_node_ids:2
[    0.696217] percpu: Embedded 66 pages/cpu s233472 r8192 d28672 u524288
[    0.696228] pcpu-alloc: s233472 r8192 d28672 u524288 alloc=1*2097152
[    0.696233] pcpu-alloc: [0] 00 01 02 03 [0] 04 05 06 07 
[    0.696241] pcpu-alloc: [0] 08 09 10 11 [0] 24 25 26 27 
[    0.696248] pcpu-alloc: [0] 28 29 30 31 [0] 32 33 34 35 
[    0.696255] pcpu-alloc: [1] 12 13 14 15 [1] 16 17 18 19 
[    0.696262] pcpu-alloc: [1] 20 21 22 23 [1] 36 37 38 39 
[    0.696269] pcpu-alloc: [1] 40 41 42 43 [1] 44 45 46 47 
[    0.696303] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.9.3-dirty root=UUID=3842ebdd-e37f-4e4e-afd4-d7eb79b41984 ro quiet rootdelay=50 intel_iommu=on iommu=pt vfio-pci.ids=10de:1201,10de:0e0c
[    0.696418] DMAR: IOMMU enabled
[    0.696456] Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-6.9.3-dirty", will be passed to user space.
[    0.696470] random: crng init done
[    0.696471] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    0.696473] printk: log_buf_len total cpu_extra contributions: 192512 bytes
[    0.696474] printk: log_buf_len min size: 262144 bytes
[    0.697127] printk: log_buf_len: 524288 bytes
[    0.697128] printk: early log buf free: 246200(93%)
[    0.698050] Fallback order for Node 0: 0 1 
[    0.698056] Fallback order for Node 1: 1 0 
[    0.698063] Built 2 zonelists, mobility grouping on.  Total pages: 66046770
[    0.698065] Policy zone: Normal
[    0.698074] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[    0.698092] software IO TLB: area num 64.
[    1.636483] Memory: 263619196K/268381144K available (20480K kernel code, 3632K rwdata, 13176K rodata, 4768K init, 5748K bss, 4761688K reserved, 0K cma-reserved)
[    1.637118] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=48, Nodes=2
[    1.637275] Kernel/User page tables isolation: enabled
[    1.637396] ftrace: allocating 54089 entries in 212 pages
[    1.653638] ftrace: allocated 212 pages with 4 groups
[    1.655030] Dynamic Preempt: voluntary
[    1.655405] rcu: Preemptible hierarchical RCU implementation.
[    1.655407] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=48.
[    1.655410] 	Trampoline variant of Tasks RCU enabled.
[    1.655411] 	Rude variant of Tasks RCU enabled.
[    1.655411] 	Tracing variant of Tasks RCU enabled.
[    1.655413] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    1.655414] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=48
[    1.655467] RCU Tasks: Setting shift to 6 and lim to 1 rcu_task_cb_adjust=1.
[    1.655480] RCU Tasks Rude: Setting shift to 6 and lim to 1 rcu_task_cb_adjust=1.
[    1.655498] RCU Tasks Trace: Setting shift to 6 and lim to 1 rcu_task_cb_adjust=1.
[    1.659295] NR_IRQS: 524544, nr_irqs: 1624, preallocated irqs: 16
[    1.659595] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    1.666295] Console: colour VGA+ 80x25
[    1.666302] printk: legacy console [tty0] enabled
[    1.666501] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    1.666507] ACPI: Core revision 20230628
[    1.667595] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    1.667613] APIC: Switch to symmetric I/O mode setup
[    1.667617] DMAR: Host address width 46
[    1.667619] DMAR: DRHD base: 0x000000fbffe000 flags: 0x0
[    1.667631] DMAR: dmar0: reg_base_addr fbffe000 ver 1:0 cap d2078c106f0466 ecap f020df
[    1.667634] DMAR: DRHD base: 0x000000cfffc000 flags: 0x1
[    1.667639] DMAR: dmar1: reg_base_addr cfffc000 ver 1:0 cap d2078c106f0466 ecap f020df
[    1.667641] DMAR: RMRR base: 0x0000007e953000 end: 0x0000007e969fff
[    1.667644] DMAR: ATSR flags: 0x0
[    1.667646] DMAR: RHSA base: 0x000000fbffe000 proximity domain: 0x1
[    1.667648] DMAR: RHSA base: 0x000000cfffc000 proximity domain: 0x0
[    1.667652] DMAR-IR: IOAPIC id 3 under DRHD base  0xfbffe000 IOMMU 0
[    1.667654] DMAR-IR: IOAPIC id 0 under DRHD base  0xcfffc000 IOMMU 1
[    1.667656] DMAR-IR: IOAPIC id 2 under DRHD base  0xcfffc000 IOMMU 1
[    1.667657] DMAR-IR: HPET id 0 under DRHD base 0xcfffc000
[    1.667660] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    1.668476] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    1.668482] x2apic enabled
[    1.668563] APIC: Switched APIC routing to: cluster x2apic
[    1.669251] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    1.687623] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x26eb1c3777b, max_idle_ns: 440795255262 ns
[    1.687631] Calibrating delay loop (skipped), value calculated using timer frequency.. 5399.92 BogoMIPS (lpj=10799856)
[    1.687649] L:b 0 0 S:1 N:2 T:1
[    1.687652] D: 0
[    1.687653] L:b 1 1 S:5 N:24 T:2
[    1.687655] D: 1
[    1.687656] L:b 2 2 S:0 N:0 T:0
[    1.687658] [Firmware Bug]: CPU0: Topology domain 0 shift 1 != 5
[    1.687759] CPU0: Thermal monitoring enabled (TM1)
[    1.687859] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    1.687861] Last level dTLB entries: 4KB 512, 2MB 0, 4MB 0, 1GB 4
[    1.687866] process: using mwait in idle threads
[    1.687870] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.687873] Spectre V2 : Mitigation: Retpolines
[    1.687874] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    1.687876] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[    1.687877] Speculative Store Bypass: Vulnerable
[    1.687880] MDS: Vulnerable: Clear CPU buffers attempted, no microcode
[    1.687881] MMIO Stale Data: Unknown: No mitigations
[    1.687889] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    1.687891] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    1.687892] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    1.687895] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    1.687897] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    1.718066] Freeing SMP alternatives memory: 44K
[    1.718070] pid_max: default: 49152 minimum: 384
[    1.718187] LSM: initializing lsm=lockdown,capability,yama,apparmor,ima,evm
[    1.718221] Yama: becoming mindful.
[    1.718260] AppArmor: AppArmor initialized
[    1.762394] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc hugepage)
[    1.784525] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
[    1.785336] Mount-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc)
[    1.786048] Mountpoint-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc)
[    1.787071] smpboot: CPU0: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz (family: 0x6, model: 0x3e, stepping: 0x4)
[    1.787522] Performance Events: PEBS fmt1+, IvyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
[    1.787564] ... version:                3
[    1.787566] ... bit width:              48
[    1.787567] ... generic registers:      4
[    1.787569] ... value mask:             0000ffffffffffff
[    1.787570] ... max period:             00007fffffffffff
[    1.787571] ... fixed-purpose events:   3
[    1.787572] ... event mask:             000000070000000f
[    1.787627] signal: max sigframe size: 1776
[    1.787627] Estimated ratio of average max frequency by base frequency (times 1024): 1213
[    1.787627] rcu: Hierarchical SRCU implementation.
[    1.787627] rcu: 	Max phase no-delay instances is 1000.
[    1.788992] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    1.789817] smp: Bringing up secondary CPUs ...
[    1.790032] smpboot: x86: Booting SMP configuration:
[    1.790035] .... node  #0, CPUs:        #4
[    1.790312] .... node  #1, CPUs:   #12 #16
[    0.011992] Legacy: 2 5 5
[    1.797633] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5

[    1.801631] .... node  #0, CPUs:    #1  #2  #3  #5  #6  #7  #8  #9 #10 #11
[    1.805895] .... node  #1, CPUs:   #13 #14 #15 #17 #18 #19 #20 #21 #22 #23
[    1.808740] .... node  #0, CPUs:   #24 #25 #26 #27 #28 #29 #30 #31 #32 #33 #34 #35
[    1.814801] .... node  #1, CPUs:   #36 #37 #38 #39 #40 #41 #42 #43 #44 #45 #46 #47
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    0.011992] Legacy: 2 5 5
[    1.905630] smp: Brought up 2 nodes, 48 CPUs
[    1.905630] smpboot: Total of 48 processors activated (259196.54 BogoMIPS)
[    1.907894] BUG: arch topology borken
[    1.907970]      the SMT domain not a subset of the CLS domain
[    1.908061] BUG: arch topology borken
[    1.908131]      the SMT domain not a subset of the CLS domain
[    1.908219] BUG: arch topology borken
[    1.908289]      the SMT domain not a subset of the CLS domain
[    1.908377] BUG: arch topology borken
[    1.908447]      the SMT domain not a subset of the CLS domain
[    1.908535] BUG: arch topology borken
[    1.908605]      the SMT domain not a subset of the CLS domain
[    1.908693] BUG: arch topology borken
[    1.908762]      the SMT domain not a subset of the CLS domain
[    1.908852] BUG: arch topology borken
[    1.908922]      the SMT domain not a subset of the CLS domain
[    1.909010] BUG: arch topology borken
[    1.909082]      the SMT domain not a subset of the CLS domain
[    1.909170] BUG: arch topology borken
[    1.909242]      the SMT domain not a subset of the CLS domain
[    1.909332] BUG: arch topology borken
[    1.909403]      the SMT domain not a subset of the CLS domain
[    1.909495] BUG: arch topology borken
[    1.909565]      the SMT domain not a subset of the CLS domain
[    1.909676] BUG: arch topology borken
[    1.909766]      the SMT domain not a subset of the CLS domain
[    1.909876] BUG: arch topology borken
[    1.909970]      the SMT domain not a subset of the CLS domain
[    1.910080] BUG: arch topology borken
[    1.910171]      the SMT domain not a subset of the CLS domain
[    1.910281] BUG: arch topology borken
[    1.910372]      the SMT domain not a subset of the CLS domain
[    1.910484] BUG: arch topology borken
[    1.910578]      the SMT domain not a subset of the CLS domain
[    1.910689] BUG: arch topology borken
[    1.910779]      the SMT domain not a subset of the CLS domain
[    1.910888] BUG: arch topology borken
[    1.910978]      the SMT domain not a subset of the CLS domain
[    1.911089] BUG: arch topology borken
[    1.911181]      the SMT domain not a subset of the CLS domain
[    1.911293] BUG: arch topology borken
[    1.911386]      the SMT domain not a subset of the CLS domain
[    1.911495] BUG: arch topology borken
[    1.911587]      the SMT domain not a subset of the CLS domain
[    1.911643] BUG: arch topology borken
[    1.911734]      the SMT domain not a subset of the CLS domain
[    1.911845] BUG: arch topology borken
[    1.911935]      the SMT domain not a subset of the CLS domain
[    1.912043] BUG: arch topology borken
[    1.912136]      the SMT domain not a subset of the CLS domain
[    1.912246] BUG: arch topology borken
[    1.912339]      the SMT domain not a subset of the CLS domain
[    1.912449] BUG: arch topology borken
[    1.912539]      the SMT domain not a subset of the CLS domain
[    1.912650] BUG: arch topology borken
[    1.912743]      the SMT domain not a subset of the CLS domain
[    1.912854] BUG: arch topology borken
[    1.912946]      the SMT domain not a subset of the CLS domain
[    1.913056] BUG: arch topology borken
[    1.913147]      the SMT domain not a subset of the CLS domain
[    1.913255] BUG: arch topology borken
[    1.913349]      the SMT domain not a subset of the CLS domain
[    1.913461] BUG: arch topology borken
[    1.913553]      the SMT domain not a subset of the CLS domain
[    1.913661] BUG: arch topology borken
[    1.913752]      the SMT domain not a subset of the CLS domain
[    1.913861] BUG: arch topology borken
[    1.913953]      the SMT domain not a subset of the CLS domain
[    1.914064] BUG: arch topology borken
[    1.914157]      the SMT domain not a subset of the CLS domain
[    1.914267] BUG: arch topology borken
[    1.914359]      the SMT domain not a subset of the CLS domain
[    1.914469] BUG: arch topology borken
[    1.914563]      the SMT domain not a subset of the CLS domain
[    1.914673] BUG: arch topology borken
[    1.914766]      the SMT domain not a subset of the CLS domain
[    1.914875] BUG: arch topology borken
[    1.914966]      the SMT domain not a subset of the CLS domain
[    1.915076] BUG: arch topology borken
[    1.915168]      the SMT domain not a subset of the CLS domain
[    1.915278] BUG: arch topology borken
[    1.915372]      the SMT domain not a subset of the CLS domain
[    1.915483] BUG: arch topology borken
[    1.915575]      the SMT domain not a subset of the CLS domain
[    1.915645] BUG: arch topology borken
[    1.915736]      the SMT domain not a subset of the CLS domain
[    1.915846] BUG: arch topology borken
[    1.915939]      the SMT domain not a subset of the CLS domain
[    1.916049] BUG: arch topology borken
[    1.916141]      the SMT domain not a subset of the CLS domain
[    1.916252] BUG: arch topology borken
[    1.916346]      the SMT domain not a subset of the CLS domain
[    1.916457] BUG: arch topology borken
[    1.916550]      the SMT domain not a subset of the CLS domain
[    1.916658] BUG: arch topology borken
[    1.916750]      the SMT domain not a subset of the CLS domain
[    1.916860] BUG: arch topology borken
[    1.916954]      the SMT domain not a subset of the CLS domain
[    1.931772] devtmpfs: initialized
[    1.931772] x86/mm: Memory block size: 2048MB
[    1.934632] ACPI: PM: Registering ACPI NVS region [mem 0x7cca5000-0x7d8defff] (12820480 bytes)
[    1.934632] ACPI: PM: Registering ACPI NVS region [mem 0x7eb07000-0x7effffff] (5214208 bytes)
[    1.934632] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    1.935646] futex hash table entries: 16384 (order: 8, 1048576 bytes, vmalloc)
[    1.935899] pinctrl core: initialized pinctrl subsystem
[    1.936027] PM: RTC time: 09:38:58, date: 2024-05-30
[    1.938369] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    1.940308] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    1.941329] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    1.942343] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    1.942358] audit: initializing netlink subsys (disabled)
[    1.942372] audit: type=2000 audit(1717061937.272:1): state=initialized audit_enabled=0 res=1
[    1.942372] thermal_sys: Registered thermal governor 'fair_share'
[    1.942372] thermal_sys: Registered thermal governor 'bang_bang'
[    1.942372] thermal_sys: Registered thermal governor 'step_wise'
[    1.942372] thermal_sys: Registered thermal governor 'user_space'
[    1.942372] thermal_sys: Registered thermal governor 'power_allocator'
[    1.942372] EISA bus registered
[    1.942372] cpuidle: using governor ladder
[    1.942372] cpuidle: using governor menu
[    1.942372] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    1.942372] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff]
[    1.942372] PCI: ECAM [mem 0x80000000-0x8fffffff] reserved as E820 entry
[    1.942372] PCI: Using configuration type 1 for base access
[    1.942372] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    1.942372] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    1.943710] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    1.943710] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    1.943710] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    1.943710] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    1.943710] Demotion targets for Node 0: null
[    1.943710] Demotion targets for Node 1: null
[    1.943839] ACPI: Added _OSI(Module Device)
[    1.943841] ACPI: Added _OSI(Processor Device)
[    1.943843] ACPI: Added _OSI(3.0 _SCP Extensions)
[    1.943844] ACPI: Added _OSI(Processor Aggregator Device)
[    2.096593] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    2.124431] ACPI: _OSC evaluated successfully for all CPUs
[    2.124725] ACPI: Interpreter enabled
[    2.124747] ACPI: PM: (supports S0 S1 S5)
[    2.124749] ACPI: Using IOAPIC for interrupt routing
[    2.128530] HEST: Table parsing has been initialized.
[    2.128661] GHES: APEI firmware first mode is enabled by WHEA _OSC.
[    2.128670] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.128672] PCI: Using E820 reservations for host bridge windows
[    2.129275] ACPI: Enabled 8 GPEs in block 00 to 3F
[    2.130705] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    2.154248] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
[    2.154259] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.154367] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[    2.154553] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    2.155059] PCI host bridge to bus 0000:00
[    2.155062] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    2.155066] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    2.155068] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    2.155070] pci_bus 0000:00: root bus resource [io  0x0d00-0x9fff window]
[    2.155072] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
[    2.155075] pci_bus 0000:00: root bus resource [mem 0x80000000-0xcfffffff window]
[    2.155079] pci_bus 0000:00: root bus resource [bus 00-7e]
[    2.155116] pci 0000:00:00.0: [8086:0e00] type 00 class 0x060000 PCIe Root Port
[    2.155201] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    2.155325] pci 0000:00:01.0: [8086:0e02] type 01 class 0x060400 PCIe Root Port
[    2.155350] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.155430] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    2.155602] pci 0000:00:01.1: [8086:0e03] type 01 class 0x060400 PCIe Root Port
[    2.155627] pci 0000:00:01.1: PCI bridge to [bus 02]
[    2.155707] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    2.155887] pci 0000:00:02.0: [8086:0e04] type 01 class 0x060400 PCIe Root Port
[    2.155912] pci 0000:00:02.0: PCI bridge to [bus 03]
[    2.155989] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    2.156152] pci 0000:00:02.2: [8086:0e06] type 01 class 0x060400 PCIe Root Port
[    2.156176] pci 0000:00:02.2: PCI bridge to [bus 04]
[    2.156187] pci 0000:00:02.2:   bridge window [mem 0xc8a00000-0xc8cfffff]
[    2.156260] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    2.156420] pci 0000:00:03.0: [8086:0e08] type 01 class 0x060400 PCIe Root Port
[    2.156445] pci 0000:00:03.0: PCI bridge to [bus 05]
[    2.156449] pci 0000:00:03.0:   bridge window [io  0x8000-0x8fff]
[    2.156455] pci 0000:00:03.0:   bridge window [mem 0xb8000000-0xc60fffff]
[    2.156470] pci 0000:00:03.0: enabling Extended Tags
[    2.156534] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    2.156685] pci 0000:00:04.0: [8086:0e20] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.156704] pci 0000:00:04.0: BAR 0 [mem 0xc6120000-0xc6123fff 64bit]
[    2.156829] pci 0000:00:04.1: [8086:0e21] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.156845] pci 0000:00:04.1: BAR 0 [mem 0xc611c000-0xc611ffff 64bit]
[    2.156965] pci 0000:00:04.2: [8086:0e22] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.156982] pci 0000:00:04.2: BAR 0 [mem 0xc6118000-0xc611bfff 64bit]
[    2.157104] pci 0000:00:04.3: [8086:0e23] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.157120] pci 0000:00:04.3: BAR 0 [mem 0xc6114000-0xc6117fff 64bit]
[    2.157241] pci 0000:00:04.4: [8086:0e24] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.157257] pci 0000:00:04.4: BAR 0 [mem 0xc6110000-0xc6113fff 64bit]
[    2.157387] pci 0000:00:04.5: [8086:0e25] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.157403] pci 0000:00:04.5: BAR 0 [mem 0xc610c000-0xc610ffff 64bit]
[    2.157524] pci 0000:00:04.6: [8086:0e26] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.157540] pci 0000:00:04.6: BAR 0 [mem 0xc6108000-0xc610bfff 64bit]
[    2.157661] pci 0000:00:04.7: [8086:0e27] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.157678] pci 0000:00:04.7: BAR 0 [mem 0xc6104000-0xc6107fff 64bit]
[    2.157798] pci 0000:00:05.0: [8086:0e28] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.157908] pci 0000:00:05.2: [8086:0e2a] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.158021] pci 0000:00:05.4: [8086:0e2c] type 00 class 0x080020 PCIe Root Complex Integrated Endpoint
[    2.158033] pci 0000:00:05.4: BAR 0 [mem 0xc612b000-0xc612bfff]
[    2.158168] pci 0000:00:11.0: [8086:1d3e] type 01 class 0x060400 PCIe Root Port
[    2.158205] pci 0000:00:11.0: PCI bridge to [bus 06]
[    2.158212] pci 0000:00:11.0:   bridge window [io  0x7000-0x7fff]
[    2.158217] pci 0000:00:11.0:   bridge window [mem 0xc8400000-0xc88fffff]
[    2.158231] pci 0000:00:11.0:   bridge window [mem 0xcfe00000-0xcfefffff 64bit pref]
[    2.158305] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold
[    2.158442] pci 0000:00:16.0: [8086:1d3a] type 00 class 0x078000 conventional PCI endpoint
[    2.158460] pci 0000:00:16.0: BAR 0 [mem 0xc612a000-0xc612a00f 64bit]
[    2.158523] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    2.158619] pci 0000:00:16.1: [8086:1d3b] type 00 class 0x078000 conventional PCI endpoint
[    2.158637] pci 0000:00:16.1: BAR 0 [mem 0xc6129000-0xc612900f 64bit]
[    2.158700] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[    2.158803] pci 0000:00:1a.0: [8086:1d2d] type 00 class 0x0c0320 conventional PCI endpoint
[    2.158820] pci 0000:00:1a.0: BAR 0 [mem 0xc6127000-0xc61273ff]
[    2.158904] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    2.159002] pci 0000:00:1b.0: [8086:1d20] type 00 class 0x040300 PCIe Root Complex Integrated Endpoint
[    2.159020] pci 0000:00:1b.0: BAR 0 [mem 0xc6100000-0xc6103fff 64bit]
[    2.159101] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    2.159183] pci 0000:00:1c.0: [8086:1d10] type 01 class 0x060400 PCIe Root Port
[    2.159216] pci 0000:00:1c.0: PCI bridge to [bus 07-08]
[    2.159223] pci 0000:00:1c.0:   bridge window [io  0x6000-0x6fff]
[    2.159227] pci 0000:00:1c.0:   bridge window [mem 0xc8e00000-0xc8efffff]
[    2.159297] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    2.159324] pci 0000:00:1c.0: Enabling MPC IRBNCE
[    2.159327] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[    2.159440] pci 0000:00:1c.7: [8086:1d1e] type 01 class 0x060400 PCIe Root Port
[    2.159474] pci 0000:00:1c.7: PCI bridge to [bus 09-0a]
[    2.159480] pci 0000:00:1c.7:   bridge window [io  0x5000-0x5fff]
[    2.159486] pci 0000:00:1c.7:   bridge window [mem 0xc7000000-0xc80fffff]
[    2.159555] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
[    2.159581] pci 0000:00:1c.7: Enabling MPC IRBNCE
[    2.159584] pci 0000:00:1c.7: Intel PCH root port ACS workaround enabled
[    2.159689] pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320 conventional PCI endpoint
[    2.159707] pci 0000:00:1d.0: BAR 0 [mem 0xc6126000-0xc61263ff]
[    2.159793] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    2.159890] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401 conventional PCI bridge
[    2.159916] pci 0000:00:1e.0: PCI bridge to [bus 0b] (subtractive decode)
[    2.160030] pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100 conventional PCI endpoint
[    2.160237] pci 0000:00:1f.2: [8086:1d02] type 00 class 0x010601 conventional PCI endpoint
[    2.160251] pci 0000:00:1f.2: BAR 0 [io  0x9070-0x9077]
[    2.160258] pci 0000:00:1f.2: BAR 1 [io  0x9060-0x9063]
[    2.160268] pci 0000:00:1f.2: BAR 2 [io  0x9050-0x9057]
[    2.160275] pci 0000:00:1f.2: BAR 3 [io  0x9040-0x9043]
[    2.160284] pci 0000:00:1f.2: BAR 4 [io  0x9020-0x903f]
[    2.160292] pci 0000:00:1f.2: BAR 5 [mem 0xc6125000-0xc61257ff]
[    2.160333] pci 0000:00:1f.2: PME# supported from D3hot
[    2.160419] pci 0000:00:1f.3: [8086:1d22] type 00 class 0x0c0500 conventional PCI endpoint
[    2.160438] pci 0000:00:1f.3: BAR 0 [mem 0xc6124000-0xc61240ff 64bit]
[    2.160458] pci 0000:00:1f.3: BAR 4 [io  0x9000-0x901f]
[    2.160578] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.160621] pci 0000:00:01.1: PCI bridge to [bus 02]
[    2.160664] pci 0000:00:02.0: PCI bridge to [bus 03]
[    2.160719] pci 0000:04:00.0: [9005:0285] type 00 class 0x010400 PCIe Endpoint
[    2.160734] pci 0000:04:00.0: BAR 0 [mem 0xc8a00000-0xc8bfffff 64bit]
[    2.160762] pci 0000:04:00.0: ROM [mem 0xc8c00000-0xc8c7ffff pref]
[    2.160806] pci 0000:04:00.0: supports D1
[    2.160873] pci 0000:00:02.2: PCI bridge to [bus 04]
[    2.160929] pci 0000:05:00.0: [10de:1201] type 00 class 0x030000 PCIe Endpoint
[    2.160939] pci 0000:05:00.0: BAR 0 [mem 0xc4000000-0xc5ffffff]
[    2.160947] pci 0000:05:00.0: BAR 1 [mem 0xb8000000-0xbfffffff 64bit pref]
[    2.160956] pci 0000:05:00.0: BAR 3 [mem 0xc0000000-0xc3ffffff 64bit pref]
[    2.160961] pci 0000:05:00.0: BAR 5 [io  0x8000-0x807f]
[    2.160966] pci 0000:05:00.0: ROM [mem 0xc6000000-0xc607ffff pref]
[    2.160973] pci 0000:05:00.0: enabling Extended Tags
[    2.161093] pci 0000:05:00.1: [10de:0e0c] type 00 class 0x040300 PCIe Endpoint
[    2.161105] pci 0000:05:00.1: BAR 0 [mem 0xc6080000-0xc6083fff]
[    2.161138] pci 0000:05:00.1: enabling Extended Tags
[    2.161232] pci 0000:00:03.0: PCI bridge to [bus 05]
[    2.161306] pci 0000:06:00.0: [8086:1d6b] type 00 class 0x010700 PCIe Endpoint
[    2.161329] pci 0000:06:00.0: BAR 0 [mem 0xc8800000-0xc8803fff 64bit pref]
[    2.161343] pci 0000:06:00.0: BAR 2 [mem 0xc8400000-0xc87fffff 64bit pref]
[    2.161355] pci 0000:06:00.0: BAR 4 [io  0x7000-0x70ff]
[    2.161382] pci 0000:06:00.0: enabling Extended Tags
[    2.161489] pci 0000:06:00.0: VF BAR 0 [mem 0xcfe00000-0xcfe03fff 64bit pref]
[    2.161491] pci 0000:06:00.0: VF BAR 0 [mem 0xcfe00000-0xcfe7bfff 64bit pref]: contains BAR 0 for 31 VFs
[    2.161733] pci 0000:00:11.0: PCI bridge to [bus 06]
[    2.161842] pci 0000:07:00.0: [8086:1521] type 00 class 0x020000 PCIe Endpoint
[    2.161867] pci 0000:07:00.0: BAR 0 [mem 0xc8e20000-0xc8e3ffff]
[    2.161894] pci 0000:07:00.0: BAR 2 [io  0x6020-0x603f]
[    2.161907] pci 0000:07:00.0: BAR 3 [mem 0xc8ec4000-0xc8ec7fff]
[    2.162079] pci 0000:07:00.0: PME# supported from D0 D3hot D3cold
[    2.162123] pci 0000:07:00.0: VF BAR 0 [mem 0xc8ea0000-0xc8ea3fff]
[    2.162126] pci 0000:07:00.0: VF BAR 0 [mem 0xc8ea0000-0xc8ebffff]: contains BAR 0 for 8 VFs
[    2.162161] pci 0000:07:00.0: VF BAR 3 [mem 0xc8e80000-0xc8e83fff]
[    2.162163] pci 0000:07:00.0: VF BAR 3 [mem 0xc8e80000-0xc8e9ffff]: contains BAR 3 for 8 VFs
[    2.162495] pci 0000:07:00.1: [8086:1521] type 00 class 0x020000 PCIe Endpoint
[    2.162521] pci 0000:07:00.1: BAR 0 [mem 0xc8e00000-0xc8e1ffff]
[    2.162546] pci 0000:07:00.1: BAR 2 [io  0x6000-0x601f]
[    2.162559] pci 0000:07:00.1: BAR 3 [mem 0xc8ec0000-0xc8ec3fff]
[    2.162724] pci 0000:07:00.1: PME# supported from D0 D3hot D3cold
[    2.162767] pci 0000:07:00.1: VF BAR 0 [mem 0xc8e60000-0xc8e63fff]
[    2.162769] pci 0000:07:00.1: VF BAR 0 [mem 0xc8e60000-0xc8e7ffff]: contains BAR 0 for 8 VFs
[    2.162805] pci 0000:07:00.1: VF BAR 3 [mem 0xc8e40000-0xc8e43fff]
[    2.162807] pci 0000:07:00.1: VF BAR 3 [mem 0xc8e40000-0xc8e5ffff]: contains BAR 3 for 8 VFs
[    2.163071] pci 0000:00:1c.0: PCI bridge to [bus 07-08]
[    2.163160] pci 0000:09:00.0: [1a03:1150] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
[    2.163218] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    2.163231] pci 0000:09:00.0:   bridge window [io  0x5000-0x5fff]
[    2.163237] pci 0000:09:00.0:   bridge window [mem 0xc7000000-0xc80fffff]
[    2.163362] pci 0000:09:00.0: supports D1 D2
[    2.163366] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.163490] pci 0000:09:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    2.163506] pci 0000:00:1c.7: PCI bridge to [bus 09-0a]
[    2.163572] pci_bus 0000:0a: extended config space not accessible
[    2.163605] pci 0000:0a:00.0: [1a03:2000] type 00 class 0x030000 conventional PCI endpoint
[    2.163639] pci 0000:0a:00.0: BAR 0 [mem 0xc7000000-0xc7ffffff]
[    2.163658] pci 0000:0a:00.0: BAR 1 [mem 0xc8000000-0xc801ffff]
[    2.163676] pci 0000:0a:00.0: BAR 2 [io  0x5000-0x507f]
[    2.163768] pci 0000:0a:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    2.163818] pci 0000:0a:00.0: supports D1 D2
[    2.163821] pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.163954] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    2.164004] pci_bus 0000:0b: extended config space not accessible
[    2.164056] pci 0000:00:1e.0: PCI bridge to [bus 0b] (subtractive decode)
[    2.164065] pci 0000:00:1e.0:   bridge window [io  0x0000-0x03af window] (subtractive decode)
[    2.164067] pci 0000:00:1e.0:   bridge window [io  0x03e0-0x0cf7 window] (subtractive decode)
[    2.164071] pci 0000:00:1e.0:   bridge window [io  0x03b0-0x03df window] (subtractive decode)
[    2.164073] pci 0000:00:1e.0:   bridge window [io  0x0d00-0x9fff window] (subtractive decode)
[    2.164075] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000dffff window] (subtractive decode)
[    2.164078] pci 0000:00:1e.0:   bridge window [mem 0x80000000-0xcfffffff window] (subtractive decode)
[    2.164129] pci_bus 0000:00: on NUMA node 0
[    2.164969] ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus 7f])
[    2.164975] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.164997] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[    2.165066] PCI host bridge to bus 0000:7f
[    2.165069] pci_bus 0000:7f: root bus resource [bus 7f]
[    2.165081] pci 0000:7f:08.0: [8086:0e80] type 00 class 0x088000 conventional PCI endpoint
[    2.165144] pci 0000:7f:09.0: [8086:0e90] type 00 class 0x088000 conventional PCI endpoint
[    2.165200] pci 0000:7f:0a.0: [8086:0ec0] type 00 class 0x088000 conventional PCI endpoint
[    2.165250] pci 0000:7f:0a.1: [8086:0ec1] type 00 class 0x088000 conventional PCI endpoint
[    2.165299] pci 0000:7f:0a.2: [8086:0ec2] type 00 class 0x088000 conventional PCI endpoint
[    2.165349] pci 0000:7f:0a.3: [8086:0ec3] type 00 class 0x088000 conventional PCI endpoint
[    2.165407] pci 0000:7f:0b.0: [8086:0e1e] type 00 class 0x088000 conventional PCI endpoint
[    2.165454] pci 0000:7f:0b.3: [8086:0e1f] type 00 class 0x088000 conventional PCI endpoint
[    2.165502] pci 0000:7f:0c.0: [8086:0ee0] type 00 class 0x088000 conventional PCI endpoint
[    2.165555] pci 0000:7f:0c.1: [8086:0ee2] type 00 class 0x088000 conventional PCI endpoint
[    2.165602] pci 0000:7f:0c.2: [8086:0ee4] type 00 class 0x088000 conventional PCI endpoint
[    2.165651] pci 0000:7f:0c.3: [8086:0ee6] type 00 class 0x088000 conventional PCI endpoint
[    2.165698] pci 0000:7f:0c.4: [8086:0ee8] type 00 class 0x088000 conventional PCI endpoint
[    2.165745] pci 0000:7f:0c.5: [8086:0eea] type 00 class 0x088000 conventional PCI endpoint
[    2.165802] pci 0000:7f:0d.0: [8086:0ee1] type 00 class 0x088000 conventional PCI endpoint
[    2.165850] pci 0000:7f:0d.1: [8086:0ee3] type 00 class 0x088000 conventional PCI endpoint
[    2.165897] pci 0000:7f:0d.2: [8086:0ee5] type 00 class 0x088000 conventional PCI endpoint
[    2.165948] pci 0000:7f:0d.3: [8086:0ee7] type 00 class 0x088000 conventional PCI endpoint
[    2.165997] pci 0000:7f:0d.4: [8086:0ee9] type 00 class 0x088000 conventional PCI endpoint
[    2.166046] pci 0000:7f:0d.5: [8086:0eeb] type 00 class 0x088000 conventional PCI endpoint
[    2.166094] pci 0000:7f:0e.0: [8086:0ea0] type 00 class 0x088000 conventional PCI endpoint
[    2.166148] pci 0000:7f:0e.1: [8086:0e30] type 00 class 0x110100 conventional PCI endpoint
[    2.166213] pci 0000:7f:0f.0: [8086:0ea8] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.166281] pci 0000:7f:0f.1: [8086:0e71] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.166349] pci 0000:7f:0f.2: [8086:0eaa] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.166416] pci 0000:7f:0f.3: [8086:0eab] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.166483] pci 0000:7f:0f.4: [8086:0eac] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.166549] pci 0000:7f:0f.5: [8086:0ead] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.166616] pci 0000:7f:10.0: [8086:0eb0] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.166685] pci 0000:7f:10.1: [8086:0eb1] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.166761] pci 0000:7f:10.2: [8086:0eb2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.166829] pci 0000:7f:10.3: [8086:0eb3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.166895] pci 0000:7f:10.4: [8086:0eb4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.166963] pci 0000:7f:10.5: [8086:0eb5] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.167030] pci 0000:7f:10.6: [8086:0eb6] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.167098] pci 0000:7f:10.7: [8086:0eb7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.167163] pci 0000:7f:13.0: [8086:0e1d] type 00 class 0x088000 conventional PCI endpoint
[    2.167210] pci 0000:7f:13.1: [8086:0e34] type 00 class 0x110100 conventional PCI endpoint
[    2.167270] pci 0000:7f:13.4: [8086:0e81] type 00 class 0x088000 conventional PCI endpoint
[    2.167317] pci 0000:7f:13.5: [8086:0e36] type 00 class 0x110100 conventional PCI endpoint
[    2.167368] pci 0000:7f:16.0: [8086:0ec8] type 00 class 0x088000 conventional PCI endpoint
[    2.167416] pci 0000:7f:16.1: [8086:0ec9] type 00 class 0x088000 conventional PCI endpoint
[    2.167466] pci 0000:7f:16.2: [8086:0eca] type 00 class 0x088000 conventional PCI endpoint
[    2.167521] pci 0000:7f:1c.0: [8086:0e60] type 00 class 0x088000 conventional PCI endpoint
[    2.167572] pci 0000:7f:1c.1: [8086:0e38] type 00 class 0x110100 conventional PCI endpoint
[    2.167633] pci 0000:7f:1d.0: [8086:0e68] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.167712] pci 0000:7f:1d.1: [8086:0e79] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.167782] pci 0000:7f:1d.2: [8086:0e6a] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.167850] pci 0000:7f:1d.3: [8086:0e6b] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.167917] pci 0000:7f:1d.4: [8086:0e6c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.167986] pci 0000:7f:1d.5: [8086:0e6d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.168062] pci 0000:7f:1e.0: [8086:0ef0] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.168132] pci 0000:7f:1e.1: [8086:0ef1] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.168202] pci 0000:7f:1e.2: [8086:0ef2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.168282] pci 0000:7f:1e.3: [8086:0ef3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.168350] pci 0000:7f:1e.4: [8086:0ef4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.168419] pci 0000:7f:1e.5: [8086:0ef5] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.168488] pci 0000:7f:1e.6: [8086:0ef6] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.168556] pci 0000:7f:1e.7: [8086:0ef7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.168623] pci_bus 0000:7f: on NUMA node 0
[    2.168817] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 80-fe])
[    2.168823] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.168929] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[    2.169113] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    2.169357] PCI host bridge to bus 0000:80
[    2.169359] pci_bus 0000:80: root bus resource [io  0xa000-0xffff window]
[    2.169362] pci_bus 0000:80: root bus resource [mem 0xd0000000-0xfbffffff window]
[    2.169364] pci_bus 0000:80: root bus resource [bus 80-fe]
[    2.169393] pci 0000:80:00.0: [8086:0e01] type 01 class 0x060400 PCIe Root Port
[    2.169423] pci 0000:80:00.0: PCI bridge to [bus 81]
[    2.169505] pci 0000:80:00.0: PME# supported from D0 D3hot D3cold
[    2.169682] pci 0000:80:01.0: [8086:0e02] type 01 class 0x060400 PCIe Root Port
[    2.169710] pci 0000:80:01.0: PCI bridge to [bus 82]
[    2.169798] pci 0000:80:01.0: PME# supported from D0 D3hot D3cold
[    2.169973] pci 0000:80:02.0: [8086:0e04] type 01 class 0x060400 PCIe Root Port
[    2.170003] pci 0000:80:02.0: PCI bridge to [bus 83]
[    2.170091] pci 0000:80:02.0: PME# supported from D0 D3hot D3cold
[    2.170272] pci 0000:80:03.0: [8086:0e08] type 01 class 0x060400 PCIe Root Port
[    2.170303] pci 0000:80:03.0: PCI bridge to [bus 84]
[    2.170325] pci 0000:80:03.0: enabling Extended Tags
[    2.170396] pci 0000:80:03.0: PME# supported from D0 D3hot D3cold
[    2.170555] pci 0000:80:04.0: [8086:0e20] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.170573] pci 0000:80:04.0: BAR 0 [mem 0xfbf1c000-0xfbf1ffff 64bit]
[    2.170710] pci 0000:80:04.1: [8086:0e21] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.170729] pci 0000:80:04.1: BAR 0 [mem 0xfbf18000-0xfbf1bfff 64bit]
[    2.170862] pci 0000:80:04.2: [8086:0e22] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.170882] pci 0000:80:04.2: BAR 0 [mem 0xfbf14000-0xfbf17fff 64bit]
[    2.171014] pci 0000:80:04.3: [8086:0e23] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.171031] pci 0000:80:04.3: BAR 0 [mem 0xfbf10000-0xfbf13fff 64bit]
[    2.171163] pci 0000:80:04.4: [8086:0e24] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.171180] pci 0000:80:04.4: BAR 0 [mem 0xfbf0c000-0xfbf0ffff 64bit]
[    2.171310] pci 0000:80:04.5: [8086:0e25] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.171329] pci 0000:80:04.5: BAR 0 [mem 0xfbf08000-0xfbf0bfff 64bit]
[    2.171461] pci 0000:80:04.6: [8086:0e26] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.171479] pci 0000:80:04.6: BAR 0 [mem 0xfbf04000-0xfbf07fff 64bit]
[    2.171618] pci 0000:80:04.7: [8086:0e27] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.171637] pci 0000:80:04.7: BAR 0 [mem 0xfbf00000-0xfbf03fff 64bit]
[    2.171772] pci 0000:80:05.0: [8086:0e28] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.171892] pci 0000:80:05.2: [8086:0e2a] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.172013] pci 0000:80:05.4: [8086:0e2c] type 00 class 0x080020 PCIe Root Complex Integrated Endpoint
[    2.172026] pci 0000:80:05.4: BAR 0 [mem 0xfbf20000-0xfbf20fff]
[    2.172197] pci 0000:80:00.0: PCI bridge to [bus 81]
[    2.172244] pci 0000:80:01.0: PCI bridge to [bus 82]
[    2.172292] pci 0000:80:02.0: PCI bridge to [bus 83]
[    2.172338] pci 0000:80:03.0: PCI bridge to [bus 84]
[    2.172372] pci_bus 0000:80: on NUMA node 1
[    2.172481] ACPI: PCI Root Bridge [UNC1] (domain 0000 [bus ff])
[    2.172489] acpi PNP0A03:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.172511] acpi PNP0A03:01: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[    2.172582] PCI host bridge to bus 0000:ff
[    2.172585] pci_bus 0000:ff: root bus resource [bus ff]
[    2.172598] pci 0000:ff:08.0: [8086:0e80] type 00 class 0x088000 conventional PCI endpoint
[    2.172665] pci 0000:ff:09.0: [8086:0e90] type 00 class 0x088000 conventional PCI endpoint
[    2.172725] pci 0000:ff:0a.0: [8086:0ec0] type 00 class 0x088000 conventional PCI endpoint
[    2.172779] pci 0000:ff:0a.1: [8086:0ec1] type 00 class 0x088000 conventional PCI endpoint
[    2.172843] pci 0000:ff:0a.2: [8086:0ec2] type 00 class 0x088000 conventional PCI endpoint
[    2.172898] pci 0000:ff:0a.3: [8086:0ec3] type 00 class 0x088000 conventional PCI endpoint
[    2.172955] pci 0000:ff:0b.0: [8086:0e1e] type 00 class 0x088000 conventional PCI endpoint
[    2.173008] pci 0000:ff:0b.3: [8086:0e1f] type 00 class 0x088000 conventional PCI endpoint
[    2.173063] pci 0000:ff:0c.0: [8086:0ee0] type 00 class 0x088000 conventional PCI endpoint
[    2.173115] pci 0000:ff:0c.1: [8086:0ee2] type 00 class 0x088000 conventional PCI endpoint
[    2.173169] pci 0000:ff:0c.2: [8086:0ee4] type 00 class 0x088000 conventional PCI endpoint
[    2.173232] pci 0000:ff:0c.3: [8086:0ee6] type 00 class 0x088000 conventional PCI endpoint
[    2.173296] pci 0000:ff:0c.4: [8086:0ee8] type 00 class 0x088000 conventional PCI endpoint
[    2.173352] pci 0000:ff:0c.5: [8086:0eea] type 00 class 0x088000 conventional PCI endpoint
[    2.173405] pci 0000:ff:0d.0: [8086:0ee1] type 00 class 0x088000 conventional PCI endpoint
[    2.173460] pci 0000:ff:0d.1: [8086:0ee3] type 00 class 0x088000 conventional PCI endpoint
[    2.173513] pci 0000:ff:0d.2: [8086:0ee5] type 00 class 0x088000 conventional PCI endpoint
[    2.173568] pci 0000:ff:0d.3: [8086:0ee7] type 00 class 0x088000 conventional PCI endpoint
[    2.173627] pci 0000:ff:0d.4: [8086:0ee9] type 00 class 0x088000 conventional PCI endpoint
[    2.173680] pci 0000:ff:0d.5: [8086:0eeb] type 00 class 0x088000 conventional PCI endpoint
[    2.173742] pci 0000:ff:0e.0: [8086:0ea0] type 00 class 0x088000 conventional PCI endpoint
[    2.173806] pci 0000:ff:0e.1: [8086:0e30] type 00 class 0x110100 conventional PCI endpoint
[    2.173875] pci 0000:ff:0f.0: [8086:0ea8] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.173956] pci 0000:ff:0f.1: [8086:0e71] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.174037] pci 0000:ff:0f.2: [8086:0eaa] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.174120] pci 0000:ff:0f.3: [8086:0eab] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.174202] pci 0000:ff:0f.4: [8086:0eac] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.174282] pci 0000:ff:0f.5: [8086:0ead] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.174373] pci 0000:ff:10.0: [8086:0eb0] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.174455] pci 0000:ff:10.1: [8086:0eb1] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.174535] pci 0000:ff:10.2: [8086:0eb2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.174617] pci 0000:ff:10.3: [8086:0eb3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.174697] pci 0000:ff:10.4: [8086:0eb4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.174779] pci 0000:ff:10.5: [8086:0eb5] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.174859] pci 0000:ff:10.6: [8086:0eb6] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.174940] pci 0000:ff:10.7: [8086:0eb7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.175029] pci 0000:ff:13.0: [8086:0e1d] type 00 class 0x088000 conventional PCI endpoint
[    2.175083] pci 0000:ff:13.1: [8086:0e34] type 00 class 0x110100 conventional PCI endpoint
[    2.175140] pci 0000:ff:13.4: [8086:0e81] type 00 class 0x088000 conventional PCI endpoint
[    2.175197] pci 0000:ff:13.5: [8086:0e36] type 00 class 0x110100 conventional PCI endpoint
[    2.175254] pci 0000:ff:16.0: [8086:0ec8] type 00 class 0x088000 conventional PCI endpoint
[    2.175309] pci 0000:ff:16.1: [8086:0ec9] type 00 class 0x088000 conventional PCI endpoint
[    2.175365] pci 0000:ff:16.2: [8086:0eca] type 00 class 0x088000 conventional PCI endpoint
[    2.175429] pci 0000:ff:1c.0: [8086:0e60] type 00 class 0x088000 conventional PCI endpoint
[    2.175502] pci 0000:ff:1c.1: [8086:0e38] type 00 class 0x110100 conventional PCI endpoint
[    2.175574] pci 0000:ff:1d.0: [8086:0e68] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.175659] pci 0000:ff:1d.1: [8086:0e79] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.175745] pci 0000:ff:1d.2: [8086:0e6a] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.175828] pci 0000:ff:1d.3: [8086:0e6b] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.175910] pci 0000:ff:1d.4: [8086:0e6c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.175994] pci 0000:ff:1d.5: [8086:0e6d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.176078] pci 0000:ff:1e.0: [8086:0ef0] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.176172] pci 0000:ff:1e.1: [8086:0ef1] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.176261] pci 0000:ff:1e.2: [8086:0ef2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.176346] pci 0000:ff:1e.3: [8086:0ef3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.176429] pci 0000:ff:1e.4: [8086:0ef4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.176512] pci 0000:ff:1e.5: [8086:0ef5] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.176598] pci 0000:ff:1e.6: [8086:0ef6] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.176681] pci 0000:ff:1e.7: [8086:0ef7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.176760] pci_bus 0000:ff: on NUMA node 1
[    2.176887] ACPI: PCI: Interrupt link LNKA configured for IRQ 11
[    2.176951] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[    2.177012] ACPI: PCI: Interrupt link LNKC configured for IRQ 15
[    2.177072] ACPI: PCI: Interrupt link LNKD configured for IRQ 5
[    2.177132] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    2.177192] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    2.177257] ACPI: PCI: Interrupt link LNKG configured for IRQ 7
[    2.177318] ACPI: PCI: Interrupt link LNKH configured for IRQ 14
[    2.181614] iommu: Default domain type: Passthrough (set via kernel command line)
[    2.181614] SCSI subsystem initialized
[    2.181614] libata version 3.00 loaded.
[    2.181614] ACPI: bus type USB registered
[    2.181614] usbcore: registered new interface driver usbfs
[    2.181614] usbcore: registered new interface driver hub
[    2.181614] usbcore: registered new device driver usb
[    2.181614] pps_core: LinuxPPS API ver. 1 registered
[    2.181614] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    2.181614] PTP clock support registered
[    2.181614] EDAC MC: Ver: 3.0.0
[    2.181614] NetLabel: Initializing
[    2.181614] NetLabel:  domain hash size = 128
[    2.181614] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    2.181614] NetLabel:  unlabeled traffic allowed by default
[    2.181614] mctp: management component transport protocol core
[    2.181614] NET: Registered PF_MCTP protocol family
[    2.181614] PCI: Using ACPI for IRQ routing
[    2.187575] PCI: pci_cache_line_size set to 64 bytes
[    2.187807] e820: reserve RAM buffer [mem 0x00097000-0x0009ffff]
[    2.187810] e820: reserve RAM buffer [mem 0x7cb60000-0x7fffffff]
[    2.187833] pci 0000:05:00.0: vgaarb: setting as boot VGA device
[    2.187833] pci 0000:05:00.0: vgaarb: bridge control possible
[    2.187833] pci 0000:05:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    2.187833] pci 0000:0a:00.0: vgaarb: setting as boot VGA device (overriding previous)
[    2.187833] pci 0000:0a:00.0: vgaarb: bridge control possible
[    2.187833] pci 0000:0a:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    2.187833] vgaarb: loaded
[    2.187833] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    2.187833] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    2.189912] clocksource: Switched to clocksource tsc-early
[    2.190808] VFS: Disk quotas dquot_6.6.0
[    2.190841] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    2.191032] AppArmor: AppArmor Filesystem Enabled
[    2.191072] pnp: PnP ACPI init
[    2.191193] system 00:00: [mem 0xfc000000-0xfcffffff] has been reserved
[    2.191197] system 00:00: [mem 0xfd000000-0xfdffffff] has been reserved
[    2.191199] system 00:00: [mem 0xfe000000-0xfeafffff] has been reserved
[    2.191201] system 00:00: [mem 0xfeb00000-0xfebfffff] has been reserved
[    2.191204] system 00:00: [mem 0xfed00400-0xfed3ffff] could not be reserved
[    2.191206] system 00:00: [mem 0xfed45000-0xfedfffff] has been reserved
[    2.191209] system 00:00: [mem 0x00000400-0x000004ff] could not be reserved
[    2.191209] system 00:01: [mem 0xcfffc000-0xcfffdfff] could not be reserved
[    2.191209] system 00:02: [io  0x0290-0x029f] has been reserved
[    2.191209] system 00:04: [io  0x04d0-0x04d1] has been reserved
[    2.191209] pnp 00:06: [dma 0 disabled]
[    2.191209] pnp 00:07: [dma 0 disabled]
[    2.191209] system 00:08: [io  0x0400-0x0453] has been reserved
[    2.191209] system 00:08: [io  0x0458-0x047f] has been reserved
[    2.191209] system 00:08: [io  0x1180-0x119f] has been reserved
[    2.191209] system 00:08: [io  0x0500-0x057f] has been reserved
[    2.191209] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    2.191209] system 00:08: [mem 0xfec00000-0xfecfffff] could not be reserved
[    2.191209] system 00:08: [mem 0xfed08000-0xfed08fff] has been reserved
[    2.191209] system 00:08: [mem 0xff000000-0xffffffff] has been reserved
[    2.191209] system 00:09: [io  0x0454-0x0457] has been reserved
[    2.191209] system 00:0b: [mem 0xfbffe000-0xfbffffff] could not be reserved
[    2.191371] pnp: PnP ACPI: found 12 devices
[    2.197504] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    2.197607] NET: Registered PF_INET protocol family
[    2.198366] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc)
[    2.217950] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    2.218120] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[    2.219544] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    2.220525] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    2.220800] TCP: Hash tables configured (established 524288 bind 65536)
[    2.221376] MPTCP token hash table entries: 65536 (order: 8, 1572864 bytes, vmalloc)
[    2.222133] UDP hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    2.223053] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    2.223383] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    2.223396] NET: Registered PF_XDP protocol family
[    2.223430] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.223442] pci 0000:00:01.1: PCI bridge to [bus 02]
[    2.223451] pci 0000:00:02.0: PCI bridge to [bus 03]
[    2.223460] pci 0000:00:02.2: PCI bridge to [bus 04]
[    2.223465] pci 0000:00:02.2:   bridge window [mem 0xc8a00000-0xc8cfffff]
[    2.223473] pci 0000:00:03.0: PCI bridge to [bus 05]
[    2.223476] pci 0000:00:03.0:   bridge window [io  0x8000-0x8fff]
[    2.223480] pci 0000:00:03.0:   bridge window [mem 0xb8000000-0xc60fffff]
[    2.223488] pci 0000:00:11.0: PCI bridge to [bus 06]
[    2.223491] pci 0000:00:11.0:   bridge window [io  0x7000-0x7fff]
[    2.223496] pci 0000:00:11.0:   bridge window [mem 0xc8400000-0xc88fffff]
[    2.223501] pci 0000:00:11.0:   bridge window [mem 0xcfe00000-0xcfefffff 64bit pref]
[    2.223509] pci 0000:00:1c.0: PCI bridge to [bus 07-08]
[    2.223511] pci 0000:00:1c.0:   bridge window [io  0x6000-0x6fff]
[    2.223516] pci 0000:00:1c.0:   bridge window [mem 0xc8e00000-0xc8efffff]
[    2.223525] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    2.223528] pci 0000:09:00.0:   bridge window [io  0x5000-0x5fff]
[    2.223536] pci 0000:09:00.0:   bridge window [mem 0xc7000000-0xc80fffff]
[    2.223549] pci 0000:00:1c.7: PCI bridge to [bus 09-0a]
[    2.223552] pci 0000:00:1c.7:   bridge window [io  0x5000-0x5fff]
[    2.223556] pci 0000:00:1c.7:   bridge window [mem 0xc7000000-0xc80fffff]
[    2.223564] pci 0000:00:1e.0: PCI bridge to [bus 0b]
[    2.223574] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    2.223576] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    2.223578] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    2.223580] pci_bus 0000:00: resource 7 [io  0x0d00-0x9fff window]
[    2.223582] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
[    2.223584] pci_bus 0000:00: resource 9 [mem 0x80000000-0xcfffffff window]
[    2.223586] pci_bus 0000:04: resource 1 [mem 0xc8a00000-0xc8cfffff]
[    2.223588] pci_bus 0000:05: resource 0 [io  0x8000-0x8fff]
[    2.223590] pci_bus 0000:05: resource 1 [mem 0xb8000000-0xc60fffff]
[    2.223592] pci_bus 0000:06: resource 0 [io  0x7000-0x7fff]
[    2.223594] pci_bus 0000:06: resource 1 [mem 0xc8400000-0xc88fffff]
[    2.223595] pci_bus 0000:06: resource 2 [mem 0xcfe00000-0xcfefffff 64bit pref]
[    2.223597] pci_bus 0000:07: resource 0 [io  0x6000-0x6fff]
[    2.223599] pci_bus 0000:07: resource 1 [mem 0xc8e00000-0xc8efffff]
[    2.223601] pci_bus 0000:09: resource 0 [io  0x5000-0x5fff]
[    2.223602] pci_bus 0000:09: resource 1 [mem 0xc7000000-0xc80fffff]
[    2.223604] pci_bus 0000:0a: resource 0 [io  0x5000-0x5fff]
[    2.223605] pci_bus 0000:0a: resource 1 [mem 0xc7000000-0xc80fffff]
[    2.223607] pci_bus 0000:0b: resource 4 [io  0x0000-0x03af window]
[    2.223609] pci_bus 0000:0b: resource 5 [io  0x03e0-0x0cf7 window]
[    2.223611] pci_bus 0000:0b: resource 6 [io  0x03b0-0x03df window]
[    2.223612] pci_bus 0000:0b: resource 7 [io  0x0d00-0x9fff window]
[    2.223614] pci_bus 0000:0b: resource 8 [mem 0x000a0000-0x000dffff window]
[    2.223616] pci_bus 0000:0b: resource 9 [mem 0x80000000-0xcfffffff window]
[    2.223713] pci 0000:80:00.0: PCI bridge to [bus 81]
[    2.223724] pci 0000:80:01.0: PCI bridge to [bus 82]
[    2.223733] pci 0000:80:02.0: PCI bridge to [bus 83]
[    2.223742] pci 0000:80:03.0: PCI bridge to [bus 84]
[    2.223752] pci_bus 0000:80: resource 4 [io  0xa000-0xffff window]
[    2.223754] pci_bus 0000:80: resource 5 [mem 0xd0000000-0xfbffffff window]
[    2.223818] pci 0000:00:05.0: disabled boot interrupts on device [8086:0e28]
[    2.247758] pci 0000:00:1a.0: quirk_usb_early_handoff+0x0/0x780 took 23360 usecs
[    2.271754] pci 0000:00:1d.0: quirk_usb_early_handoff+0x0/0x780 took 23411 usecs
[    2.271783] pci 0000:05:00.1: extending delay after power-on from D3hot to 20 msec
[    2.271826] pci 0000:05:00.1: D0 power state depends on 0000:05:00.0
[    2.271988] pci 0000:80:05.0: disabled boot interrupts on device [8086:0e28]
[    2.272111] PCI: CLS 64 bytes, default 64
[    2.272197] DMAR: No SATC found
[    2.272202] DMAR: dmar0: Using Queued invalidation
[    2.272208] DMAR: dmar1: Using Queued invalidation
[    2.272216] Trying to unpack rootfs image as initramfs...
[    2.272332] pci 0000:80:00.0: Adding to iommu group 0
[    2.272374] pci 0000:80:01.0: Adding to iommu group 1
[    2.272412] pci 0000:80:02.0: Adding to iommu group 2
[    2.272451] pci 0000:80:03.0: Adding to iommu group 3
[    2.272490] pci 0000:80:04.0: Adding to iommu group 4
[    2.272527] pci 0000:80:04.1: Adding to iommu group 5
[    2.272564] pci 0000:80:04.2: Adding to iommu group 6
[    2.272600] pci 0000:80:04.3: Adding to iommu group 7
[    2.272638] pci 0000:80:04.4: Adding to iommu group 8
[    2.272674] pci 0000:80:04.5: Adding to iommu group 9
[    2.272711] pci 0000:80:04.6: Adding to iommu group 10
[    2.272748] pci 0000:80:04.7: Adding to iommu group 11
[    2.272842] pci 0000:00:00.0: Adding to iommu group 12
[    2.272884] pci 0000:00:01.0: Adding to iommu group 13
[    2.272925] pci 0000:00:01.1: Adding to iommu group 14
[    2.272963] pci 0000:00:02.0: Adding to iommu group 15
[    2.273003] pci 0000:00:02.2: Adding to iommu group 16
[    2.273041] pci 0000:00:03.0: Adding to iommu group 17
[    2.273080] pci 0000:00:04.0: Adding to iommu group 18
[    2.273117] pci 0000:00:04.1: Adding to iommu group 19
[    2.273156] pci 0000:00:04.2: Adding to iommu group 20
[    2.273192] pci 0000:00:04.3: Adding to iommu group 21
[    2.273229] pci 0000:00:04.4: Adding to iommu group 22
[    2.273266] pci 0000:00:04.5: Adding to iommu group 23
[    2.273304] pci 0000:00:04.6: Adding to iommu group 24
[    2.273341] pci 0000:00:04.7: Adding to iommu group 25
[    2.273377] pci 0000:00:05.0: Adding to iommu group 26
[    2.273414] pci 0000:00:05.2: Adding to iommu group 27
[    2.273452] pci 0000:00:05.4: Adding to iommu group 28
[    2.273489] pci 0000:00:11.0: Adding to iommu group 29
[    2.273584] pci 0000:00:16.0: Adding to iommu group 30
[    2.273622] pci 0000:00:16.1: Adding to iommu group 30
[    2.273660] pci 0000:00:1a.0: Adding to iommu group 31
[    2.273696] pci 0000:00:1b.0: Adding to iommu group 32
[    2.273733] pci 0000:00:1c.0: Adding to iommu group 33
[    2.273772] pci 0000:00:1c.7: Adding to iommu group 34
[    2.273811] pci 0000:00:1d.0: Adding to iommu group 35
[    2.273848] pci 0000:00:1e.0: Adding to iommu group 36
[    2.273971] pci 0000:00:1f.0: Adding to iommu group 37
[    2.274011] pci 0000:00:1f.2: Adding to iommu group 37
[    2.274051] pci 0000:00:1f.3: Adding to iommu group 37
[    2.274090] pci 0000:04:00.0: Adding to iommu group 38
[    2.274185] pci 0000:05:00.0: Adding to iommu group 39
[    2.274226] pci 0000:05:00.1: Adding to iommu group 39
[    2.274294] pci 0000:06:00.0: Adding to iommu group 40
[    2.274333] pci 0000:07:00.0: Adding to iommu group 41
[    2.274374] pci 0000:07:00.1: Adding to iommu group 42
[    2.274413] pci 0000:09:00.0: Adding to iommu group 43
[    2.274418] pci 0000:0a:00.0: Adding to iommu group 43
[    2.274486] pci 0000:7f:08.0: Adding to iommu group 44
[    2.274553] pci 0000:7f:09.0: Adding to iommu group 45
[    2.274706] pci 0000:7f:0a.0: Adding to iommu group 46
[    2.274749] pci 0000:7f:0a.1: Adding to iommu group 46
[    2.274791] pci 0000:7f:0a.2: Adding to iommu group 46
[    2.274834] pci 0000:7f:0a.3: Adding to iommu group 46
[    2.274928] pci 0000:7f:0b.0: Adding to iommu group 47
[    2.274972] pci 0000:7f:0b.3: Adding to iommu group 47
[    2.275187] pci 0000:7f:0c.0: Adding to iommu group 48
[    2.275231] pci 0000:7f:0c.1: Adding to iommu group 48
[    2.275278] pci 0000:7f:0c.2: Adding to iommu group 48
[    2.275321] pci 0000:7f:0c.3: Adding to iommu group 48
[    2.275365] pci 0000:7f:0c.4: Adding to iommu group 48
[    2.275410] pci 0000:7f:0c.5: Adding to iommu group 48
[    2.275622] pci 0000:7f:0d.0: Adding to iommu group 49
[    2.275713] pci 0000:7f:0d.1: Adding to iommu group 49
[    2.275758] pci 0000:7f:0d.2: Adding to iommu group 49
[    2.275806] pci 0000:7f:0d.3: Adding to iommu group 49
[    2.275850] pci 0000:7f:0d.4: Adding to iommu group 49
[    2.275894] pci 0000:7f:0d.5: Adding to iommu group 49
[    2.275989] pci 0000:7f:0e.0: Adding to iommu group 50
[    2.276035] pci 0000:7f:0e.1: Adding to iommu group 50
[    2.276074] pci 0000:7f:0f.0: Adding to iommu group 51
[    2.276111] pci 0000:7f:0f.1: Adding to iommu group 52
[    2.276148] pci 0000:7f:0f.2: Adding to iommu group 53
[    2.276185] pci 0000:7f:0f.3: Adding to iommu group 54
[    2.276231] pci 0000:7f:0f.4: Adding to iommu group 55
[    2.276269] pci 0000:7f:0f.5: Adding to iommu group 56
[    2.276308] pci 0000:7f:10.0: Adding to iommu group 57
[    2.276345] pci 0000:7f:10.1: Adding to iommu group 58
[    2.276383] pci 0000:7f:10.2: Adding to iommu group 59
[    2.276420] pci 0000:7f:10.3: Adding to iommu group 60
[    2.276457] pci 0000:7f:10.4: Adding to iommu group 61
[    2.276494] pci 0000:7f:10.5: Adding to iommu group 62
[    2.276533] pci 0000:7f:10.6: Adding to iommu group 63
[    2.276570] pci 0000:7f:10.7: Adding to iommu group 64
[    2.276725] pci 0000:7f:13.0: Adding to iommu group 65
[    2.276773] pci 0000:7f:13.1: Adding to iommu group 65
[    2.276822] pci 0000:7f:13.4: Adding to iommu group 65
[    2.276870] pci 0000:7f:13.5: Adding to iommu group 65
[    2.276995] pci 0000:7f:16.0: Adding to iommu group 66
[    2.277044] pci 0000:7f:16.1: Adding to iommu group 66
[    2.277092] pci 0000:7f:16.2: Adding to iommu group 66
[    2.277187] pci 0000:7f:1c.0: Adding to iommu group 67
[    2.277238] pci 0000:7f:1c.1: Adding to iommu group 67
[    2.277275] pci 0000:7f:1d.0: Adding to iommu group 68
[    2.277312] pci 0000:7f:1d.1: Adding to iommu group 69
[    2.277349] pci 0000:7f:1d.2: Adding to iommu group 70
[    2.277388] pci 0000:7f:1d.3: Adding to iommu group 71
[    2.277427] pci 0000:7f:1d.4: Adding to iommu group 72
[    2.277464] pci 0000:7f:1d.5: Adding to iommu group 73
[    2.277500] pci 0000:7f:1e.0: Adding to iommu group 74
[    2.277542] pci 0000:7f:1e.1: Adding to iommu group 75
[    2.277579] pci 0000:7f:1e.2: Adding to iommu group 76
[    2.277616] pci 0000:7f:1e.3: Adding to iommu group 77
[    2.277654] pci 0000:7f:1e.4: Adding to iommu group 78
[    2.277691] pci 0000:7f:1e.5: Adding to iommu group 79
[    2.277728] pci 0000:7f:1e.6: Adding to iommu group 80
[    2.277765] pci 0000:7f:1e.7: Adding to iommu group 81
[    2.277806] pci 0000:80:05.0: Adding to iommu group 82
[    2.277843] pci 0000:80:05.2: Adding to iommu group 83
[    2.277879] pci 0000:80:05.4: Adding to iommu group 84
[    2.277945] pci 0000:ff:08.0: Adding to iommu group 85
[    2.278012] pci 0000:ff:09.0: Adding to iommu group 86
[    2.278166] pci 0000:ff:0a.0: Adding to iommu group 87
[    2.278221] pci 0000:ff:0a.1: Adding to iommu group 87
[    2.278275] pci 0000:ff:0a.2: Adding to iommu group 87
[    2.278329] pci 0000:ff:0a.3: Adding to iommu group 87
[    2.278430] pci 0000:ff:0b.0: Adding to iommu group 88
[    2.278485] pci 0000:ff:0b.3: Adding to iommu group 88
[    2.278699] pci 0000:ff:0c.0: Adding to iommu group 89
[    2.278754] pci 0000:ff:0c.1: Adding to iommu group 89
[    2.278810] pci 0000:ff:0c.2: Adding to iommu group 89
[    2.278866] pci 0000:ff:0c.3: Adding to iommu group 89
[    2.278923] pci 0000:ff:0c.4: Adding to iommu group 89
[    2.278979] pci 0000:ff:0c.5: Adding to iommu group 89
[    2.279192] pci 0000:ff:0d.0: Adding to iommu group 90
[    2.279250] pci 0000:ff:0d.1: Adding to iommu group 90
[    2.279307] pci 0000:ff:0d.2: Adding to iommu group 90
[    2.279363] pci 0000:ff:0d.3: Adding to iommu group 90
[    2.279419] pci 0000:ff:0d.4: Adding to iommu group 90
[    2.279478] pci 0000:ff:0d.5: Adding to iommu group 90
[    2.279576] pci 0000:ff:0e.0: Adding to iommu group 91
[    2.279643] pci 0000:ff:0e.1: Adding to iommu group 91
[    2.279682] pci 0000:ff:0f.0: Adding to iommu group 92
[    2.279722] pci 0000:ff:0f.1: Adding to iommu group 93
[    2.279759] pci 0000:ff:0f.2: Adding to iommu group 94
[    2.279795] pci 0000:ff:0f.3: Adding to iommu group 95
[    2.279832] pci 0000:ff:0f.4: Adding to iommu group 96
[    2.279872] pci 0000:ff:0f.5: Adding to iommu group 97
[    2.279909] pci 0000:ff:10.0: Adding to iommu group 98
[    2.279948] pci 0000:ff:10.1: Adding to iommu group 99
[    2.279985] pci 0000:ff:10.2: Adding to iommu group 100
[    2.280024] pci 0000:ff:10.3: Adding to iommu group 101
[    2.280061] pci 0000:ff:10.4: Adding to iommu group 102
[    2.280098] pci 0000:ff:10.5: Adding to iommu group 103
[    2.280134] pci 0000:ff:10.6: Adding to iommu group 104
[    2.280173] pci 0000:ff:10.7: Adding to iommu group 105
[    2.280327] pci 0000:ff:13.0: Adding to iommu group 106
[    2.280388] pci 0000:ff:13.1: Adding to iommu group 106
[    2.280449] pci 0000:ff:13.4: Adding to iommu group 106
[    2.280509] pci 0000:ff:13.5: Adding to iommu group 106
[    2.280638] pci 0000:ff:16.0: Adding to iommu group 107
[    2.280699] pci 0000:ff:16.1: Adding to iommu group 107
[    2.280760] pci 0000:ff:16.2: Adding to iommu group 107
[    2.280855] pci 0000:ff:1c.0: Adding to iommu group 108
[    2.280916] pci 0000:ff:1c.1: Adding to iommu group 108
[    2.280955] pci 0000:ff:1d.0: Adding to iommu group 109
[    2.280992] pci 0000:ff:1d.1: Adding to iommu group 110
[    2.281028] pci 0000:ff:1d.2: Adding to iommu group 111
[    2.281065] pci 0000:ff:1d.3: Adding to iommu group 112
[    2.281104] pci 0000:ff:1d.4: Adding to iommu group 113
[    2.281142] pci 0000:ff:1d.5: Adding to iommu group 114
[    2.281179] pci 0000:ff:1e.0: Adding to iommu group 115
[    2.281216] pci 0000:ff:1e.1: Adding to iommu group 116
[    2.281255] pci 0000:ff:1e.2: Adding to iommu group 117
[    2.281292] pci 0000:ff:1e.3: Adding to iommu group 118
[    2.281329] pci 0000:ff:1e.4: Adding to iommu group 119
[    2.281367] pci 0000:ff:1e.5: Adding to iommu group 120
[    2.281404] pci 0000:ff:1e.6: Adding to iommu group 121
[    2.281441] pci 0000:ff:1e.7: Adding to iommu group 122
[    2.281542] DMAR: Intel(R) Virtualization Technology for Directed I/O
[    2.281544] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    2.281546] software IO TLB: mapped [mem 0x0000000078b60000-0x000000007cb60000] (64MB)
[    2.285433] Initialise system trusted keyrings
[    2.285455] Key type blacklist registered
[    2.285541] workingset: timestamp_bits=36 max_order=26 bucket_order=0
[    2.285553] zbud: loaded
[    2.286029] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    2.286160] fuse: init (API version 7.40)
[    2.286420] integrity: Platform Keyring initialized
[    2.286427] integrity: Machine keyring initialized
[    2.300589] Key type asymmetric registered
[    2.300592] Asymmetric key parser 'x509' registered
[    2.300640] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[    2.300726] io scheduler mq-deadline registered
[    2.304491] pcieport 0000:00:01.0: PME: Signaling with IRQ 25
[    2.304788] pcieport 0000:00:01.1: PME: Signaling with IRQ 26
[    2.305093] pcieport 0000:00:02.0: PME: Signaling with IRQ 28
[    2.305388] pcieport 0000:00:02.2: PME: Signaling with IRQ 29
[    2.305682] pcieport 0000:00:03.0: PME: Signaling with IRQ 31
[    2.305925] pcieport 0000:00:11.0: PME: Signaling with IRQ 32
[    2.306164] pcieport 0000:00:1c.0: PME: Signaling with IRQ 33
[    2.306368] pcieport 0000:00:1c.7: PME: Signaling with IRQ 34
[    2.306859] pcieport 0000:80:00.0: PME: Signaling with IRQ 36
[    2.307211] pcieport 0000:80:01.0: PME: Signaling with IRQ 38
[    2.307508] pcieport 0000:80:02.0: PME: Signaling with IRQ 40
[    2.307863] pcieport 0000:80:03.0: PME: Signaling with IRQ 42
[    2.308174] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    2.308417] Monitor-Mwait will be used to enter C-1 state
[    2.308427] Monitor-Mwait will be used to enter C-2 state
[    2.308433] ACPI: \_SB_.SCK0.C000: Found 2 idle states
[    2.311193] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    2.311294] ACPI: button: Power Button [PWRB]
[    2.311354] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    2.311403] ACPI: button: Power Button [PWRF]
[    2.372770] ERST: Error Record Serialization Table (ERST) support is initialized.
[    2.372887] pstore: Using crash dump compression: deflate
[    2.372890] pstore: Registered erst as persistent store backend
[    2.373146] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    2.393713] 00:06: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    2.414859] 00:07: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    2.417915] Linux agpgart interface v0.103
[    2.428129] loop: module loaded
[    2.428619] tun: Universal TUN/TAP device driver, 1.6
[    2.428699] PPP generic driver version 2.4.2
[    2.428808] i8042: PNP: PS/2 Controller [PNP0f03:PS2M] at 0x60,0x64 irq 12
[    2.428812] i8042: PNP: PS/2 controller doesn't have KBD irq; using default 1
[    2.431806] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.431814] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.431992] mousedev: PS/2 mouse device common for all mice
[    2.432111] rtc_cmos 00:03: RTC can wake from S4
[    2.432365] rtc_cmos 00:03: registered as rtc0
[    2.432401] rtc_cmos 00:03: setting system clock to 2024-05-30T09:38:58 UTC (1717061938)
[    2.432439] rtc_cmos 00:03: alarms up to one month, y3k, 114 bytes nvram
[    2.432451] i2c_dev: i2c /dev entries driver
[    2.434685] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    2.434705] device-mapper: uevent: version 1.0.3
[    2.434806] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
[    2.434834] platform eisa.0: Probing EISA bus 0
[    2.434837] platform eisa.0: EISA: Cannot allocate resource for mainboard
[    2.434839] platform eisa.0: Cannot allocate resource for EISA slot 1
[    2.434841] platform eisa.0: Cannot allocate resource for EISA slot 2
[    2.434843] platform eisa.0: Cannot allocate resource for EISA slot 3
[    2.434844] platform eisa.0: Cannot allocate resource for EISA slot 4
[    2.434846] platform eisa.0: Cannot allocate resource for EISA slot 5
[    2.434848] platform eisa.0: Cannot allocate resource for EISA slot 6
[    2.434849] platform eisa.0: Cannot allocate resource for EISA slot 7
[    2.434851] platform eisa.0: Cannot allocate resource for EISA slot 8
[    2.434852] platform eisa.0: EISA: Detected 0 cards
[    2.434884] intel_pstate: Intel P-state driver initializing
[    2.439698] ledtrig-cpu: registered to indicate activity on CPUs
[    2.439889] drop_monitor: Initializing network drop monitor service
[    2.440099] NET: Registered PF_INET6 protocol family
[    3.296020] tsc: Refined TSC clocksource calibration: 2699.998 MHz
[    3.296073] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x26eb3cc21a9, max_idle_ns: 440795299783 ns
[    3.296241] clocksource: Switched to clocksource tsc
[    6.202363] Freeing initrd memory: 435332K
[    6.211268] Segment Routing with IPv6
[    6.211324] In-situ OAM (IOAM) with IPv6
[    6.211374] NET: Registered PF_PACKET protocol family
[    6.211399] Bridge firewalling registered
[    6.211565] Key type dns_resolver registered
[    6.217266] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    6.219418] microcode: Current revision: 0x00000424
[    6.221762] IPI shorthand broadcast: enabled
[    6.223225] sched_clock: Marking stable (6213700177, 7992629)->(6389166413, -167473607)
[    6.223504] Timer migration: 3 hierarchy levels; 8 children per group; 2 crossnode level
[    6.225206] registered taskstats version 1
[    6.230189] Loading compiled-in X.509 certificates
[    6.230922] Loaded X.509 cert 'Build time autogenerated kernel key: b52fbaaea20ca960898d0699d3e61173a266349a'
[    6.232971] Key type .fscrypt registered
[    6.232974] Key type fscrypt-provisioning registered
[    6.251891] Key type encrypted registered
[    6.251898] AppArmor: AppArmor sha256 policy hashing enabled
[    6.251911] ima: No TPM chip found, activating TPM-bypass!
[    6.251916] Loading compiled-in module X.509 certificates
[    6.252546] Loaded X.509 cert 'Build time autogenerated kernel key: b52fbaaea20ca960898d0699d3e61173a266349a'
[    6.252549] ima: Allocated hash algorithm: sha1
[    6.252563] ima: No architecture policies found
[    6.252574] evm: Initialising EVM extended attributes:
[    6.252575] evm: security.selinux
[    6.252576] evm: security.SMACK64
[    6.252578] evm: security.SMACK64EXEC
[    6.252578] evm: security.SMACK64TRANSMUTE
[    6.252579] evm: security.SMACK64MMAP
[    6.252580] evm: security.apparmor
[    6.252581] evm: security.ima
[    6.252582] evm: security.capability
[    6.252583] evm: HMAC attrs: 0x1
[    6.253068] PM:   Magic number: 8:782:627
[    6.257467] RAS: Correctable Errors collector initialized.
[    6.271499] clk: Disabling unused clocks
[    6.271503] PM: genpd: Disabling unused power domains
[    6.273572] Freeing unused decrypted memory: 2028K
[    6.275691] Freeing unused kernel image (initmem) memory: 4768K
[    6.275782] Write protecting the kernel read-only data: 34816k
[    6.276660] Freeing unused kernel image (rodata/data gap) memory: 1160K
[    6.318956] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    6.318960] x86/mm: Checking user space page tables
[    6.358961] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    6.358968] Run /init as init process
[    6.358969]   with arguments:
[    6.358971]     /init
[    6.358972]   with environment:
[    6.358973]     HOME=/
[    6.358974]     TERM=linux
[    6.358974]     BOOT_IMAGE=/boot/vmlinuz-6.9.3-dirty
[    6.508039] dca service started, version 1.12.1
[    6.512490] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[    6.513707] i2c i2c-0: More than 8 memory slots on a single bus, contact i801 maintainer to add missing mux config
[    6.516582] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    6.516592] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 1
[    6.516606] ehci-pci 0000:00:1d.0: debug port 2
[    6.520141] Adaptec aacraid driver 1.2.1[50983]-custom
[    6.520536] ehci-pci 0000:00:1d.0: irq 23, io mem 0xc6126000
[    6.520628] ahci 0000:00:1f.2: version 3.0
[    6.521165] aacraid: Comm Interface enabled
[    6.530890] ahci 0000:00:1f.2: AHCI vers 0001.0300, 32 command slots, 6 Gbps, SATA mode
[    6.530896] ahci 0000:00:1f.2: 6/6 ports implemented (port mask 0x3f)
[    6.530899] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst 
[    6.536001] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    6.536070] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.09
[    6.536073] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.536075] usb usb1: Product: EHCI Host Controller
[    6.536077] usb usb1: Manufacturer: Linux 6.9.3-dirty ehci_hcd
[    6.536079] usb usb1: SerialNumber: 0000:00:1d.0
[    6.536228] hub 1-0:1.0: USB hub found
[    6.536239] hub 1-0:1.0: 2 ports detected
[    6.536549] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    6.536556] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 2
[    6.536567] ehci-pci 0000:00:1a.0: debug port 2
[    6.537575] igb: Intel(R) Gigabit Ethernet Network Driver
[    6.537578] igb: Copyright (c) 2007-2014 Intel Corporation.
[    6.540491] ehci-pci 0000:00:1a.0: irq 17, io mem 0xc6127000
[    6.563480] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    6.563545] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.09
[    6.563548] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.563550] usb usb2: Product: EHCI Host Controller
[    6.563551] usb usb2: Manufacturer: Linux 6.9.3-dirty ehci_hcd
[    6.563553] usb usb2: SerialNumber: 0000:00:1a.0
[    6.563677] hub 2-0:1.0: USB hub found
[    6.563685] hub 2-0:1.0: 2 ports detected
[    6.582944] isci: Intel(R) C600 SAS Controller Driver - version 1.2.0
[    6.582971] isci 0000:06:00.0: driver configured for rev: 6 silicon
[    6.582985] isci 0000:06:00.0: OEM parameter table found in OROM
[    6.582988] isci 0000:06:00.0: OEM SAS parameters (version: 1.1) loaded (platform)
[    6.583265] isci 0000:06:00.0: SCU controller 0: phy 3-0 cables: {short, short, short, short}
[    6.585757] scsi host1: isci
[    6.592619] scsi host2: ahci
[    6.592856] scsi host3: ahci
[    6.593027] scsi host4: ahci
[    6.593174] scsi host5: ahci
[    6.593338] scsi host6: ahci
[    6.593574] scsi host7: ahci
[    6.593623] ata1: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125100 irq 43 lpm-pol 0
[    6.593626] ata2: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125180 irq 43 lpm-pol 0
[    6.593629] ata3: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125200 irq 43 lpm-pol 0
[    6.593630] ata4: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125280 irq 43 lpm-pol 0
[    6.593632] ata5: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125300 irq 43 lpm-pol 0
[    6.593634] ata6: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125380 irq 43 lpm-pol 0
[    6.611158] igb 0000:07:00.0: added PHC on eth0
[    6.611180] igb 0000:07:00.0: Intel(R) Gigabit Ethernet Network Connection
[    6.611182] igb 0000:07:00.0: eth0: (PCIe:5.0Gb/s:Width x4) e0:3f:49:e7:2a:31
[    6.611257] igb 0000:07:00.0: eth0: PBA No: 104900-000
[    6.611258] igb 0000:07:00.0: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s)
[    6.667156] igb 0000:07:00.1: added PHC on eth1
[    6.667178] igb 0000:07:00.1: Intel(R) Gigabit Ethernet Network Connection
[    6.667180] igb 0000:07:00.1: eth1: (PCIe:5.0Gb/s:Width x4) e0:3f:49:e7:2a:32
[    6.667255] igb 0000:07:00.1: eth1: PBA No: 104900-000
[    6.667256] igb 0000:07:00.1: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s)
[    6.732339] AAC0: kernel 5.2-0[18948] Apr 13 2012
[    6.732344] AAC0: monitor 5.2-0[18948]
[    6.732346] AAC0: bios 5.2-0[18948]
[    6.732362] AAC0: serial 3E4313486E1
[    6.732363] AAC0: Non-DASD support enabled.
[    6.732364] AAC0: 64bit support enabled.
[    6.732366] aacraid 0000:04:00.0: 64 Bit DAC enabled
[    6.746998] scsi host0: aacraid
[    6.747329] scsi 0:0:0:0: Direct-Access     Adaptec  linus_raid1_1tb  V1.0 PQ: 0 ANSI: 2
[    6.747516] scsi 0:0:1:0: Direct-Access     Adaptec  linus_raid5_5tb  V1.0 PQ: 0 ANSI: 2
[    6.758058] scsi 0:1:0:0: Direct-Access              Samsung SSD 860  RVM0 PQ: 1 ANSI: 5
[    6.761460] scsi 0:1:1:0: Direct-Access              Samsung SSD 860  RVM0 PQ: 1 ANSI: 5
[    6.764893] scsi 0:1:2:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    6.768534] scsi 0:1:3:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    6.772219] scsi 0:1:4:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    6.775899] scsi 0:1:5:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    6.779558] scsi 0:1:6:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    6.783247] scsi 0:1:7:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    6.804076] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    6.820014] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    6.866252] scsi 0:3:0:0: Enclosure         ADAPTEC  Virtual SGPIO  0 0001 PQ: 0 ANSI: 5
[    6.906871] ata5: SATA link down (SStatus 0 SControl 300)
[    6.906892] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    6.906938] ata6: SATA link down (SStatus 0 SControl 300)
[    6.907009] ata4: SATA link down (SStatus 0 SControl 300)
[    6.907041] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    6.907063] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    6.907188] ata1.00: ATA-9: M4-CT256M4SSD2, 0309, max UDMA/100
[    6.907323] ata2.00: ATA-9: M4-CT256M4SSD2, 0309, max UDMA/100
[    6.907393] ata1.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    6.907497] ata2.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    6.907838] ata1.00: configured for UDMA/100
[    6.907874] ata2.00: configured for UDMA/100
[    6.908939] ata3.00: ATAPI: ATAPI   iHAS124   W, HL0F, max UDMA/100
[    6.910961] ata3.00: configured for UDMA/100
[    6.960453] usb 1-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[    6.960458] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    6.960746] hub 1-1:1.0: USB hub found
[    6.960845] hub 1-1:1.0: 8 ports detected
[    6.976453] usb 2-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[    6.976458] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    6.976617] hub 2-1:1.0: USB hub found
[    6.976702] hub 2-1:1.0: 6 ports detected
[    7.007144] scsi 0:3:0:0: scsi_get_vpd_size: long VPD page 0 length: 516 bytes
[    7.016141] scsi: waiting for bus probes to complete ...
[    7.248073] usb 1-1.1: new low-speed USB device number 3 using ehci-pci
[    7.264063] usb 2-1.3: new high-speed USB device number 3 using ehci-pci
[    7.362177] usb 1-1.1: New USB device found, idVendor=046d, idProduct=c31c, bcdDevice=64.02
[    7.362181] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    7.362183] usb 1-1.1: Product: USB Keyboard
[    7.362184] usb 1-1.1: Manufacturer: Logitech
[    7.376375] hid: raw HID events driver (C) Jiri Kosina
[    7.440520] input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input4
[    7.561453] usb 2-1.3: New USB device found, idVendor=046b, idProduct=ff01, bcdDevice= 1.00
[    7.561457] usb 2-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    7.561459] usb 2-1.3: Product: Virtual Hub
[    7.561460] usb 2-1.3: Manufacturer: American Megatrends Inc.
[    7.561461] usb 2-1.3: SerialNumber: serial
[    7.561967] hub 2-1.3:1.0: USB hub found
[    7.562077] hub 2-1.3:1.0: 5 ports detected
[    7.900068] usb 2-1.3.1: new low-speed USB device number 4 using ehci-pci
[    8.073208] usb 2-1.3.1: New USB device found, idVendor=046b, idProduct=ff10, bcdDevice= 1.00
[    8.073212] usb 2-1.3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    8.073214] usb 2-1.3.1: Product: Virtual Keyboard and Mouse
[    8.073215] usb 2-1.3.1: Manufacturer: American Megatrends Inc.
[    8.129090] usbcore: registered new interface driver usbhid
[    8.129093] usbhid: USB HID core driver
[    8.204063] usb 2-1.3.2: new high-speed USB device number 5 using ehci-pci
[    8.376955] usb 2-1.3.2: New USB device found, idVendor=046b, idProduct=ff20, bcdDevice= 1.00
[    8.376959] usb 2-1.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    8.376961] usb 2-1.3.2: Product: Virtual Cdrom Device
[    8.376962] usb 2-1.3.2: Manufacturer: American Megatrends Inc.
[    8.376963] usb 2-1.3.2: SerialNumber: AAAABBBBCCCC1
[    8.386545] usb-storage 2-1.3.2:1.0: USB Mass Storage device detected
[    8.386802] scsi host8: usb-storage 2-1.3.2:1.0
[    8.386886] usbcore: registered new interface driver usb-storage
[    8.508077] usb 2-1.3.3: new high-speed USB device number 6 using ehci-pci
[    8.680955] usb 2-1.3.3: New USB device found, idVendor=046b, idProduct=ff40, bcdDevice= 1.00
[    8.680960] usb 2-1.3.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    8.680961] usb 2-1.3.3: Product: Virtual Floppy Device
[    8.680963] usb 2-1.3.3: Manufacturer: American Megatrends Inc.
[    8.680964] usb 2-1.3.3: SerialNumber: AAAABBBBCCCC2
[    8.681357] usb-storage 2-1.3.3:1.0: USB Mass Storage device detected
[    8.681599] usb-storage 2-1.3.3:1.0: Quirks match for vid 046b pid ff40: 200
[    8.681694] scsi host9: usb-storage 2-1.3.3:1.0
[    8.685507] usbcore: registered new interface driver uas
[    8.812072] usb 2-1.3.4: new high-speed USB device number 7 using ehci-pci
[    8.984955] usb 2-1.3.4: New USB device found, idVendor=046b, idProduct=ff31, bcdDevice= 1.00
[    8.984959] usb 2-1.3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    8.984961] usb 2-1.3.4: Product: Virtual HardDisk Device
[    8.984962] usb 2-1.3.4: Manufacturer: American Megatrends Inc.
[    8.984964] usb 2-1.3.4: SerialNumber: AAAABBBBCCCC3
[    8.985360] usb-storage 2-1.3.4:1.0: USB Mass Storage device detected
[    8.985611] scsi host10: usb-storage 2-1.3.4:1.0
[    9.408747] scsi 8:0:0:0: CD-ROM            AMI      Virtual CDROM0   1.00 PQ: 0 ANSI: 0 CCS
[    9.696921] scsi 9:0:0:0: Direct-Access     AMI      Virtual Floppy0  1.00 PQ: 0 ANSI: 0 CCS
[   10.016921] scsi 10:0:0:0: Direct-Access     AMI      Virtual HDISK0   1.00 PQ: 0 ANSI: 0 CCS
[   36.257491] scsi 0:3:1:0: Enclosure         ADAPTEC  Virtual SGPIO  1 0001 PQ: 0 ANSI: 5
[   65.452422] scsi 0:0:0:0: Attached scsi generic sg0 type 0
[   65.452560] scsi 0:0:1:0: Attached scsi generic sg1 type 0
[   65.452702] sd 0:0:0:0: [sda] 1998565376 512-byte logical blocks: (1.02 TB/953 GiB)
[   65.452722] scsi 0:1:0:0: Attached scsi generic sg2 type 0
[   65.452723] sd 0:0:0:0: [sda] Write Protect is off
[   65.452726] sd 0:0:0:0: [sda] Mode Sense: 12 00 10 08
[   65.452748] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, supports DPO and FUA
[   65.452867] scsi 0:1:1:0: Attached scsi generic sg3 type 0
[   65.452894] sd 0:0:1:0: [sdb] Very big device. Trying to use READ CAPACITY(16).
[   65.452905] sd 0:0:1:0: [sdb] 9762222080 512-byte logical blocks: (5.00 TB/4.54 TiB)
[   65.452914] sd 0:0:1:0: [sdb] Write Protect is off
[   65.452916] sd 0:0:1:0: [sdb] Mode Sense: 12 00 10 08
[   65.452944] sd 0:0:1:0: [sdb] Write cache: disabled, read cache: enabled, supports DPO and FUA
[   65.453046] scsi 0:1:2:0: Attached scsi generic sg4 type 0
[   65.453202] scsi 0:1:3:0: Attached scsi generic sg5 type 0
[   65.453314] scsi 0:1:4:0: Attached scsi generic sg6 type 0
[   65.453426] scsi 0:1:5:0: Attached scsi generic sg7 type 0
[   65.453491] sd 0:0:1:0: [sdb] Very big device. Trying to use READ CAPACITY(16).
[   65.453550] scsi 0:1:6:0: Attached scsi generic sg8 type 0
[   65.453668] sd 0:0:0:0: [sda] Attached SCSI removable disk
[   65.453699] scsi 0:1:7:0: Attached scsi generic sg9 type 0
[   65.453710] sd 0:0:1:0: [sdb] Attached SCSI removable disk
[   65.453856] scsi 0:3:0:0: Attached scsi generic sg10 type 13
[   65.453980] scsi 0:3:1:0: Attached scsi generic sg11 type 13
[   65.454117] scsi 2:0:0:0: Direct-Access     ATA      M4-CT256M4SSD2   0309 PQ: 0 ANSI: 5
[   65.454434] sd 2:0:0:0: Attached scsi generic sg12 type 0
[   65.454507] scsi: waiting for bus probes to complete ...
[   65.454557] sd 2:0:0:0: [sdc] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[   65.454576] sd 2:0:0:0: [sdc] Write Protect is off
[   65.454581] sd 2:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[   65.454605] sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   65.454645] sd 2:0:0:0: [sdc] Preferred minimum I/O size 512 bytes
[   65.455635]  sdc: sdc1 sdc2 < sdc5 >
[   65.455787] sd 2:0:0:0: [sdc] Attached SCSI removable disk
[   65.456749] sr 8:0:0:0: [sr0] scsi-1 drive
[   65.456754] cdrom: Uniform CD-ROM driver Revision: 3.20
[   65.457824] sr 8:0:0:0: Attached scsi CD-ROM sr0
[   65.457929] sr 8:0:0:0: Attached scsi generic sg13 type 5
[   65.458194] sd 9:0:0:0: Attached scsi generic sg14 type 0
[   65.458361] sd 10:0:0:0: Attached scsi generic sg15 type 0
[   65.458531] scsi 3:0:0:0: Direct-Access     ATA      M4-CT256M4SSD2   0309 PQ: 0 ANSI: 5
[   65.458966] sd 3:0:0:0: Attached scsi generic sg16 type 0
[   65.459060] sd 3:0:0:0: [sdf] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[   65.459086] sd 3:0:0:0: [sdf] Write Protect is off
[   65.459091] sd 3:0:0:0: [sdf] Mode Sense: 00 3a 00 00
[   65.459122] sd 3:0:0:0: [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   65.459129] sd 9:0:0:0: [sdd] Media removed, stopped polling
[   65.459166] sd 3:0:0:0: [sdf] Preferred minimum I/O size 512 bytes
[   65.459254] sd 10:0:0:0: [sde] Media removed, stopped polling
[   65.459576] sd 9:0:0:0: [sdd] Attached SCSI removable disk
[   65.459673] scsi 4:0:0:0: CD-ROM            ATAPI    iHAS124   W      HL0F PQ: 0 ANSI: 5
[   65.459778] sd 10:0:0:0: [sde] Attached SCSI removable disk
[   65.461172]  sdf: sdf1
[   65.461246] sd 3:0:0:0: [sdf] Attached SCSI removable disk
[   65.578798] sr 4:0:0:0: [sr1] scsi3-mmc drive: 188x/125x writer dvd-ram cd/rw xa/form2 cdda tray
[   65.609705] sr 4:0:0:0: Attached scsi CD-ROM sr1
[   65.609807] sr 4:0:0:0: Attached scsi generic sg17 type 5
[   65.611625] igb 0000:07:00.0 enp7s0f0: renamed from eth0
[   65.612499] igb 0000:07:00.1 enp7s0f1: renamed from eth1
[   65.613481] usbcore: registered new interface driver usbkbd
[   65.613495] usbcore: registered new interface driver usbmouse
[   65.618745] ses 0:3:0:0: Attached Enclosure device
[   65.618763] ses 0:3:1:0: Attached Enclosure device
[   65.619814] input: Logitech USB Keyboard as /devices/pci0000:00/0000:00:1d.0/usb1/1-1/1-1.1/1-1.1:1.0/0003:046D:C31C.0001/input/input5
[   65.676105] hid-generic 0003:046D:C31C.0001: input,hidraw0: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-0000:00:1d.0-1.1/input0
[   65.676296] input: Logitech USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:1d.0/usb1/1-1/1-1.1/1-1.1:1.1/0003:046D:C31C.0002/input/input6
[   65.736125] input: Logitech USB Keyboard System Control as /devices/pci0000:00/0000:00:1d.0/usb1/1-1/1-1.1/1-1.1:1.1/0003:046D:C31C.0002/input/input7
[   65.736222] hid-generic 0003:046D:C31C.0002: input,hiddev0,hidraw1: USB HID v1.10 Device [Logitech USB Keyboard] on usb-0000:00:1d.0-1.1/input1
[   65.736425] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.0/usb2/2-1/2-1.3/2-1.3.1/2-1.3.1:1.0/0003:046B:FF10.0003/input/input8
[   65.736516] hid-generic 0003:046B:FF10.0003: input,hidraw2: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.0-1.3.1/input0
[   65.736648] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.0/usb2/2-1/2-1.3/2-1.3.1/2-1.3.1:1.1/0003:046B:FF10.0004/input/input9
[   65.736727] hid-generic 0003:046B:FF10.0004: input,hidraw3: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.0-1.3.1/input1
[   76.545604] device-mapper: thin: Data device (dm-1) discard unsupported: Disabling discard passdown.
[   79.630182] device-mapper: thin: Data device (dm-3) discard unsupported: Disabling discard passdown.
[  130.424004] raid6: sse2x4   gen() 13261 MB/s
[  130.492007] raid6: sse2x2   gen()  9201 MB/s
[  130.560008] raid6: sse2x1   gen()  8701 MB/s
[  130.560009] raid6: using algorithm sse2x4 gen() 13261 MB/s
[  130.628006] raid6: .... xor() 7816 MB/s, rmw enabled
[  130.628007] raid6: using ssse3x2 recovery algorithm
[  130.630054] xor: automatically using best checksumming function   avx       
[  130.848249] Btrfs loaded, zoned=yes, fsverity=yes
[  131.319980] PM: Image not found (code -22)
[  131.373345] EXT4-fs (sdc1): mounted filesystem 3842ebdd-e37f-4e4e-afd4-d7eb79b41984 ro with ordered data mode. Quota mode: none.
[  131.648202] systemd[1]: Inserted module 'autofs4'
[  131.680300] systemd[1]: systemd 252.22-1~deb12u1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[  131.680308] systemd[1]: Detected architecture x86-64.
[  131.682689] systemd[1]: Hostname set to <linus.localdomain>.
[  131.903603] systemd[1]: Queued start job for default target graphical.target.
[  131.934015] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[  131.934607] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[  131.935139] systemd[1]: Created slice system-postfix.slice - Slice /system/postfix.
[  131.935533] systemd[1]: Created slice user.slice - User and Session Slice.
[  131.935604] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[  131.935661] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[  131.935820] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[  131.935847] systemd[1]: Expecting device dev-disk-by\x2duuid-e5873103\x2d5ea5\x2d4dc0\x2da645\x2db8c511b219a8.device - /dev/disk/by-uuid/e5873103-5ea5-4dc0-a645-b8c511b219a8...
[  131.935857] systemd[1]: Expecting device dev-disk-by\x2duuid-fcf5433d\x2d28bd\x2d4d22\x2db3ba\x2ddd7262ae33a9.device - /dev/disk/by-uuid/fcf5433d-28bd-4d22-b3ba-dd7262ae33a9...
[  131.935871] systemd[1]: Reached target ceph-fuse.target - ceph target allowing to start/stop all ceph-fuse@.service instances at once.
[  131.935885] systemd[1]: Reached target ceph.target - ceph target allowing to start/stop all ceph*@.service instances at once.
[  131.935898] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
[  131.935918] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[  131.935948] systemd[1]: Reached target paths.target - Path Units.
[  131.935979] systemd[1]: Reached target slices.target - Slice Units.
[  131.936069] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[  131.936259] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[  131.936407] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[  131.940482] systemd[1]: Listening on rpcbind.socket - RPCbind Server Activation Socket.
[  131.941074] systemd[1]: Listening on syslog.socket - Syslog Socket.
[  131.941209] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[  131.941307] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[  131.941709] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
[  131.941838] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[  131.941987] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[  131.942356] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[  131.942467] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[  131.943547] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[  131.944717] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[  131.945872] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[  131.947010] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[  131.947077] systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
[  131.948566] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[  131.949750] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[  131.951126] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[  131.952297] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[  131.953364] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[  131.954474] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[  131.955582] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[  131.956957] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[  131.958110] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
[  131.958351] systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).
[  131.960493] systemd[1]: Starting systemd-journald.service - Journal Service...
[  131.963433] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[  131.964775] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[  131.966113] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[  131.967840] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[  131.967954] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[  131.968095] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[  131.968223] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[  131.968550] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[  131.968933] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[  131.969093] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[  131.969395] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[  131.969547] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[  131.969814] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[  131.969991] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[  131.970258] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[  131.970422] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[  131.970686] systemd[1]: modprobe@loop.service: Deactivated successfully.
[  131.970849] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.
[  131.972285] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[  131.973697] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[  131.973797] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
[  131.974893] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[  131.976085] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[  132.009618] VFIO - User Level meta-driver version: 0.3
[  132.011611] EXT4-fs (sdc1): re-mounted 3842ebdd-e37f-4e4e-afd4-d7eb79b41984 r/w. Quota mode: none.
[  132.012757] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[  132.012993] systemd[1]: systemd-firstboot.service - First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
[  132.014242] systemd[1]: Starting systemd-pstore.service - Platform Persistent Storage Archival...
[  132.015425] systemd[1]: Starting systemd-random-seed.service - Load/Save Random Seed...
[  132.016806] systemd[1]: Starting systemd-sysusers.service - Create System Users...
[  132.028934] systemd[1]: Finished systemd-pstore.service - Platform Persistent Storage Archival.
[  132.035389] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[  132.041582] vfio-pci 0000:05:00.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=none
[  132.041829] vfio_pci: add [10de:1201[ffffffff:ffffffff]] class 0x000000/00000000
[  132.044816] systemd[1]: Finished systemd-random-seed.service - Load/Save Random Seed.
[  132.044935] systemd[1]: first-boot-complete.target - First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
[  132.046601] systemd[1]: Started dm-event.service - Device-mapper event daemon.
[  132.066214] systemd[1]: Finished systemd-sysusers.service - Create System Users.
[  132.067490] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[  132.076487] ACPI: bus type drm_connector registered
[  132.078759] systemd[1]: modprobe@drm.service: Deactivated successfully.
[  132.078943] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[  132.088231] vfio_pci: add [10de:0e0c[ffffffff:ffffffff]] class 0x000000/00000000
[  132.095819] systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
[  132.097293] systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
[  132.112664] systemd[1]: Started systemd-journald.service - Journal Service.
[  132.120068] systemd-journald[845]: Received client request to flush runtime journal.
[  132.255234] IPMI message handler: version 39.2
[  132.266129] ipmi device interface
[  132.268536] ioatdma: Intel(R) QuickData Technology Driver 5.00
[  132.279779] input: PC Speaker as /devices/platform/pcspkr/input/input10
[  132.288142] igb 0000:07:00.0: DCA enabled
[  132.288176] igb 0000:07:00.1: DCA enabled
[  132.296243] ipmi_si: IPMI System Interface driver
[  132.296282] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
[  132.296288] ipmi_platform: ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
[  132.296293] ipmi_si: Adding SMBIOS-specified kcs state machine
[  132.296405] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
[  132.296632] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca2] regsize 1 spacing 1 irq 0
[  132.296919] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
[  132.296922] ipmi_si: Adding ACPI-specified kcs state machine
[  132.297109] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca2, slave address 0x20, irq 0
[  132.316235] mei_me 0000:00:16.0: Device doesn't have valid ME Interface
[  132.363653] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
[  132.363661] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[  132.363662] RAPL PMU: hw unit of domain package 2^-16 Joules
[  132.363663] RAPL PMU: hw unit of domain dram 2^-16 Joules
[  132.374098] cryptd: max_cpu_qlen set to 1000
[  132.391800] AVX version of gcm_enc/dec engaged.
[  132.391914] AES CTR mode by8 optimization enabled
[  132.392204] ast 0000:0a:00.0: vgaarb: deactivate vga console
[  132.393653] Console: switching to colour dummy device 80x25
[  132.393867] ast 0000:0a:00.0: Using P2A bridge for configuration
[  132.393870] ast 0000:0a:00.0: AST 2300 detected
[  132.393954] ast 0000:0a:00.0: [drm] Using analog VGA
[  132.393964] ast 0000:0a:00.0: [drm] dram MCLK=408 Mhz type=1 bus_width=16
[  132.408209] [drm] Initialized ast 0.1.0 20120228 for 0000:0a:00.0 on minor 0
[  132.564233] fbcon: astdrmfb (fb0) is primary device
[  132.617824] Console: switching to colour frame buffer device 210x65
[  132.698170] ast 0000:0a:00.0: [drm] fb0: astdrmfb frame buffer device
[  132.822372] snd_hda_intel 0000:00:1b.0: no codecs found!
[  132.899883] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x000a3f, prod_id: 0x0c63, dev_id: 0x20)
[  132.938885] Adding 31307772k swap on /dev/sdc5.  Priority:-2 extents:1 across:31307772k SS
[  132.979219] EXT4-fs (sdf1): mounted filesystem fcf5433d-28bd-4d22-b3ba-dd7262ae33a9 r/w with ordered data mode. Quota mode: none.
[  133.166291] ipmi_si IPI0001:00: IPMI kcs interface initialized
[  133.172479] ipmi_ssif: IPMI SSIF Interface driver
[  133.251228] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[  133.251271] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[  133.251291] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[  133.251300] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[  133.251307] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[  133.251313] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[  133.251315] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[  133.251320] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[  133.251326] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[  133.251329] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[  133.251334] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[  133.251339] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[  133.251342] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[  133.251348] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[  133.251353] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[  133.251356] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[  133.251361] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[  133.251367] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[  133.251369] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[  133.251375] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[  133.251381] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[  133.251383] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[  133.251389] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[  133.251394] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[  133.251397] EDAC sbridge: Seeking for: PCI ID 8086:0e68
[  133.251403] EDAC sbridge: Seeking for: PCI ID 8086:0e68
[  133.251408] EDAC sbridge: Seeking for: PCI ID 8086:0e68
[  133.251410] EDAC sbridge: Seeking for: PCI ID 8086:0e79
[  133.251416] EDAC sbridge: Seeking for: PCI ID 8086:0e79
[  133.251422] EDAC sbridge: Seeking for: PCI ID 8086:0e79
[  133.251424] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[  133.251430] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[  133.251435] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[  133.251437] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[  133.251443] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[  133.251449] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[  133.251451] EDAC sbridge: Seeking for: PCI ID 8086:0e6c
[  133.251457] EDAC sbridge: Seeking for: PCI ID 8086:0e6c
[  133.251463] EDAC sbridge: Seeking for: PCI ID 8086:0e6c
[  133.251464] EDAC sbridge: Seeking for: PCI ID 8086:0e6d
[  133.251471] EDAC sbridge: Seeking for: PCI ID 8086:0e6d
[  133.251477] EDAC sbridge: Seeking for: PCI ID 8086:0e6d
[  133.251478] EDAC sbridge: Seeking for: PCI ID 8086:0eb8
[  133.251486] EDAC sbridge: Seeking for: PCI ID 8086:0ebc
[  133.251494] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[  133.251500] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[  133.251506] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[  133.251508] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[  133.251513] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[  133.251519] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[  133.251521] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[  133.251527] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[  133.251533] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[  133.251627] EDAC MC0: Giving out device to module sb_edac controller Ivy Bridge SrcID#0_Ha#0: DEV 0000:7f:0e.0 (INTERRUPT)
[  133.251707] EDAC MC1: Giving out device to module sb_edac controller Ivy Bridge SrcID#1_Ha#0: DEV 0000:ff:0e.0 (INTERRUPT)
[  133.251786] EDAC MC2: Giving out device to module sb_edac controller Ivy Bridge SrcID#0_Ha#1: DEV 0000:7f:1c.0 (INTERRUPT)
[  133.251852] EDAC MC3: Giving out device to module sb_edac controller Ivy Bridge SrcID#1_Ha#1: DEV 0000:ff:1c.0 (INTERRUPT)
[  133.251854] EDAC sbridge:  Ver: 1.1.2 
[  133.277857] intel_rapl_common: Found RAPL domain package
[  133.277867] intel_rapl_common: Found RAPL domain core
[  133.277873] intel_rapl_common: Found RAPL domain dram
[  133.277882] intel_rapl_common: package-0:core:long_term locked by BIOS
[  133.277886] intel_rapl_common: package-0:dram:long_term locked by BIOS
[  133.283318] intel_rapl_common: Found RAPL domain package
[  133.283325] intel_rapl_common: Found RAPL domain core
[  133.283331] intel_rapl_common: Found RAPL domain dram
[  133.283340] intel_rapl_common: package-1:core:long_term locked by BIOS
[  133.283344] intel_rapl_common: package-1:dram:long_term locked by BIOS
[  133.383339] audit: type=1400 audit(1717062069.443:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="pve-container-mounthotplug" pid=1520 comm="apparmor_parser"
[  133.383570] audit: type=1400 audit(1717062069.443:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/lxc-copy" pid=1523 comm="apparmor_parser"
[  133.383630] audit: type=1400 audit(1717062069.443:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/lxc-start" pid=1525 comm="apparmor_parser"
[  133.386346] audit: type=1400 audit(1717062069.447:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="swtpm" pid=1527 comm="apparmor_parser"
[  133.387533] audit: type=1400 audit(1717062069.447:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=1517 comm="apparmor_parser"
[  133.387604] audit: type=1400 audit(1717062069.447:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=1519 comm="apparmor_parser"
[  133.387610] audit: type=1400 audit(1717062069.447:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=1519 comm="apparmor_parser"
[  133.388936] audit: type=1400 audit(1717062069.451:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=1526 comm="apparmor_parser"
[  133.388943] audit: type=1400 audit(1717062069.451:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=1526 comm="apparmor_parser"
[  133.388946] audit: type=1400 audit(1717062069.451:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=1526 comm="apparmor_parser"
[  133.494028] softdog: initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout=0)
[  133.494034] softdog:              soft_reboot_cmd=<not set> soft_active_on_boot=0
[  133.571475] RPC: Registered named UNIX socket transport module.
[  133.571480] RPC: Registered udp transport module.
[  133.571481] RPC: Registered tcp transport module.
[  133.571482] RPC: Registered tcp-with-tls transport module.
[  133.571483] RPC: Registered tcp NFSv4.1 backchannel transport module.
[  134.429930] vmbr0: port 1(enp7s0f0) entered blocking state
[  134.429939] vmbr0: port 1(enp7s0f0) entered disabled state
[  134.429957] igb 0000:07:00.0 enp7s0f0: entered allmulticast mode
[  134.430012] igb 0000:07:00.0 enp7s0f0: entered promiscuous mode
[  135.055536] Loading iSCSI transport class v2.0-870.
[  137.844485] igb 0000:07:00.0 enp7s0f0: igb: enp7s0f0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX
[  137.844721] vmbr0: port 1(enp7s0f0) entered blocking state
[  137.844725] vmbr0: port 1(enp7s0f0) entered forwarding state
[  147.549743] kvm_intel: L1TF CPU bug present and SMT on, data leak possible. See CVE-2018-3646 and https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/l1tf.html for details.
[  147.946912] netfs: FS-Cache loaded
[  148.424604] NFS: Registering the id_resolver key type
[  148.424616] Key type id_resolver registered
[  148.424618] Key type id_legacy registered

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 236 bytes --]

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: Kernel 6.9 regression: X86: Bogus messages from topology detection
  2024-05-30 10:06         ` Peter Schneider
@ 2024-05-30 13:35           ` Thomas Gleixner
  2024-05-30 15:53             ` Thomas Gleixner
  0 siblings, 1 reply; 29+ messages in thread
From: Thomas Gleixner @ 2024-05-30 13:35 UTC (permalink / raw)
  To: Peter Schneider; +Cc: LKML, x86, stable, regressions

Peter!

On Thu, May 30 2024 at 12:06, Peter Schneider wrote:
> Am 30.05.24 um 10:30 schrieb Thomas Gleixner:
>
>> Can you please apply the debug patch below ad provide the full dmesg
>> after boot?
>
> Here you go... The patch applied cleanly against 6.9.3, which I saw
> was just released by Greg, so I used that. If you want, I can repeat
> the test against 6.9.2, too.

.3 is fine

> Please note: to be able to boot any kernel >= 6.8.4 on my machine, I also had to apply 
> this patch by Martin Petersen, fixing another (unrelated SCSI) regression I reported some 
> time ago, see here:
>
> https://lore.kernel.org/all/20240521023040.2703884-1-martin.petersen@oracle.com/
>
> But I think these two issues are not connected in any way. It was during testing the above 
> patch by Martin that I noticed this new issue in 6.9 BTW.

Right. It's a seperate problem.

> I have attached resulting file dmesg_6.9.3-dirty_Bad_wDebugInfo.txt,
> and I hope you can make some sense of it.

It's exactly what I expected but it does not make any sense at all.

>     [    0.000000] Legacy: 2 5 5

So that means that during early boot where the topology parameters are
decoded from CPUID the CPUID evaluation code sees that the maximum
supported CPUID leaf is 0x02 and it therefore reads complete non-sense.

Later on when the full CPUID evaluation happens it sees the full space
and uses leaf 0xb.

>     [    1.687649] L:b 0 0 S:1 N:2 T:1
>     [    1.687652] D: 0
>     [    1.687653] L:b 1 1 S:5 N:24 T:2
>     [    1.687655] D: 1
>     [    1.687656] L:b 2 2 S:0 N:0 T:0
>     [    1.687658] [Firmware Bug]: CPU0: Topology domain 0 shift 1 != 5

And this obviously sees the proper numbers and complains about the
inconsistency.

So something on this CPU is broken. The same problem exists on all APs:

>     [    1.790035] .... node  #0, CPUs:        #4
>     [    1.790312] .... node  #1, CPUs:   #12 #16
>     [    0.011992] Legacy: 2 5 5
>     [    0.011992] Legacy: 2 5 5
>     [    0.011992] Legacy: 2 5 5
>     [    0.011992] Legacy: 2 5 5
      .....

Now the million-dollar question is what unlocks CPUID to read the proper
value of EAX of leaf 0. All I could come up with is to sprinkle a dozen
of printks into that code. Updated debug patch below.

Thanks,

        tglx
---
--- a/arch/x86/kernel/cpu/topology_common.c
+++ b/arch/x86/kernel/cpu/topology_common.c
@@ -65,6 +65,7 @@ static void parse_legacy(struct topo_sca
 		cores <<= smt_shift;
 	}
 
+	pr_info("Legacy: %u %u %u\n", c->cpuid_level, smt_shift, core_shift);
 	topology_set_dom(tscan, TOPO_SMT_DOMAIN, smt_shift, 1U << smt_shift);
 	topology_set_dom(tscan, TOPO_CORE_DOMAIN, core_shift, cores);
 }
--- a/arch/x86/kernel/cpu/topology_ext.c
+++ b/arch/x86/kernel/cpu/topology_ext.c
@@ -72,6 +72,9 @@ static inline bool topo_subleaf(struct t
 
 	cpuid_subleaf(leaf, subleaf, &sl);
 
+	pr_info("L:%0x %0x %0x S:%u N:%u T:%u\n", leaf, subleaf, sl.level, sl.x2apic_shift,
+		sl.num_processors, sl.type);
+
 	if (!sl.num_processors || sl.type == INVALID_TYPE)
 		return false;
 
@@ -97,6 +100,7 @@ static inline bool topo_subleaf(struct t
 			     leaf, subleaf, tscan->c->topo.initial_apicid, sl.x2apic_id);
 	}
 
+	pr_info("D: %u\n", dom);
 	topology_set_dom(tscan, dom, sl.x2apic_shift, sl.num_processors);
 	return true;
 }
--- a/arch/x86/kernel/cpu/common.c
+++ b/arch/x86/kernel/cpu/common.c
@@ -1584,22 +1584,30 @@ static void __init early_identify_cpu(st
 	/* cyrix could have cpuid enabled via c_identify()*/
 	if (have_cpuid_p()) {
 		cpu_detect(c);
+		pr_info("MAXL1: %x\n", cpuid_eax(0));
 		get_cpu_vendor(c);
+		pr_info("MAXL2: %x\n", cpuid_eax(0));
 		get_cpu_cap(c);
+		pr_info("MAXL3: %x\n", cpuid_eax(0));
 		setup_force_cpu_cap(X86_FEATURE_CPUID);
 		get_cpu_address_sizes(c);
+		pr_info("MAXL4: %x\n", cpuid_eax(0));
 		cpu_parse_early_param();
+		pr_info("MAXL5: %x\n", cpuid_eax(0));
 
 		cpu_init_topology(c);
+		pr_info("MAXL6: %x\n", cpuid_eax(0));
 
 		if (this_cpu->c_early_init)
 			this_cpu->c_early_init(c);
+		pr_info("MAXL7: %x\n", cpuid_eax(0));
 
 		c->cpu_index = 0;
 		filter_cpuid_features(c, false);
 
 		if (this_cpu->c_bsp_init)
 			this_cpu->c_bsp_init(c);
+		pr_info("MAXL8: %x\n", cpuid_eax(0));
 	} else {
 		setup_clear_cpu_cap(X86_FEATURE_CPUID);
 		get_cpu_address_sizes(c);
@@ -1797,9 +1805,12 @@ static void identify_cpu(struct cpuinfo_
 #ifdef CONFIG_X86_VMX_FEATURE_NAMES
 	memset(&c->vmx_capability, 0, sizeof(c->vmx_capability));
 #endif
+	pr_info("MAXLG1: %x\n", cpuid_eax(0));
 
 	generic_identify(c);
 
+	pr_info("MAXLG2: %x\n", cpuid_eax(0));
+
 	cpu_parse_topology(c);
 
 	if (this_cpu->c_identify)

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: Kernel 6.9 regression: X86: Bogus messages from topology detection
  2024-05-30 13:35           ` Thomas Gleixner
@ 2024-05-30 15:53             ` Thomas Gleixner
  2024-05-30 16:24               ` Thomas Gleixner
  0 siblings, 1 reply; 29+ messages in thread
From: Thomas Gleixner @ 2024-05-30 15:53 UTC (permalink / raw)
  To: Peter Schneider; +Cc: LKML, x86, stable, regressions

On Thu, May 30 2024 at 15:35, Thomas Gleixner wrote:
> On Thu, May 30 2024 at 12:06, Peter Schneider wrote:
> Now the million-dollar question is what unlocks CPUID to read the proper
> value of EAX of leaf 0. All I could come up with is to sprinkle a dozen
> of printks into that code. Updated debug patch below.

Don't bother. Dave pointed out to me that this is unlocked in
early_init_intel() via MSR_IA32_MISC_ENABLE_LIMIT_CPUID...

Let me figure out how to fix that sanely.

Thanks,

        tglx

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: Kernel 6.9 regression: X86: Bogus messages from topology detection
  2024-05-30 15:53             ` Thomas Gleixner
@ 2024-05-30 16:24               ` Thomas Gleixner
  2024-05-31  6:52                 ` Peter Schneider
  2024-05-31  8:13                 ` Christian Heusel
  0 siblings, 2 replies; 29+ messages in thread
From: Thomas Gleixner @ 2024-05-30 16:24 UTC (permalink / raw)
  To: Peter Schneider; +Cc: LKML, x86, stable, regressions

On Thu, May 30 2024 at 17:53, Thomas Gleixner wrote:
> On Thu, May 30 2024 at 15:35, Thomas Gleixner wrote:
>> On Thu, May 30 2024 at 12:06, Peter Schneider wrote:
>> Now the million-dollar question is what unlocks CPUID to read the proper
>> value of EAX of leaf 0. All I could come up with is to sprinkle a dozen
>> of printks into that code. Updated debug patch below.
>
> Don't bother. Dave pointed out to me that this is unlocked in
> early_init_intel() via MSR_IA32_MISC_ENABLE_LIMIT_CPUID...
>
> Let me figure out how to fix that sanely.

The original code just worked because it was reevaluating this stuff
over and over until it magically became "correct".

The proper fix is obviously to unlock CPUID on Intel _before_ anything
which depends on cpuid_level is evaluated.

Thanks,

        tglx
---
--- a/arch/x86/kernel/cpu/common.c
+++ b/arch/x86/kernel/cpu/common.c
@@ -969,7 +969,7 @@ static void init_speculation_control(str
 	}
 }
 
-void get_cpu_cap(struct cpuinfo_x86 *c)
+static void get_cpu_cap(struct cpuinfo_x86 *c)
 {
 	u32 eax, ebx, ecx, edx;
 
@@ -1585,6 +1585,7 @@ static void __init early_identify_cpu(st
 	if (have_cpuid_p()) {
 		cpu_detect(c);
 		get_cpu_vendor(c);
+		intel_unlock_cpuid_leafs(c);
 		get_cpu_cap(c);
 		setup_force_cpu_cap(X86_FEATURE_CPUID);
 		get_cpu_address_sizes(c);
@@ -1744,7 +1745,7 @@ static void generic_identify(struct cpui
 	cpu_detect(c);
 
 	get_cpu_vendor(c);
-
+	intel_unlock_cpuid_leafs(c);
 	get_cpu_cap(c);
 
 	get_cpu_address_sizes(c);
--- a/arch/x86/kernel/cpu/cpu.h
+++ b/arch/x86/kernel/cpu/cpu.h
@@ -61,14 +61,15 @@ extern __ro_after_init enum tsx_ctrl_sta
 
 extern void __init tsx_init(void);
 void tsx_ap_init(void);
+void intel_unlock_cpuid_leafs(struct cpuinfo_x86 *c);
 #else
 static inline void tsx_init(void) { }
 static inline void tsx_ap_init(void) { }
+static inline void intel_unlock_cpuid_leafs(struct cpuinfo_x86 *c) { }
 #endif /* CONFIG_CPU_SUP_INTEL */
 
 extern void init_spectral_chicken(struct cpuinfo_x86 *c);
 
-extern void get_cpu_cap(struct cpuinfo_x86 *c);
 extern void get_cpu_address_sizes(struct cpuinfo_x86 *c);
 extern void cpu_detect_cache_sizes(struct cpuinfo_x86 *c);
 extern void init_scattered_cpuid_features(struct cpuinfo_x86 *c);
--- a/arch/x86/kernel/cpu/intel.c
+++ b/arch/x86/kernel/cpu/intel.c
@@ -269,19 +269,26 @@ static void detect_tme_early(struct cpui
 	c->x86_phys_bits -= keyid_bits;
 }
 
+void intel_unlock_cpuid_leafs(struct cpuinfo_x86 *c)
+{
+	if (boot_cpu_data.x86_vendor != X86_VENDOR_INTEL)
+		return;
+
+	if (c->x86 < 6 || (c->x86 == 6 && c->x86_model < 0xd))
+		return;
+
+	/*
+	 * The BIOS can have limited CPUID to leaf 2, which breaks feature
+	 * enumeration. Unlock it and update the maximum leaf info.
+	 */
+	if (msr_clear_bit(MSR_IA32_MISC_ENABLE, MSR_IA32_MISC_ENABLE_LIMIT_CPUID_BIT) > 0)
+		c->cpuid_level = cpuid_eax(0);
+}
+
 static void early_init_intel(struct cpuinfo_x86 *c)
 {
 	u64 misc_enable;
 
-	/* Unmask CPUID levels if masked: */
-	if (c->x86 > 6 || (c->x86 == 6 && c->x86_model >= 0xd)) {
-		if (msr_clear_bit(MSR_IA32_MISC_ENABLE,
-				  MSR_IA32_MISC_ENABLE_LIMIT_CPUID_BIT) > 0) {
-			c->cpuid_level = cpuid_eax(0);
-			get_cpu_cap(c);
-		}
-	}
-
 	if ((c->x86 == 0xf && c->x86_model >= 0x03) ||
 		(c->x86 == 0x6 && c->x86_model >= 0x0e))
 		set_cpu_cap(c, X86_FEATURE_CONSTANT_TSC);





^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: Kernel 6.9 regression: X86: Bogus messages from topology detection
  2024-05-30 16:24               ` Thomas Gleixner
@ 2024-05-31  6:52                 ` Peter Schneider
  2024-05-31  8:33                   ` Thomas Gleixner
  2024-05-31  8:13                 ` Christian Heusel
  1 sibling, 1 reply; 29+ messages in thread
From: Peter Schneider @ 2024-05-31  6:52 UTC (permalink / raw)
  To: Thomas Gleixner; +Cc: LKML, x86, stable, regressions


[-- Attachment #1.1.1: Type: text/plain, Size: 6163 bytes --]

Hi Thomas,


Am 30.05.2024 um 18:24 schrieb Thomas Gleixner:

 >
 > The proper fix is obviously to unlock CPUID on Intel _before_ anything
 > which depends on cpuid_level is evaluated.
 >
 > Thanks,
 >
 >          tglx
 > ---
 > --- a/arch/x86/kernel/cpu/common.c
 > +++ b/arch/x86/kernel/cpu/common.c
 > @@ -969,7 +969,7 @@ static void init_speculation_control(str
 >   	}
 >   }
 >
 > -void get_cpu_cap(struct cpuinfo_x86 *c)
 > +static void get_cpu_cap(struct cpuinfo_x86 *c)
 >   {
 >   	u32 eax, ebx, ecx, edx;
 >
 > @@ -1585,6 +1585,7 @@ static void __init early_identify_cpu(st
 >   	if (have_cpuid_p()) {
 >   		cpu_detect(c);
 >   		get_cpu_vendor(c);
 > +		intel_unlock_cpuid_leafs(c);
 >   		get_cpu_cap(c);
 >   		setup_force_cpu_cap(X86_FEATURE_CPUID);
 >   		get_cpu_address_sizes(c);
 > @@ -1744,7 +1745,7 @@ static void generic_identify(struct cpui
 >   	cpu_detect(c);
 >
 >   	get_cpu_vendor(c);
 > -
 > +	intel_unlock_cpuid_leafs(c);
 >   	get_cpu_cap(c);
 >
 >   	get_cpu_address_sizes(c);
 > --- a/arch/x86/kernel/cpu/cpu.h
 > +++ b/arch/x86/kernel/cpu/cpu.h
 > @@ -61,14 +61,15 @@ extern __ro_after_init enum tsx_ctrl_sta
 >
 >   extern void __init tsx_init(void);
 >   void tsx_ap_init(void);
 > +void intel_unlock_cpuid_leafs(struct cpuinfo_x86 *c);
 >   #else
 >   static inline void tsx_init(void) { }
 >   static inline void tsx_ap_init(void) { }
 > +static inline void intel_unlock_cpuid_leafs(struct cpuinfo_x86 *c) { }
 >   #endif /* CONFIG_CPU_SUP_INTEL */
 >
 >   extern void init_spectral_chicken(struct cpuinfo_x86 *c);
 >
 > -extern void get_cpu_cap(struct cpuinfo_x86 *c);
 >   extern void get_cpu_address_sizes(struct cpuinfo_x86 *c);
 >   extern void cpu_detect_cache_sizes(struct cpuinfo_x86 *c);
 >   extern void init_scattered_cpuid_features(struct cpuinfo_x86 *c);
 > --- a/arch/x86/kernel/cpu/intel.c
 > +++ b/arch/x86/kernel/cpu/intel.c
 > @@ -269,19 +269,26 @@ static void detect_tme_early(struct cpui
 >   	c->x86_phys_bits -= keyid_bits;
 >   }
 >
 > +void intel_unlock_cpuid_leafs(struct cpuinfo_x86 *c)
 > +{
 > +	if (boot_cpu_data.x86_vendor != X86_VENDOR_INTEL)
 > +		return;
 > +
 > +	if (c->x86 < 6 || (c->x86 == 6 && c->x86_model < 0xd))
 > +		return;
 > +
 > +	/*
 > +	 * The BIOS can have limited CPUID to leaf 2, which breaks feature
 > +	 * enumeration. Unlock it and update the maximum leaf info.
 > +	 */
 > +	if (msr_clear_bit(MSR_IA32_MISC_ENABLE, MSR_IA32_MISC_ENABLE_LIMIT_CPUID_BIT) > 0)
 > +		c->cpuid_level = cpuid_eax(0);
 > +}
 > +
 >   static void early_init_intel(struct cpuinfo_x86 *c)
 >   {
 >   	u64 misc_enable;
 >
 > -	/* Unmask CPUID levels if masked: */
 > -	if (c->x86 > 6 || (c->x86 == 6 && c->x86_model >= 0xd)) {
 > -		if (msr_clear_bit(MSR_IA32_MISC_ENABLE,
 > -				  MSR_IA32_MISC_ENABLE_LIMIT_CPUID_BIT) > 0) {
 > -			c->cpuid_level = cpuid_eax(0);
 > -			get_cpu_cap(c);
 > -		}
 > -	}
 > -
 >   	if ((c->x86 == 0xf && c->x86_model >= 0x03) ||
 >   		(c->x86 == 0x6 && c->x86_model >= 0x0e))
 >   		set_cpu_cap(c, X86_FEATURE_CONSTANT_TSC);
 >


With that patch applied, I now get a build error:

   CC [M]  drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp.o
   CC [M]  drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp1_execution.o
   CC [M]  drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp1_transition.o
   CC [M]  drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp2_execution.o
   CC [M]  drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp2_transition.o
   LD [M]  drivers/gpu/drm/amd/amdgpu/amdgpu.o
   AR      drivers/gpu/built-in.a
   AR      drivers/built-in.a
make[1]: *** [/usr/src/linux/Makefile:1919: .] Fehler 2
make: *** [Makefile:240: __sub-make] Fehler 2
root@linus:/usr/src/linux# make
   CALL    scripts/checksyscalls.sh
   DESCEND objtool
   INSTALL libsubcmd_headers
   DESCEND bpf/resolve_btfids
   INSTALL libsubcmd_headers
   CC      arch/x86/xen/enlighten_pv.o
arch/x86/xen/enlighten_pv.c: In Funktion »xen_start_kernel«:
arch/x86/xen/enlighten_pv.c:1388:9: Fehler: Implizite Deklaration der Funktion 
»get_cpu_cap«; meinten Sie »set_cpu_cap«? [-Werror=implicit-function-declaration]
  1388 |         get_cpu_cap(&boot_cpu_data);
       |         ^~~~~~~~~~~
       |         set_cpu_cap
cc1: Einige Warnungen werden als Fehler behandelt
make[4]: *** [scripts/Makefile.build:244: arch/x86/xen/enlighten_pv.o] Fehler 1
make[3]: *** [scripts/Makefile.build:485: arch/x86/xen] Fehler 2
make[2]: *** [scripts/Makefile.build:485: arch/x86] Fehler 2
make[1]: *** [/usr/src/linux/Makefile:1919: .] Fehler 2
make: *** [Makefile:240: __sub-make] Fehler 2
root@linus:/usr/src/linux#


I used the kernel config of my Proxmox VE kernel, like so:

root@linus:/usr/src/linux# cp /boot/config-6.5.13-5-pve .config

and then ran "make olddefconfig", and then "make -j 48". That's how I tested all these 
patches, including Martin's previously mentionened SCSI patch, and this used to work. I 
have attached the .config file.

I am not a C programmer, let alone a kernel dev, so please bear with me if this is 
nonsense, but: could the reason be that with your change, you have removed the declaration 
of get_cpu_cap from the cpu.h header file, while it is still being referenced in 
arch/x86/xen/enlighten_pv.c like so:

#include "../kernel/cpu/cpu.h" /* get_cpu_cap() */

Should I try to just add it back in, and see if that works? Or would you prefer to look 
more deeply at this first, and then send me a reworked patch?

Beste Grüße,
Peter Schneider

-- 
Climb the mountain not to plant your flag, but to embrace the challenge,
enjoy the air and behold the view. Climb it so you can see the world,
not so the world can see you.                    -- David McCullough Jr.

OpenPGP:  0xA3828BD796CCE11A8CADE8866E3A92C92C3FF244
Download: https://www.peters-netzplatz.de/download/pschneider1968_pub.asc
https://keys.mailvelope.com/pks/lookup?op=get&search=pschneider1968@googlemail.com
https://keys.mailvelope.com/pks/lookup?op=get&search=pschneider1968@gmail.com

[-- Attachment #1.1.2: .config --]
[-- Type: application/xml, Size: 287565 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 236 bytes --]

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: Kernel 6.9 regression: X86: Bogus messages from topology detection
  2024-05-30 16:24               ` Thomas Gleixner
  2024-05-31  6:52                 ` Peter Schneider
@ 2024-05-31  8:13                 ` Christian Heusel
  2024-05-31  8:16                   ` Christian Heusel
  1 sibling, 1 reply; 29+ messages in thread
From: Christian Heusel @ 2024-05-31  8:13 UTC (permalink / raw)
  To: Thomas Gleixner; +Cc: Peter Schneider, LKML, x86, stable, regressions

[-- Attachment #1: Type: text/plain, Size: 4257 bytes --]

On 24/05/30 06:24PM, Thomas Gleixner wrote:
> On Thu, May 30 2024 at 17:53, Thomas Gleixner wrote:
>
> > Let me figure out how to fix that sanely.
> 
> The proper fix is obviously to unlock CPUID on Intel _before_ anything
> which depends on cpuid_level is evaluated.
> 
> Thanks,
> 
>         tglx

Hey Thomas,

as reported on the other mail the proposed fix broke the build (see
below) due to get_cpu_cap() becoming static but still being used in
other parts of the code.

One of the reporters in the Arch Bugtracker with an Intel Core i7-7700k
has tested a modified version of this fix[0] with the static change
reversed on top of the 6.9.2 stable kernel and reports that the patch
does not fix the issue for them. I have attached their output for the
patched (dmesg6.9.2-1.5.log) and nonpatched (dmesg6.9.2-1.log) kernel.

Should we also get them to test the mainline version or do you need any
other debug output?

Cheers,
gromit

[0]: https://gitlab.archlinux.org/archlinux/packaging/packages/linux/-/issues/57#note_189079

> ---
> --- a/arch/x86/kernel/cpu/common.c
> +++ b/arch/x86/kernel/cpu/common.c
> @@ -969,7 +969,7 @@ static void init_speculation_control(str
>  	}
>  }
>  
> -void get_cpu_cap(struct cpuinfo_x86 *c)
> +static void get_cpu_cap(struct cpuinfo_x86 *c)

making this function static breaks the build for me:

arch/x86/xen/enlighten_pv.c: In function ‘xen_start_kernel’:
arch/x86/xen/enlighten_pv.c:1388:9: error: implicit declaration of function ‘get_cpu_cap’; did you mean ‘set_cpu_cap’? [-Wimplicit-function-declaration]
 1388 |         get_cpu_cap(&boot_cpu_data);
    ¦ |         ^~~~~~~~~~~
    ¦ |         set_cpu_cap


>  {
>  	u32 eax, ebx, ecx, edx;
>  
> @@ -1585,6 +1585,7 @@ static void __init early_identify_cpu(st
>  	if (have_cpuid_p()) {
>  		cpu_detect(c);
>  		get_cpu_vendor(c);
> +		intel_unlock_cpuid_leafs(c);
>  		get_cpu_cap(c);
>  		setup_force_cpu_cap(X86_FEATURE_CPUID);
>  		get_cpu_address_sizes(c);
> @@ -1744,7 +1745,7 @@ static void generic_identify(struct cpui
>  	cpu_detect(c);
>  
>  	get_cpu_vendor(c);
> -
> +	intel_unlock_cpuid_leafs(c);
>  	get_cpu_cap(c);
>  
>  	get_cpu_address_sizes(c);
> --- a/arch/x86/kernel/cpu/cpu.h
> +++ b/arch/x86/kernel/cpu/cpu.h
> @@ -61,14 +61,15 @@ extern __ro_after_init enum tsx_ctrl_sta
>  
>  extern void __init tsx_init(void);
>  void tsx_ap_init(void);
> +void intel_unlock_cpuid_leafs(struct cpuinfo_x86 *c);
>  #else
>  static inline void tsx_init(void) { }
>  static inline void tsx_ap_init(void) { }
> +static inline void intel_unlock_cpuid_leafs(struct cpuinfo_x86 *c) { }
>  #endif /* CONFIG_CPU_SUP_INTEL */
>  
>  extern void init_spectral_chicken(struct cpuinfo_x86 *c);
>  
> -extern void get_cpu_cap(struct cpuinfo_x86 *c);
>  extern void get_cpu_address_sizes(struct cpuinfo_x86 *c);
>  extern void cpu_detect_cache_sizes(struct cpuinfo_x86 *c);
>  extern void init_scattered_cpuid_features(struct cpuinfo_x86 *c);
> --- a/arch/x86/kernel/cpu/intel.c
> +++ b/arch/x86/kernel/cpu/intel.c
> @@ -269,19 +269,26 @@ static void detect_tme_early(struct cpui
>  	c->x86_phys_bits -= keyid_bits;
>  }
>  
> +void intel_unlock_cpuid_leafs(struct cpuinfo_x86 *c)
> +{
> +	if (boot_cpu_data.x86_vendor != X86_VENDOR_INTEL)
> +		return;
> +
> +	if (c->x86 < 6 || (c->x86 == 6 && c->x86_model < 0xd))
> +		return;
> +
> +	/*
> +	 * The BIOS can have limited CPUID to leaf 2, which breaks feature
> +	 * enumeration. Unlock it and update the maximum leaf info.
> +	 */
> +	if (msr_clear_bit(MSR_IA32_MISC_ENABLE, MSR_IA32_MISC_ENABLE_LIMIT_CPUID_BIT) > 0)
> +		c->cpuid_level = cpuid_eax(0);
> +}
> +
>  static void early_init_intel(struct cpuinfo_x86 *c)
>  {
>  	u64 misc_enable;
>  
> -	/* Unmask CPUID levels if masked: */
> -	if (c->x86 > 6 || (c->x86 == 6 && c->x86_model >= 0xd)) {
> -		if (msr_clear_bit(MSR_IA32_MISC_ENABLE,
> -				  MSR_IA32_MISC_ENABLE_LIMIT_CPUID_BIT) > 0) {
> -			c->cpuid_level = cpuid_eax(0);
> -			get_cpu_cap(c);
> -		}
> -	}
> -
>  	if ((c->x86 == 0xf && c->x86_model >= 0x03) ||
>  		(c->x86 == 0x6 && c->x86_model >= 0x0e))
>  		set_cpu_cap(c, X86_FEATURE_CONSTANT_TSC);
> 

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: Kernel 6.9 regression: X86: Bogus messages from topology detection
  2024-05-31  8:13                 ` Christian Heusel
@ 2024-05-31  8:16                   ` Christian Heusel
  2024-05-31  8:48                     ` Thomas Gleixner
  2024-05-31 11:06                     ` Thomas Gleixner
  0 siblings, 2 replies; 29+ messages in thread
From: Christian Heusel @ 2024-05-31  8:16 UTC (permalink / raw)
  To: Thomas Gleixner; +Cc: Peter Schneider, LKML, x86, stable, regressions


[-- Attachment #1.1: Type: text/plain, Size: 1224 bytes --]

On 24/05/31 10:13AM, Christian Heusel wrote:
> On 24/05/30 06:24PM, Thomas Gleixner wrote:
> > On Thu, May 30 2024 at 17:53, Thomas Gleixner wrote:
> >
> > > Let me figure out how to fix that sanely.
> > 
> > The proper fix is obviously to unlock CPUID on Intel _before_ anything
> > which depends on cpuid_level is evaluated.
> > 
> > Thanks,
> > 
> >         tglx
> 
> Hey Thomas,
> 
> as reported on the other mail the proposed fix broke the build (see
> below) due to get_cpu_cap() becoming static but still being used in
> other parts of the code.
> 
> One of the reporters in the Arch Bugtracker with an Intel Core i7-7700k
> has tested a modified version of this fix[0] with the static change
> reversed on top of the 6.9.2 stable kernel and reports that the patch
> does not fix the issue for them. I have attached their output for the
> patched (dmesg6.9.2-1.5.log) and nonpatched (dmesg6.9.2-1.log) kernel.
> 
> Should we also get them to test the mainline version or do you need any
> other debug output?
> 
> Cheers,
> gromit
> 
> [0]: https://gitlab.archlinux.org/archlinux/packaging/packages/linux/-/issues/57#note_189079

Now with the logs really attached!

Cheers,
Chris

[-- Attachment #1.2: dmesg6.9.2-1.log --]
[-- Type: text/plain, Size: 77976 bytes --]

[    0.000000] Linux version 6.9.2-arch1-1.1 (linux@archlinux) (gcc (GCC) 14.1.1 20240522, GNU ld (GNU Binutils) 2.42.0) #1 SMP PREEMPT_DYNAMIC Tue, 28 May 2024 18:34:34 +0000
[    0.000000] Command line: ro root=UUID=9bf7c08f-ded6-4cf7-864f-9eb6b26c33ae resume=UUID=9bf7c08f-ded6-4cf7-864f-9eb6b26c33ae rw add_efi_memmap resume_offset=2170880 quiet split_lock_detect=off loglevel=3 nowatchdog mitigations=off initrd=\boot\initramfs-linux.img
[    0.000000] x86/split lock detection: disabled
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009e000-0x000000000009efff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000009f000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000407cdfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000407ce000-0x00000000407cefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000407cf000-0x000000004244dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000004244e000-0x000000004244efff] reserved
[    0.000000] BIOS-e820: [mem 0x000000004244f000-0x0000000071ca8fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000071ca9000-0x000000007544bfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007544c000-0x000000007553dfff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000007553e000-0x0000000075619fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007561a000-0x0000000075ffefff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000075fff000-0x0000000075ffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000076000000-0x0000000079ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007a600000-0x000000007a7fffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007ac00000-0x00000000803fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000087fbfffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.8 by American Megatrends
[    0.000000] efi: ACPI=0x755b6000 ACPI 2.0=0x755b6014 TPMFinalLog=0x75585000 SMBIOS=0x75dae000 SMBIOS 3.0=0x75dad000 MEMATTR=0x6ecf8198 ESRT=0x6ef4a398 INITRD=0x6599fd98 RNG=0x7548a018 TPMEventLog=0x66603018 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem110: MMIO range=[0xc0000000-0xcfffffff] (256MB) from e820 map
[    0.000000] e820: remove [mem 0xc0000000-0xcfffffff] reserved
[    0.000000] efi: Not removing mem111: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map
[    0.000000] efi: Not removing mem112: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
[    0.000000] efi: Not removing mem113: MMIO range=[0xfed00000-0xfed00fff] (4KB) from e820 map
[    0.000000] efi: Not removing mem115: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
[    0.000000] efi: Remove mem116: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[    0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
[    0.000000] SMBIOS 3.5.0 present.
[    0.000000] DMI: Default string Default string/Default string, BIOS GLX258-A V0.0.5 07/23/2022
[    0.000000] tsc: Detected 2600.000 MHz processor
[    0.000000] tsc: Detected 2611.200 MHz TSC
[    0.000418] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000419] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000426] last_pfn = 0x87fc00 max_arch_pfn = 0x400000000
[    0.000428] MTRR map: 5 entries (3 fixed + 2 variable; max 23), built from 10 variable MTRRs
[    0.000430] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000764] last_pfn = 0x76000 max_arch_pfn = 0x400000000
[    0.009845] esrt: Reserving ESRT space from 0x000000006ef4a398 to 0x000000006ef4a3d0.
[    0.009849] e820: update [mem 0x6ef4a000-0x6ef4afff] usable ==> reserved
[    0.009862] Using GB pages for direct mapping
[    0.009863] Incomplete global flushes, disabling PCID
[    0.010183] Secure boot enabled
[    0.010183] RAMDISK: [mem 0x61b11000-0x62ceffff]
[    0.010211] ACPI: Early table checksum verification disabled
[    0.010213] ACPI: RSDP 0x00000000755B6014 000024 (v02 ALASKA)
[    0.010217] ACPI: XSDT 0x00000000755B5728 000104 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.010221] ACPI: FACP 0x0000000075534000 000114 (v06 ALASKA A M I    01072009 AMI  01000013)
[    0.010225] ACPI: DSDT 0x00000000754BF000 074A9A (v02 ALASKA A M I    01072009 INTL 20200717)
[    0.010227] ACPI: FACS 0x0000000075619000 000040
[    0.010229] ACPI: SSDT 0x0000000075535000 006C41 (v02 DptfTb DptfTabl 00001000 INTL 20200717)
[    0.010231] ACPI: FIDT 0x00000000754BE000 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.010233] ACPI: SSDT 0x000000007553D000 00038C (v02 PmaxDv Pmax_Dev 00000001 INTL 20200717)
[    0.010235] ACPI: SSDT 0x00000000754B8000 005D0B (v02 CpuRef CpuSsdt  00003000 INTL 20200717)
[    0.010237] ACPI: SSDT 0x00000000754B5000 002AA1 (v02 SaSsdt SaSsdt   00003000 INTL 20200717)
[    0.010239] ACPI: SSDT 0x00000000754B1000 0033D3 (v02 INTEL  IgfxSsdt 00003000 INTL 20200717)
[    0.010240] ACPI: HPET 0x000000007553C000 000038 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.010242] ACPI: APIC 0x00000000754B0000 0001DC (v05 ALASKA A M I    01072009 AMI  01000013)
[    0.010244] ACPI: MCFG 0x00000000754AF000 00003C (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.010246] ACPI: SSDT 0x00000000754A6000 008384 (v02 ALASKA AdlP_Rvp 00001000 INTL 20200717)
[    0.010248] ACPI: SSDT 0x00000000754A4000 0019D1 (v02 ALASKA Ther_Rvp 00001000 INTL 20200717)
[    0.010250] ACPI: UEFI 0x000000007556C000 000048 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.010251] ACPI: NHLT 0x00000000754A3000 00002D (v00 ALASKA A M I    01072009 AMI  01000013)
[    0.010253] ACPI: LPIT 0x00000000754A2000 0000CC (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.010255] ACPI: SSDT 0x000000007549E000 002A83 (v02 ALASKA PtidDevc 00001000 INTL 20200717)
[    0.010257] ACPI: SSDT 0x000000007549B000 002357 (v02 ALASKA TbtTypeC 00000000 INTL 20200717)
[    0.010259] ACPI: DBGP 0x000000007549A000 000034 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.010260] ACPI: DBG2 0x0000000075499000 00005C (v00 ALASKA A M I    01072009 AMI  01000013)
[    0.010262] ACPI: SSDT 0x0000000075498000 00078E (v02 INTEL  xh_adlLP 00000000 INTL 20200717)
[    0.010264] ACPI: SSDT 0x0000000075494000 003AEA (v02 SocGpe SocGpe   00003000 INTL 20200717)
[    0.010266] ACPI: SSDT 0x0000000075490000 0039DA (v02 SocCmn SocCmn   00003000 INTL 20200717)
[    0.010268] ACPI: SSDT 0x000000007548F000 000144 (v02 Intel  ADebTabl 00001000 INTL 20200717)
[    0.010270] ACPI: BGRT 0x000000007548E000 000038 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.010271] ACPI: TPM2 0x000000007548D000 00004C (v04 ALASKA A M I    00000001 AMI  00000000)
[    0.010273] ACPI: PHAT 0x000000007548C000 0004EA (v01 ALASKA A M I    00000005 MSFT 0100000D)
[    0.010275] ACPI: WSMT 0x00000000754A1000 000028 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.010277] ACPI: FPDT 0x000000007548B000 000044 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.010279] ACPI: Reserving FACP table memory at [mem 0x75534000-0x75534113]
[    0.010280] ACPI: Reserving DSDT table memory at [mem 0x754bf000-0x75533a99]
[    0.010280] ACPI: Reserving FACS table memory at [mem 0x75619000-0x7561903f]
[    0.010281] ACPI: Reserving SSDT table memory at [mem 0x75535000-0x7553bc40]
[    0.010281] ACPI: Reserving FIDT table memory at [mem 0x754be000-0x754be09b]
[    0.010282] ACPI: Reserving SSDT table memory at [mem 0x7553d000-0x7553d38b]
[    0.010282] ACPI: Reserving SSDT table memory at [mem 0x754b8000-0x754bdd0a]
[    0.010283] ACPI: Reserving SSDT table memory at [mem 0x754b5000-0x754b7aa0]
[    0.010283] ACPI: Reserving SSDT table memory at [mem 0x754b1000-0x754b43d2]
[    0.010284] ACPI: Reserving HPET table memory at [mem 0x7553c000-0x7553c037]
[    0.010284] ACPI: Reserving APIC table memory at [mem 0x754b0000-0x754b01db]
[    0.010285] ACPI: Reserving MCFG table memory at [mem 0x754af000-0x754af03b]
[    0.010285] ACPI: Reserving SSDT table memory at [mem 0x754a6000-0x754ae383]
[    0.010286] ACPI: Reserving SSDT table memory at [mem 0x754a4000-0x754a59d0]
[    0.010286] ACPI: Reserving UEFI table memory at [mem 0x7556c000-0x7556c047]
[    0.010287] ACPI: Reserving NHLT table memory at [mem 0x754a3000-0x754a302c]
[    0.010287] ACPI: Reserving LPIT table memory at [mem 0x754a2000-0x754a20cb]
[    0.010288] ACPI: Reserving SSDT table memory at [mem 0x7549e000-0x754a0a82]
[    0.010288] ACPI: Reserving SSDT table memory at [mem 0x7549b000-0x7549d356]
[    0.010289] ACPI: Reserving DBGP table memory at [mem 0x7549a000-0x7549a033]
[    0.010289] ACPI: Reserving DBG2 table memory at [mem 0x75499000-0x7549905b]
[    0.010290] ACPI: Reserving SSDT table memory at [mem 0x75498000-0x7549878d]
[    0.010290] ACPI: Reserving SSDT table memory at [mem 0x75494000-0x75497ae9]
[    0.010290] ACPI: Reserving SSDT table memory at [mem 0x75490000-0x754939d9]
[    0.010291] ACPI: Reserving SSDT table memory at [mem 0x7548f000-0x7548f143]
[    0.010291] ACPI: Reserving BGRT table memory at [mem 0x7548e000-0x7548e037]
[    0.010292] ACPI: Reserving TPM2 table memory at [mem 0x7548d000-0x7548d04b]
[    0.010292] ACPI: Reserving PHAT table memory at [mem 0x7548c000-0x7548c4e9]
[    0.010293] ACPI: Reserving WSMT table memory at [mem 0x754a1000-0x754a1027]
[    0.010293] ACPI: Reserving FPDT table memory at [mem 0x7548b000-0x7548b043]
[    0.010420] No NUMA configuration found
[    0.010420] Faking a node at [mem 0x0000000000000000-0x000000087fbfffff]
[    0.010422] NODE_DATA(0) allocated [mem 0x87fbfb000-0x87fbfffff]
[    0.010451] Zone ranges:
[    0.010452]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.010453]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.010454]   Normal   [mem 0x0000000100000000-0x000000087fbfffff]
[    0.010455]   Device   empty
[    0.010455] Movable zone start for each node
[    0.010456] Early memory node ranges
[    0.010456]   node   0: [mem 0x0000000000001000-0x000000000009dfff]
[    0.010457]   node   0: [mem 0x000000000009f000-0x000000000009ffff]
[    0.010457]   node   0: [mem 0x0000000000100000-0x00000000407cdfff]
[    0.010458]   node   0: [mem 0x00000000407cf000-0x000000004244dfff]
[    0.010458]   node   0: [mem 0x000000004244f000-0x0000000071ca8fff]
[    0.010459]   node   0: [mem 0x0000000075fff000-0x0000000075ffffff]
[    0.010459]   node   0: [mem 0x0000000100000000-0x000000087fbfffff]
[    0.010461] Initmem setup node 0 [mem 0x0000000000001000-0x000000087fbfffff]
[    0.010464] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.010465] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.010482] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.011697] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.012532] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.012626] On node 0, zone DMA32: 17238 pages in unavailable ranges
[    0.044880] On node 0, zone Normal: 8192 pages in unavailable ranges
[    0.044886] On node 0, zone Normal: 1024 pages in unavailable ranges
[    0.044905] Reserving Intel graphics memory at [mem 0x7c800000-0x803fffff]
[    0.046058] ACPI: PM-Timer IO Port: 0x1808
[    0.046064] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.046065] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.046066] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.046066] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.046066] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.046067] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.046067] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.046068] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.046068] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.046068] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.046069] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.046069] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.046069] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.046070] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.046070] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.046070] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.046071] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.046071] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.046072] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.046072] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.046072] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    0.046073] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    0.046073] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    0.046074] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.046108] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    0.046109] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.046111] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.046113] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.046114] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.046119] e820: update [mem 0x6e4b1000-0x6e503fff] usable ==> reserved
[    0.046127] TSC deadline timer available
[    0.046129] CPU topo: Max. logical packages:   1
[    0.046129] CPU topo: Max. logical dies:       1
[    0.046129] CPU topo: Max. dies per package:   1
[    0.046131] CPU topo: Max. threads per core:   2
[    0.046132] CPU topo: Num. cores per package:    10
[    0.046132] CPU topo: Num. threads per package:  12
[    0.046132] CPU topo: Allowing 12 present CPUs plus 0 hotplug CPUs
[    0.046145] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.046147] PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009efff]
[    0.046148] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.046149] PM: hibernation: Registered nosave memory: [mem 0x407ce000-0x407cefff]
[    0.046150] PM: hibernation: Registered nosave memory: [mem 0x4244e000-0x4244efff]
[    0.046151] PM: hibernation: Registered nosave memory: [mem 0x6e4b1000-0x6e503fff]
[    0.046152] PM: hibernation: Registered nosave memory: [mem 0x6ef4a000-0x6ef4afff]
[    0.046152] PM: hibernation: Registered nosave memory: [mem 0x71ca9000-0x7544bfff]
[    0.046153] PM: hibernation: Registered nosave memory: [mem 0x7544c000-0x7553dfff]
[    0.046153] PM: hibernation: Registered nosave memory: [mem 0x7553e000-0x75619fff]
[    0.046154] PM: hibernation: Registered nosave memory: [mem 0x7561a000-0x75ffefff]
[    0.046155] PM: hibernation: Registered nosave memory: [mem 0x76000000-0x79ffffff]
[    0.046155] PM: hibernation: Registered nosave memory: [mem 0x7a000000-0x7a5fffff]
[    0.046155] PM: hibernation: Registered nosave memory: [mem 0x7a600000-0x7a7fffff]
[    0.046156] PM: hibernation: Registered nosave memory: [mem 0x7a800000-0x7abfffff]
[    0.046156] PM: hibernation: Registered nosave memory: [mem 0x7ac00000-0x803fffff]
[    0.046156] PM: hibernation: Registered nosave memory: [mem 0x80400000-0xfdffffff]
[    0.046157] PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[    0.046157] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[    0.046157] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.046158] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
[    0.046158] PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
[    0.046159] PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed1ffff]
[    0.046159] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
[    0.046159] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfedfffff]
[    0.046160] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.046160] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
[    0.046161] [mem 0x80400000-0xfdffffff] available for PCI devices
[    0.046162] Booting paravirtualized kernel on bare hardware
[    0.046163] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[    0.050125] setup_percpu: NR_CPUS:320 nr_cpumask_bits:12 nr_cpu_ids:12 nr_node_ids:1
[    0.050601] percpu: Embedded 66 pages/cpu s233472 r8192 d28672 u524288
[    0.050605] pcpu-alloc: s233472 r8192 d28672 u524288 alloc=1*2097152
[    0.050606] pcpu-alloc: [0] 00 01 02 03 [0] 04 05 06 07 
[    0.050609] pcpu-alloc: [0] 08 09 10 11 
[    0.050620] Kernel command line: ro root=UUID=9bf7c08f-ded6-4cf7-864f-9eb6b26c33ae resume=UUID=9bf7c08f-ded6-4cf7-864f-9eb6b26c33ae rw add_efi_memmap resume_offset=2170880 quiet split_lock_detect=off loglevel=3 nowatchdog mitigations=off initrd=\boot\initramfs-linux.img
[    0.050684] Unknown kernel command line parameters "split_lock_detect=off", will be passed to user space.
[    0.052642] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.053623] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.053709] Fallback order for Node 0: 0 
[    0.053711] Built 1 zonelists, mobility grouping on.  Total pages: 8198981
[    0.053712] Policy zone: Normal
[    0.053857] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[    0.053861] software IO TLB: area num 16.
[    0.100359] Memory: 32446256K/33317144K available (18432K kernel code, 2164K rwdata, 13296K rodata, 3412K init, 3624K bss, 870628K reserved, 0K cma-reserved)
[    0.100485] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=12, Nodes=1
[    0.100513] ftrace: allocating 49852 entries in 195 pages
[    0.104788] ftrace: allocated 195 pages with 4 groups
[    0.104838] Dynamic Preempt: full
[    0.104873] rcu: Preemptible hierarchical RCU implementation.
[    0.104874] rcu: 	RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=12.
[    0.104875] rcu: 	RCU priority boosting: priority 1 delay 500 ms.
[    0.104875] 	Trampoline variant of Tasks RCU enabled.
[    0.104876] 	Rude variant of Tasks RCU enabled.
[    0.104876] 	Tracing variant of Tasks RCU enabled.
[    0.104877] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[    0.104877] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=12
[    0.104881] RCU Tasks: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[    0.104883] RCU Tasks Rude: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[    0.104884] RCU Tasks Trace: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[    0.107196] NR_IRQS: 20736, nr_irqs: 2152, preallocated irqs: 16
[    0.107477] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.107694] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[    0.107715] Console: colour dummy device 80x25
[    0.107717] printk: legacy console [tty0] enabled
[    0.107742] ACPI: Core revision 20230628
[    0.107938] hpet: HPET dysfunctional in PC10. Force disabled.
[    0.107939] APIC: Switch to symmetric I/O mode setup
[    0.109251] x2apic: IRQ remapping doesn't support X2APIC mode
[    0.109591] APIC: Switched APIC routing to: physical flat
[    0.113971] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x25a39079a08, max_idle_ns: 440795310461 ns
[    0.113977] Calibrating delay loop (skipped), value calculated using timer frequency.. 5224.00 BogoMIPS (lpj=8704000)
[    0.114043] CPU0: Thermal monitoring enabled (TM1)
[    0.114044] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.114137] CET detected: Indirect Branch Tracking enabled
[    0.114139] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.114139] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.114142] process: using mwait in idle threads
[    0.114144] Spectre V2 : User space: Vulnerable
[    0.114145] Speculative Store Bypass: Vulnerable
[    0.114155] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.114156] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.114157] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.114157] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.114158] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    0.114158] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.114159] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    0.114160] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
[    0.114160] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[    0.117308] Freeing SMP alternatives memory: 40K
[    0.117308] pid_max: default: 32768 minimum: 301
[    0.117308] LSM: initializing lsm=capability,landlock,lockdown,yama,bpf
[    0.117308] landlock: Up and running.
[    0.117308] Yama: becoming mindful.
[    0.117308] LSM support for eBPF active
[    0.117308] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.117308] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.117308] smpboot: CPU0: 12th Gen Intel(R) Core(TM) i7-1255U (family: 0x6, model: 0x9a, stepping: 0x4)
[    0.117308] Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline,  AnyThread deprecated, Alderlake Hybrid events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.117308] core: cpu_core PMU driver: 
[    0.117308] ... version:                5
[    0.117308] ... bit width:              48
[    0.117308] ... generic registers:      8
[    0.117308] ... value mask:             0000ffffffffffff
[    0.117308] ... max period:             00007fffffffffff
[    0.117308] ... fixed-purpose events:   4
[    0.117308] ... event mask:             0001000f000000ff
[    0.117308] signal: max sigframe size: 3632
[    0.117308] Estimated ratio of average max frequency by base frequency (times 1024): 1614
[    0.117308] rcu: Hierarchical SRCU implementation.
[    0.117308] rcu: 	Max phase no-delay instances is 1000.
[    0.117308] smp: Bringing up secondary CPUs ...
[    0.117308] smpboot: x86: Booting SMP configuration:
[    0.117308] .... node  #0, CPUs:        #2  #4  #5  #6  #7  #8  #9 #10 #11
[    0.009676] [Firmware Bug]: CPU4: Topology domain 1 shift 7 != 6
[    0.009676] core: cpu_atom PMU driver: PEBS-via-PT 
[    0.009676] ... version:                5
[    0.009676] ... bit width:              48
[    0.009676] ... generic registers:      6
[    0.009676] ... value mask:             0000ffffffffffff
[    0.009676] ... max period:             00007fffffffffff
[    0.009676] ... fixed-purpose events:   3
[    0.009676] ... event mask:             000000070000003f
[    0.120712]   #1  #3
[    0.121858] smp: Brought up 1 node, 12 CPUs
[    0.121858] smpboot: Total of 12 processors activated (62693.00 BogoMIPS)
[    0.124639] devtmpfs: initialized
[    0.124639] x86/mm: Memory block size: 128MB
[    0.125126] ACPI: PM: Registering ACPI NVS region [mem 0x7553e000-0x75619fff] (901120 bytes)
[    0.125126] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    0.125126] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    0.125126] pinctrl core: initialized pinctrl subsystem
[    0.125126] PM: RTC time: 05:40:00, date: 2024-05-31
[    0.125126] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.125126] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    0.125138] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.127430] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.127435] audit: initializing netlink subsys (disabled)
[    0.127438] audit: type=2000 audit(1717134000.013:1): state=initialized audit_enabled=0 res=1
[    0.127438] thermal_sys: Registered thermal governor 'fair_share'
[    0.127438] thermal_sys: Registered thermal governor 'bang_bang'
[    0.127438] thermal_sys: Registered thermal governor 'step_wise'
[    0.127438] thermal_sys: Registered thermal governor 'user_space'
[    0.127438] thermal_sys: Registered thermal governor 'power_allocator'
[    0.127438] cpuidle: using governor ladder
[    0.127438] cpuidle: using governor menu
[    0.127438] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.127438] PCI: ECAM [mem 0xc0000000-0xcfffffff] (base 0xc0000000) for domain 0000 [bus 00-ff]
[    0.127438] PCI: not using ECAM ([mem 0xc0000000-0xcfffffff] not reserved)
[    0.127438] PCI: Using configuration type 1 for base access
[    0.127454] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.127457] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.127457] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    0.127457] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.127457] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    0.131606] Demotion targets for Node 0: null
[    0.131606] ACPI: Added _OSI(Module Device)
[    0.131606] ACPI: Added _OSI(Processor Device)
[    0.131606] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.131606] ACPI: Added _OSI(Processor Aggregator Device)
[    0.203801] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.TXHC.RHUB.SS01], AE_NOT_FOUND (20230628/dswload2-162)
[    0.203807] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20230628/psobject-220)
[    0.203809] ACPI: Skipping parse of AML opcode: Scope (0x0010)
[    0.203812] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.TXHC.RHUB.SS02], AE_NOT_FOUND (20230628/dswload2-162)
[    0.203814] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20230628/psobject-220)
[    0.203815] ACPI: Skipping parse of AML opcode: Scope (0x0010)
[    0.203818] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.TXHC.RHUB.SS03], AE_NOT_FOUND (20230628/dswload2-162)
[    0.203820] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20230628/psobject-220)
[    0.203821] ACPI: Skipping parse of AML opcode: Scope (0x0010)
[    0.203823] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.TXHC.RHUB.SS04], AE_NOT_FOUND (20230628/dswload2-162)
[    0.203825] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20230628/psobject-220)
[    0.203826] ACPI: Skipping parse of AML opcode: Scope (0x0010)
[    0.205496] ACPI: 14 ACPI AML tables successfully acquired and loaded
[    0.220046] ACPI: Dynamic OEM Table Load:
[    0.220053] ACPI: SSDT 0xFFFF89BE40D9A800 000394 (v02 PmRef  Cpu0Cst  00003001 INTL 20200717)
[    0.220986] ACPI: Dynamic OEM Table Load:
[    0.220990] ACPI: SSDT 0xFFFF89BE413C3000 000605 (v02 PmRef  Cpu0Ist  00003000 INTL 20200717)
[    0.221947] ACPI: Dynamic OEM Table Load:
[    0.221951] ACPI: SSDT 0xFFFF89BE41284E00 0001AB (v02 PmRef  Cpu0Psd  00003000 INTL 20200717)
[    0.222822] ACPI: Dynamic OEM Table Load:
[    0.222826] ACPI: SSDT 0xFFFF89BE413C3800 0004BA (v02 PmRef  Cpu0Hwp  00003000 INTL 20200717)
[    0.224057] ACPI: Dynamic OEM Table Load:
[    0.224064] ACPI: SSDT 0xFFFF89BE413CA000 001BAF (v02 PmRef  ApIst    00003000 INTL 20200717)
[    0.225643] ACPI: Dynamic OEM Table Load:
[    0.225649] ACPI: SSDT 0xFFFF89BE413C8000 001038 (v02 PmRef  ApHwp    00003000 INTL 20200717)
[    0.227003] ACPI: Dynamic OEM Table Load:
[    0.227009] ACPI: SSDT 0xFFFF89BE413CC000 001349 (v02 PmRef  ApPsd    00003000 INTL 20200717)
[    0.228430] ACPI: Dynamic OEM Table Load:
[    0.228435] ACPI: SSDT 0xFFFF89BE40D91000 000FBB (v02 PmRef  ApCst    00003000 INTL 20200717)
[    0.233196] ACPI: _OSC evaluated successfully for all CPUs
[    0.233241] ACPI: EC: EC started
[    0.233242] ACPI: EC: interrupt blocked
[    0.252314] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.252316] ACPI: \_SB_.PC00.LPCB.H_EC: Boot DSDT EC used to handle transactions
[    0.252317] ACPI: Interpreter enabled
[    0.252360] ACPI: PM: (supports S0 S3 S4 S5)
[    0.252361] ACPI: Using IOAPIC for interrupt routing
[    0.253479] PCI: ECAM [mem 0xc0000000-0xcfffffff] (base 0xc0000000) for domain 0000 [bus 00-ff]
[    0.255322] PCI: ECAM [mem 0xc0000000-0xcfffffff] reserved as ACPI motherboard resource
[    0.255331] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.255332] PCI: Using E820 reservations for host bridge windows
[    0.256776] ACPI: Enabled 7 GPEs in block 00 to 7F
[    0.257591] ACPI: \_SB_.PC00.PEG1.PXP_: New power resource
[    0.258153] ACPI: \_SB_.PC00.PEG2.PXP_: New power resource
[    0.259347] ACPI: \_SB_.PC00.PEG0.PXP_: New power resource
[    0.389396] ACPI: \_SB_.PC00.RP05.PXP_: New power resource
[    0.398137] ACPI: \_SB_.PC00.PAUD: New power resource
[    0.407338] ACPI: \_SB_.PC00.CNVW.WRST: New power resource
[    0.419340] ACPI: \PIN_: New power resource
[    0.419600] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-fe])
[    0.419605] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.421319] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[    0.422742] PCI host bridge to bus 0000:00
[    0.422744] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.422746] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.422747] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.422749] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
[    0.422750] pci_bus 0000:00: root bus resource [mem 0x80400000-0xbfffffff window]
[    0.422751] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
[    0.422752] pci_bus 0000:00: root bus resource [bus 00-fe]
[    0.422926] pci 0000:00:00.0: [8086:4601] type 00 class 0x060000 conventional PCI endpoint
[    0.423054] pci 0000:00:02.0: [8086:46a8] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
[    0.423062] pci 0000:00:02.0: BAR 0 [mem 0x6001000000-0x6001ffffff 64bit]
[    0.423067] pci 0000:00:02.0: BAR 2 [mem 0x4000000000-0x400fffffff 64bit pref]
[    0.423071] pci 0000:00:02.0: BAR 4 [io  0x4000-0x403f]
[    0.423085] pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
[    0.423087] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.423111] pci 0000:00:02.0: VF BAR 0 [mem 0x00000000-0x00ffffff 64bit]
[    0.423112] pci 0000:00:02.0: VF BAR 0 [mem 0x00000000-0x06ffffff 64bit]: contains BAR 0 for 7 VFs
[    0.423116] pci 0000:00:02.0: VF BAR 2 [mem 0x00000000-0x1fffffff 64bit pref]
[    0.423117] pci 0000:00:02.0: VF BAR 2 [mem 0x00000000-0xdfffffff 64bit pref]: contains BAR 2 for 7 VFs
[    0.423243] pci 0000:00:04.0: [8086:461d] type 00 class 0x118000 conventional PCI endpoint
[    0.423255] pci 0000:00:04.0: BAR 0 [mem 0x6002100000-0x600211ffff 64bit]
[    0.423603] pci 0000:00:06.0: [8086:464d] type 01 class 0x060400 PCIe Root Port
[    0.423633] pci 0000:00:06.0: PCI bridge to [bus 01]
[    0.423640] pci 0000:00:06.0:   bridge window [mem 0x80500000-0x805fffff]
[    0.423724] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
[    0.423761] pci 0000:00:06.0: PTM enabled (root), 4ns granularity
[    0.424392] pci 0000:00:14.0: [8086:51ed] type 00 class 0x0c0330 conventional PCI endpoint
[    0.424415] pci 0000:00:14.0: BAR 0 [mem 0x6002120000-0x600212ffff 64bit]
[    0.424499] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.426276] pci 0000:00:14.2: [8086:51ef] type 00 class 0x050000 conventional PCI endpoint
[    0.426296] pci 0000:00:14.2: BAR 0 [mem 0x6002134000-0x6002137fff 64bit]
[    0.426309] pci 0000:00:14.2: BAR 2 [mem 0x600213b000-0x600213bfff 64bit]
[    0.426426] pci 0000:00:15.0: [8086:51e8] type 00 class 0x0c8000 conventional PCI endpoint
[    0.426448] pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[    0.426820] pci 0000:00:16.0: [8086:51e0] type 00 class 0x078000 conventional PCI endpoint
[    0.426843] pci 0000:00:16.0: BAR 0 [mem 0x6002139000-0x6002139fff 64bit]
[    0.426930] pci 0000:00:16.0: PME# supported from D3hot
[    0.427231] pci 0000:00:17.0: [8086:51d3] type 00 class 0x010601 conventional PCI endpoint
[    0.427247] pci 0000:00:17.0: BAR 0 [mem 0x80600000-0x80601fff]
[    0.427256] pci 0000:00:17.0: BAR 1 [mem 0x80603000-0x806030ff]
[    0.427265] pci 0000:00:17.0: BAR 2 [io  0x4090-0x4097]
[    0.427274] pci 0000:00:17.0: BAR 3 [io  0x4080-0x4083]
[    0.427283] pci 0000:00:17.0: BAR 4 [io  0x4060-0x407f]
[    0.427291] pci 0000:00:17.0: BAR 5 [mem 0x80602000-0x806027ff]
[    0.427339] pci 0000:00:17.0: PME# supported from D3hot
[    0.427632] pci 0000:00:1d.0: [8086:51b0] type 01 class 0x060400 PCIe Root Port
[    0.427659] pci 0000:00:1d.0: PCI bridge to [bus 02]
[    0.427665] pci 0000:00:1d.0:   bridge window [mem 0x80400000-0x804fffff]
[    0.427746] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.427777] pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
[    0.428327] pci 0000:00:1d.1: [8086:51b1] type 01 class 0x060400 PCIe Root Port
[    0.428354] pci 0000:00:1d.1: PCI bridge to [bus 03]
[    0.428358] pci 0000:00:1d.1:   bridge window [io  0x3000-0x3fff]
[    0.428369] pci 0000:00:1d.1:   bridge window [mem 0x6000000000-0x60000fffff 64bit pref]
[    0.428440] pci 0000:00:1d.1: PME# supported from D0 D3hot D3cold
[    0.428471] pci 0000:00:1d.1: PTM enabled (root), 4ns granularity
[    0.429046] pci 0000:00:1f.0: [8086:5182] type 00 class 0x060100 conventional PCI endpoint
[    0.429436] pci 0000:00:1f.3: [8086:51c8] type 00 class 0x040100 conventional PCI endpoint
[    0.429477] pci 0000:00:1f.3: BAR 0 [mem 0x6002130000-0x6002133fff 64bit]
[    0.429531] pci 0000:00:1f.3: BAR 4 [mem 0x6002000000-0x60020fffff 64bit]
[    0.429636] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    0.429937] pci 0000:00:1f.4: [8086:51a3] type 00 class 0x0c0500 conventional PCI endpoint
[    0.429958] pci 0000:00:1f.4: BAR 0 [mem 0x6002138000-0x60021380ff 64bit]
[    0.429980] pci 0000:00:1f.4: BAR 4 [io  0xefa0-0xefbf]
[    0.430262] pci 0000:00:1f.5: [8086:51a4] type 00 class 0x0c8000 conventional PCI endpoint
[    0.430281] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
[    0.433998] pci 0000:01:00.0: [1987:5013] type 00 class 0x010802 PCIe Endpoint
[    0.434014] pci 0000:01:00.0: BAR 0 [mem 0x80500000-0x80503fff 64bit]
[    0.434940] pci 0000:00:06.0: PCI bridge to [bus 01]
[    0.435189] pci 0000:02:00.0: [8086:095a] type 00 class 0x028000 PCIe Endpoint
[    0.435276] pci 0000:02:00.0: BAR 0 [mem 0x80400000-0x80401fff 64bit]
[    0.435621] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[    0.436601] pci 0000:00:1d.0: PCI bridge to [bus 02]
[    0.436671] pci 0000:03:00.0: [10ec:8168] type 00 class 0x020000 PCIe Endpoint
[    0.436690] pci 0000:03:00.0: BAR 0 [io  0x3000-0x30ff]
[    0.436713] pci 0000:03:00.0: BAR 2 [mem 0x6000004000-0x6000004fff 64bit pref]
[    0.436729] pci 0000:03:00.0: BAR 4 [mem 0x6000000000-0x6000003fff 64bit pref]
[    0.436841] pci 0000:03:00.0: supports D1 D2
[    0.436841] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.437009] pci 0000:00:1d.1: PCI bridge to [bus 03]
[    0.441053] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    0.441142] ACPI: PCI: Interrupt link LNKB configured for IRQ 1
[    0.441228] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    0.441315] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    0.441402] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.441488] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.441574] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.441661] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.449100] ACPI: EC: interrupt unblocked
[    0.449101] ACPI: EC: event unblocked
[    0.449122] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.449123] ACPI: EC: GPE=0x6e
[    0.449124] ACPI: \_SB_.PC00.LPCB.H_EC: Boot DSDT EC initialization complete
[    0.449126] ACPI: \_SB_.PC00.LPCB.H_EC: EC: Used to handle transactions and events
[    0.449185] iommu: Default domain type: Translated
[    0.449185] iommu: DMA domain TLB invalidation policy: lazy mode
[    0.449185] SCSI subsystem initialized
[    0.449185] libata version 3.00 loaded.
[    0.449185] ACPI: bus type USB registered
[    0.449185] usbcore: registered new interface driver usbfs
[    0.449185] usbcore: registered new interface driver hub
[    0.449185] usbcore: registered new device driver usb
[    0.449185] EDAC MC: Ver: 3.0.0
[    0.450708] efivars: Registered efivars operations
[    0.450824] NetLabel: Initializing
[    0.450825] NetLabel:  domain hash size = 128
[    0.450826] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.450840] NetLabel:  unlabeled traffic allowed by default
[    0.450844] mctp: management component transport protocol core
[    0.450845] NET: Registered PF_MCTP protocol family
[    0.450847] PCI: Using ACPI for IRQ routing
[    0.470601] PCI: pci_cache_line_size set to 64 bytes
[    0.474172] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]: can't claim; no compatible bridge window
[    0.475089] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
[    0.475090] e820: reserve RAM buffer [mem 0x407ce000-0x43ffffff]
[    0.475091] e820: reserve RAM buffer [mem 0x4244e000-0x43ffffff]
[    0.475092] e820: reserve RAM buffer [mem 0x6e4b1000-0x6fffffff]
[    0.475093] e820: reserve RAM buffer [mem 0x6ef4a000-0x6fffffff]
[    0.475093] e820: reserve RAM buffer [mem 0x71ca9000-0x73ffffff]
[    0.475094] e820: reserve RAM buffer [mem 0x76000000-0x77ffffff]
[    0.475095] e820: reserve RAM buffer [mem 0x87fc00000-0x87fffffff]
[    0.475120] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.475120] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.475120] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.475120] vgaarb: loaded
[    0.475120] clocksource: Switched to clocksource tsc-early
[    0.475120] VFS: Disk quotas dquot_6.6.0
[    0.475120] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.475120] pnp: PnP ACPI init
[    0.475801] system 00:00: [io  0x0680-0x069f] has been reserved
[    0.475803] system 00:00: [io  0x164e-0x164f] has been reserved
[    0.475907] system 00:01: [io  0x1854-0x1857] has been reserved
[    0.477695] pnp 00:02: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
[    0.477714] system 00:02: [mem 0xfedc0000-0xfedc7fff] has been reserved
[    0.477716] system 00:02: [mem 0xfeda0000-0xfeda0fff] has been reserved
[    0.477717] system 00:02: [mem 0xfeda1000-0xfeda1fff] has been reserved
[    0.477719] system 00:02: [mem 0xfed20000-0xfed7ffff] could not be reserved
[    0.477720] system 00:02: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.477721] system 00:02: [mem 0xfed45000-0xfed8ffff] could not be reserved
[    0.477722] system 00:02: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.478428] system 00:04: [io  0x2000-0x20fe] has been reserved
[    0.478822] system 00:05: [mem 0xfe03e008-0xfe03efff] has been reserved
[    0.478824] system 00:05: [mem 0xfe03f000-0xfe03ffff] has been reserved
[    0.479189] pnp: PnP ACPI: found 6 devices
[    0.484501] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.484571] NET: Registered PF_INET protocol family
[    0.484736] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.495851] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    0.495880] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.496017] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.496335] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    0.496448] TCP: Hash tables configured (established 262144 bind 65536)
[    0.496562] MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
[    0.496627] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.496696] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.496766] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.496772] NET: Registered PF_XDP protocol family
[    0.496786] pci 0000:00:02.0: VF BAR 2 [mem 0x4020000000-0x40ffffffff 64bit pref]: assigned
[    0.496791] pci 0000:00:02.0: VF BAR 0 [mem 0x4010000000-0x4016ffffff 64bit]: assigned
[    0.496793] pci 0000:00:15.0: BAR 0 [mem 0x4017000000-0x4017000fff 64bit]: assigned
[    0.496808] resource: avoiding allocation from e820 entry [mem 0x000a0000-0x000fffff]
[    0.496810] resource: avoiding allocation from e820 entry [mem 0x000a0000-0x000fffff]
[    0.496811] pci 0000:00:1f.5: BAR 0 [mem 0x80604000-0x80604fff]: assigned
[    0.496822] pci 0000:00:06.0: PCI bridge to [bus 01]
[    0.496837] pci 0000:00:06.0:   bridge window [mem 0x80500000-0x805fffff]
[    0.496856] pci 0000:00:1d.0: PCI bridge to [bus 02]
[    0.496861] pci 0000:00:1d.0:   bridge window [mem 0x80400000-0x804fffff]
[    0.496868] pci 0000:00:1d.1: PCI bridge to [bus 03]
[    0.496869] pci 0000:00:1d.1:   bridge window [io  0x3000-0x3fff]
[    0.496875] pci 0000:00:1d.1:   bridge window [mem 0x6000000000-0x60000fffff 64bit pref]
[    0.496880] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.496882] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.496883] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.496884] pci_bus 0000:00: resource 7 [mem 0x000e0000-0x000fffff window]
[    0.496885] pci_bus 0000:00: resource 8 [mem 0x80400000-0xbfffffff window]
[    0.496886] pci_bus 0000:00: resource 9 [mem 0x4000000000-0x7fffffffff window]
[    0.496887] pci_bus 0000:01: resource 1 [mem 0x80500000-0x805fffff]
[    0.496889] pci_bus 0000:02: resource 1 [mem 0x80400000-0x804fffff]
[    0.496890] pci_bus 0000:03: resource 0 [io  0x3000-0x3fff]
[    0.496891] pci_bus 0000:03: resource 2 [mem 0x6000000000-0x60000fffff 64bit pref]
[    0.498233] PCI: CLS 64 bytes, default 64
[    0.498241] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.498242] software IO TLB: mapped [mem 0x000000005db11000-0x0000000061b11000] (64MB)
[    0.498291] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x25a39079a08, max_idle_ns: 440795310461 ns
[    0.498333] Trying to unpack rootfs image as initramfs...
[    0.498434] clocksource: Switched to clocksource tsc
[    0.498459] platform rtc_cmos: registered platform RTC device (no PNP device found)
[    0.507038] Initialise system trusted keyrings
[    0.507048] Key type blacklist registered
[    0.507113] workingset: timestamp_bits=41 max_order=23 bucket_order=0
[    0.507121] zbud: loaded
[    0.507200] fuse: init (API version 7.40)
[    0.507258] integrity: Platform Keyring initialized
[    0.507260] integrity: Machine keyring initialized
[    0.514792] Key type asymmetric registered
[    0.514794] Asymmetric key parser 'x509' registered
[    0.514811] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    0.514873] io scheduler mq-deadline registered
[    0.514874] io scheduler kyber registered
[    0.514881] io scheduler bfq registered
[    0.515333] pcieport 0000:00:06.0: PME: Signaling with IRQ 120
[    0.515545] pcieport 0000:00:1d.0: PME: Signaling with IRQ 121
[    0.515730] pcieport 0000:00:1d.1: PME: Signaling with IRQ 122
[    0.515803] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.516875] ACPI: AC: AC Adapter [ADP1] (on-line)
[    0.516910] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0b/PNP0C09:00/PNP0C0D:00/input/input0
[    0.516922] ACPI: button: Lid Switch [LID0]
[    0.516945] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    0.516959] ACPI: button: Power Button [PWRB]
[    0.516977] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
[    0.516986] ACPI: button: Sleep Button [SLPB]
[    0.517004] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    0.517137] ACPI: button: Power Button [PWRF]
[    0.519716] thermal LNXTHERM:00: registered as thermal_zone0
[    0.519719] ACPI: thermal: Thermal Zone [TZ00] (28 C)
[    0.519900] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.522642] hpet_acpi_add: no address or irqs in _CRS
[    0.522672] Non-volatile memory driver v1.3
[    0.522673] Linux agpgart interface v0.103
[    0.529637] ACPI: bus type drm_connector registered
[    0.530435] ahci 0000:00:17.0: version 3.0
[    0.531778] ACPI: battery: Slot [BAT0] (battery present)
[    0.538733] Freeing initrd memory: 18300K
[    0.540861] ahci 0000:00:17.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[    0.540866] ahci 0000:00:17.0: 1/2 ports implemented (port mask 0x2)
[    0.540868] ahci 0000:00:17.0: flags: 64bit ncq sntf pm led clo only pio slum part deso sadm sds 
[    0.541666] scsi host0: ahci
[    0.541918] scsi host1: ahci
[    0.541939] ata1: DUMMY
[    0.541945] ata2: SATA max UDMA/133 abar m2048@0x80602000 port 0x80602180 irq 123 lpm-pol 3
[    0.542017] usbcore: registered new interface driver usbserial_generic
[    0.542020] usbserial: USB Serial support registered for generic
[    0.542402] rtc_cmos rtc_cmos: RTC can wake from S4
[    0.543387] rtc_cmos rtc_cmos: registered as rtc0
[    0.543559] rtc_cmos rtc_cmos: setting system clock to 2024-05-31T05:40:00 UTC (1717134000)
[    0.543586] rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
[    0.544265] intel_pstate: Intel P-state driver initializing
[    0.545548] intel_pstate: HWP enabled
[    0.545629] ledtrig-cpu: registered to indicate activity on CPUs
[    0.545810] [drm] Initialized simpledrm 1.0.0 20200625 for simple-framebuffer.0 on minor 0
[    0.546019] fbcon: Deferring console take-over
[    0.546021] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[    0.546157] hid: raw HID events driver (C) Jiri Kosina
[    0.546234] drop_monitor: Initializing network drop monitor service
[    0.546307] NET: Registered PF_INET6 protocol family
[    0.550318] Segment Routing with IPv6
[    0.550319] RPL Segment Routing with IPv6
[    0.550326] In-situ OAM (IOAM) with IPv6
[    0.550342] NET: Registered PF_PACKET protocol family
[    0.551245] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.551637] microcode: Current revision: 0x00000433
[    0.551638] microcode: Updated early from: 0x0000041b
[    0.552235] unchecked MSR access error: WRMSR to 0xd10 (tried to write 0x000000000000ffff) at rIP: 0xffffffff8828e9f8 (native_write_msr+0x8/0x30)
[    0.552241] Call Trace:
[    0.552242]  <TASK>
[    0.552244]  ? ex_handler_msr.isra.0.cold+0x5b/0x60
[    0.552246]  ? fixup_exception+0x2c3/0x3a0
[    0.552247]  ? gp_try_fixup_and_notify+0x1e/0xb0
[    0.552249]  ? exc_general_protection+0x104/0x400
[    0.552251]  ? security_kernfs_init_security+0x35/0x50
[    0.552253]  ? asm_exc_general_protection+0x26/0x30
[    0.552255]  ? native_write_msr+0x8/0x30
[    0.552257]  cat_wrmsr+0x49/0x70
[    0.552258]  resctrl_arch_online_cpu+0x353/0x3a0
[    0.552259]  ? __pfx_resctrl_arch_online_cpu+0x10/0x10
[    0.552260]  cpuhp_invoke_callback+0x11f/0x410
[    0.552262]  ? __pfx_smpboot_thread_fn+0x10/0x10
[    0.552263]  cpuhp_thread_fun+0xa2/0x150
[    0.552265]  smpboot_thread_fn+0xda/0x1d0
[    0.552266]  kthread+0xcf/0x100
[    0.552268]  ? __pfx_kthread+0x10/0x10
[    0.552269]  ret_from_fork+0x31/0x50
[    0.552271]  ? __pfx_kthread+0x10/0x10
[    0.552272]  ret_from_fork_asm+0x1a/0x30
[    0.552274]  </TASK>
[    0.552635] resctrl: L2 allocation detected
[    0.552647] IPI shorthand broadcast: enabled
[    0.553827] sched_clock: Marking stable (546667786, 6343343)->(573923308, -20912179)
[    0.554092] Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
[    0.554364] registered taskstats version 1
[    0.554939] Loading compiled-in X.509 certificates
[    0.557154] Loaded X.509 cert 'Build time autogenerated kernel key: bd14c5ac06e9945e7ac85a5a6ffb0ea3f667d519'
[    0.559789] zswap: loaded using pool zstd/zsmalloc
[    0.559948] Key type .fscrypt registered
[    0.559949] Key type fscrypt-provisioning registered
[    0.560206] integrity: Loading X.509 certificate: UEFI:db
[    0.560220] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    0.560220] integrity: Loading X.509 certificate: UEFI:db
[    0.560229] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    0.560229] integrity: Loading X.509 certificate: UEFI:db
[    0.562767] integrity: Loaded X.509 cert 'my Signature Database key: f55742b17ee4c75ecb4f66293e2fbceddefed102'
[    0.563548] PM:   Magic number: 8:983:669
[    0.565744] RAS: Correctable Errors collector initialized.
[    0.855342] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    0.858419] ata2.00: ATA-10: Hanstor M.2 1TB, U0510A0, max UDMA/133
[    0.859954] ata2.00: 1953525168 sectors, multi 1: LBA48 NCQ (depth 32), AA
[    0.866812] ata2.00: configured for UDMA/133
[    0.877812] scsi 1:0:0:0: Direct-Access     ATA      Hanstor M.2 1TB  0A0  PQ: 0 ANSI: 5
[    0.880524] sd 1:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[    0.880707] sd 1:0:0:0: [sda] Write Protect is off
[    0.880728] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    0.880863] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    0.881443] sd 1:0:0:0: [sda] Preferred minimum I/O size 512 bytes
[    0.887384]  sda: sda1
[    0.887727] sd 1:0:0:0: [sda] Attached SCSI disk
[    0.888014] clk: Disabling unused clocks
[    0.888030] PM: genpd: Disabling unused power domains
[    0.893534] Freeing unused decrypted memory: 2028K
[    0.894057] Freeing unused kernel image (initmem) memory: 3412K
[    0.894059] Write protecting the kernel read-only data: 32768k
[    0.894651] Freeing unused kernel image (rodata/data gap) memory: 1040K
[    0.903096] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    0.903101] rodata_test: all tests were successful
[    0.903105] Run /init as init process
[    0.903106]   with arguments:
[    0.903107]     /init
[    0.903108]   with environment:
[    0.903108]     HOME=/
[    0.903109]     TERM=linux
[    0.903109]     split_lock_detect=off
[    0.921884] systemd[1]: systemd 255.7-1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
[    0.921888] systemd[1]: Detected architecture x86-64.
[    0.921889] systemd[1]: Running in initrd.
[    0.921945] systemd[1]: Initializing machine ID from random generator.
[    1.004634] systemd[1]: Queued start job for default target Initrd Default Target.
[    1.064849] systemd[1]: Expecting device /dev/disk/by-uuid/9bf7c08f-ded6-4cf7-864f-9eb6b26c33ae...
[    1.065116] systemd[1]: Reached target Path Units.
[    1.065181] systemd[1]: Reached target Slice Units.
[    1.065233] systemd[1]: Reached target Swaps.
[    1.065279] systemd[1]: Reached target Timer Units.
[    1.065628] systemd[1]: Listening on Journal Socket (/dev/log).
[    1.065843] systemd[1]: Listening on Journal Socket.
[    1.066097] systemd[1]: Listening on udev Control Socket.
[    1.066278] systemd[1]: Listening on udev Kernel Socket.
[    1.066314] systemd[1]: Reached target Socket Units.
[    1.066448] systemd[1]: Create List of Static Device Nodes was skipped because of an unmet condition check (ConditionFileNotEmpty=/lib/modules/6.9.2-arch1-1.1/modules.devname).
[    1.069293] systemd[1]: Starting Check battery level during early boot...
[    1.073467] systemd[1]: Starting Journal Service...
[    1.075594] systemd[1]: Starting Load Kernel Modules...
[    1.075669] systemd[1]: TPM2 PCR Barrier (initrd) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    1.076986] systemd[1]: Starting Create Static Device Nodes in /dev...
[    1.078106] systemd[1]: Starting Coldplug All udev Devices...
[    1.082900] systemd[1]: Finished Check battery level during early boot.
[    1.083627] systemd[1]: Started Displays emergency message in full screen..
[    1.084682] systemd[1]: Finished Load Kernel Modules.
[    1.085996] systemd[1]: Finished Create Static Device Nodes in /dev.
[    1.086719] systemd[1]: Starting Rule-based Manager for Device Events and Files...
[    1.088983] systemd-journald[158]: Collecting audit messages is disabled.
[    1.097496] systemd[1]: Started Rule-based Manager for Device Events and Files.
[    1.099597] systemd[1]: Started Journal Service.
[    1.152804] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.152812] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    1.153916] xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000100200009810
[    1.154167] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.154173] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    1.154175] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[    1.154239] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.09
[    1.154243] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.154244] usb usb1: Product: xHCI Host Controller
[    1.154245] usb usb1: Manufacturer: Linux 6.9.2-arch1-1.1 xhci-hcd
[    1.154246] usb usb1: SerialNumber: 0000:00:14.0
[    1.154342] hub 1-0:1.0: USB hub found
[    1.154367] hub 1-0:1.0: 12 ports detected
[    1.155099] nvme 0000:01:00.0: platform quirk: setting simple suspend
[    1.155153] nvme nvme0: pci function 0000:01:00.0
[    1.156044] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.09
[    1.156047] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.156048] usb usb2: Product: xHCI Host Controller
[    1.156049] usb usb2: Manufacturer: Linux 6.9.2-arch1-1.1 xhci-hcd
[    1.156049] usb usb2: SerialNumber: 0000:00:14.0
[    1.156125] hub 2-0:1.0: USB hub found
[    1.156139] hub 2-0:1.0: 4 ports detected
[    1.156556] usb: port power management may be unreliable
[    1.177070] nvme nvme0: missing or invalid SUBNQN field.
[    1.219016] nvme nvme0: allocated 128 MiB host memory buffer.
[    1.220004] nvme nvme0: 8/0/0 default/read/poll queues
[    1.222571]  nvme0n1: p1 p2 p3 p4 p5 p6 p7 p8 p9
[    1.261673] PM: Image not found (code -22)
[    1.406350] usb 1-4: new full-speed USB device number 2 using xhci_hcd
[    1.466628] EXT4-fs (nvme0n1p8): mounted filesystem 9bf7c08f-ded6-4cf7-864f-9eb6b26c33ae r/w with ordered data mode. Quota mode: none.
[    1.483315] i915 0000:00:02.0: vgaarb: deactivate vga console
[    1.483366] i915 0000:00:02.0: [drm] Using Transparent Hugepages
[    1.483990] i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    1.486130] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/adlp_dmc.bin (v2.20)
[    1.503261] i915 0000:00:02.0: [drm] GT0: GuC firmware i915/adlp_guc_70.bin version 70.20.0
[    1.503266] i915 0000:00:02.0: [drm] GT0: HuC firmware i915/tgl_huc.bin version 7.9.3
[    1.520567] i915 0000:00:02.0: [drm] GT0: HuC: authenticated for all workloads
[    1.521193] i915 0000:00:02.0: [drm] GT0: GUC: submission enabled
[    1.521195] i915 0000:00:02.0: [drm] GT0: GUC: SLPC enabled
[    1.521545] i915 0000:00:02.0: [drm] GT0: GUC: RC enabled
[    1.522148] i915 0000:00:02.0: [drm] Protected Xe Path (PXP) protected content support initialized
[    1.559000] usb 1-4: New USB device found, idVendor=8087, idProduct=0a2a, bcdDevice= 0.01
[    1.559017] usb 1-4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.683209] usb 1-5: new high-speed USB device number 3 using xhci_hcd
[    1.852803] usb 1-5: New USB device found, idVendor=0c45, idProduct=6711, bcdDevice=40.24
[    1.852822] usb 1-5: New USB device strings: Mfr=2, Product=1, SerialNumber=0
[    1.852829] usb 1-5: Product: USB 2.0 Camera
[    1.852834] usb 1-5: Manufacturer: Sonix Technology Co., Ltd.
[    2.731020] [drm] Initialized i915 1.6.0 20230929 for 0000:00:02.0 on minor 1
[    2.734031] ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    2.734190] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input4
[    2.760031] fbcon: i915drmfb (fb0) is primary device
[    2.760035] fbcon: Deferring console take-over
[    2.760039] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[    3.019867] systemd-journald[158]: Received SIGTERM from PID 1 (systemd).
[    3.099826] systemd[1]: systemd 255.7-1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
[    3.099831] systemd[1]: Detected architecture x86-64.
[    3.100716] systemd[1]: Hostname set to <FIRE>.
[    3.500014] systemd[1]: bpf-lsm: LSM BPF program attached
[    3.632915] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[    3.632967] systemd[1]: Stopped Switch Root.
[    3.633277] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[    3.633420] systemd[1]: Created slice Slice /system/dirmngr.
[    3.633525] systemd[1]: Created slice Slice /system/getty.
[    3.633626] systemd[1]: Created slice Slice /system/gpg-agent.
[    3.633725] systemd[1]: Created slice Slice /system/gpg-agent-browser.
[    3.633822] systemd[1]: Created slice Slice /system/gpg-agent-extra.
[    3.633919] systemd[1]: Created slice Slice /system/gpg-agent-ssh.
[    3.634015] systemd[1]: Created slice Slice /system/keyboxd.
[    3.634115] systemd[1]: Created slice Slice /system/modprobe.
[    3.634214] systemd[1]: Created slice Slice /system/systemd-fsck.
[    3.634281] systemd[1]: Created slice User and Session Slice.
[    3.634306] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    3.634321] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    3.634385] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    3.634391] systemd[1]: Expecting device /dev/disk/by-uuid/d3fa04da-cb55-4ff4-a93b-92256084412c...
[    3.634396] systemd[1]: Reached target Local Encrypted Volumes.
[    3.634404] systemd[1]: Stopped target Switch Root.
[    3.634410] systemd[1]: Stopped target Initrd File Systems.
[    3.634414] systemd[1]: Stopped target Initrd Root File System.
[    3.634420] systemd[1]: Reached target Local Integrity Protected Volumes.
[    3.634430] systemd[1]: Reached target Remote File Systems.
[    3.634435] systemd[1]: Reached target Slice Units.
[    3.634449] systemd[1]: Reached target Local Verity Protected Volumes.
[    3.634478] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    3.636082] systemd[1]: Listening on Process Core Dump Socket.
[    3.636099] systemd[1]: TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    3.636206] systemd[1]: Listening on udev Control Socket.
[    3.636234] systemd[1]: Listening on udev Kernel Socket.
[    3.687120] systemd[1]: Mounting Huge Pages File System...
[    3.688851] systemd[1]: Mounting POSIX Message Queue File System...
[    3.690024] systemd[1]: Mounting Kernel Debug File System...
[    3.691227] systemd[1]: Mounting Kernel Trace File System...
[    3.692452] systemd[1]: Starting Create List of Static Device Nodes...
[    3.692961] systemd[1]: Starting Load Kernel Module configfs...
[    3.693490] systemd[1]: Starting Load Kernel Module dm_mod...
[    3.693925] systemd[1]: Starting Load Kernel Module drm...
[    3.694265] systemd[1]: Starting Load Kernel Module fuse...
[    3.694903] systemd[1]: Starting Load Kernel Module loop...
[    3.696080] systemd[1]: Starting Journal Service...
[    3.696994] systemd[1]: Starting Load Kernel Modules...
[    3.697014] systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    3.697579] systemd[1]: Starting Remount Root and Kernel File Systems...
[    3.697620] systemd[1]: TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    3.698129] systemd[1]: Starting Coldplug All udev Devices...
[    3.698922] systemd[1]: Mounted Huge Pages File System.
[    3.698992] systemd[1]: Mounted POSIX Message Queue File System.
[    3.699050] systemd[1]: Mounted Kernel Debug File System.
[    3.699103] systemd[1]: Mounted Kernel Trace File System.
[    3.699238] systemd[1]: Finished Create List of Static Device Nodes.
[    3.699408] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[    3.699500] systemd[1]: Finished Load Kernel Module configfs.
[    3.699673] systemd[1]: modprobe@drm.service: Deactivated successfully.
[    3.699770] systemd[1]: Finished Load Kernel Module drm.
[    3.699942] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[    3.700022] systemd[1]: Finished Load Kernel Module fuse.
[    3.700616] systemd[1]: Mounting FUSE Control File System...
[    3.701071] systemd[1]: Mounting Kernel Configuration File System...
[    3.701589] systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
[    3.702637] loop: module loaded
[    3.702948] systemd[1]: modprobe@loop.service: Deactivated successfully.
[    3.703077] systemd[1]: Finished Load Kernel Module loop.
[    3.704659] systemd[1]: Mounted FUSE Control File System.
[    3.705231] systemd[1]: Mounted Kernel Configuration File System.
[    3.706131] device-mapper: uevent: version 1.0.3
[    3.706201] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
[    3.706238] systemd-journald[281]: Collecting audit messages is disabled.
[    3.706621] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[    3.706720] systemd[1]: Finished Load Kernel Module dm_mod.
[    3.706842] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
[    3.710160] systemd[1]: Started Journal Service.
[    3.712538] i2c_dev: i2c /dev entries driver
[    3.736734] EXT4-fs (nvme0n1p8): re-mounted 9bf7c08f-ded6-4cf7-864f-9eb6b26c33ae r/w. Quota mode: none.
[    3.745112] systemd-journald[281]: Received client request to flush runtime journal.
[    3.830613] systemd-journald[281]: /var/log/journal/bd024c881a1f4958a55e8145fab6de4c/system.journal: Journal file uses a different sequence number ID, rotating.
[    3.830628] systemd-journald[281]: Rotating system journal.
[    4.539806] Adding 4194300k swap on /swapfile.  Priority:-2 extents:192 across:59072512k SSDsc
[    4.662987] input: Intel HID events as /devices/platform/INTC1070:00/input/input5
[    4.663962] intel-hid INTC1070:00: platform supports 5 button array
[    4.668287] input: Intel HID 5 button array as /devices/platform/INTC1070:00/input/input6
[    4.668461] Consider using thermal netlink events interface
[    4.669878] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.LPCB.H_EC.CHRG.PPSS.FCHG], AE_NOT_FOUND (20230628/psargs-330)
[    4.669886] ACPI Error: Aborting method \_SB.PC00.LPCB.H_EC.CHRG.PPSS due to previous error (AE_NOT_FOUND) (20230628/psparse-529)
[    4.670734] intel_pmc_core INT33A1:00:  initialized
[    4.674094] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[    4.674098] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    4.675794] serio: i8042 KBD port at 0x60,0x64 irq 1
[    4.683940] resource: resource sanity check: requesting [mem 0x00000000fedc0000-0x00000000fedcffff], which spans more than pnp 00:02 [mem 0xfedc0000-0xfedc7fff]
[    4.683946] caller igen6_probe+0x15e/0x7c0 [igen6_edac] mapping multiple BARs
[    4.684780] EDAC MC0: Giving out device to module igen6_edac controller Intel_client_SoC MC#0: DEV 0000:00:00.0 (INTERRUPT)
[    4.691666] EDAC MC1: Giving out device to module igen6_edac controller Intel_client_SoC MC#1: DEV 0000:00:00.0 (INTERRUPT)
[    4.691708] EDAC igen6 MC1: HANDLING IBECC MEMORY ERROR
[    4.691710] EDAC igen6 MC1: ADDR 0x7fffffffe0 
[    4.691711] EDAC igen6 MC0: HANDLING IBECC MEMORY ERROR
[    4.691712] EDAC igen6 MC0: ADDR 0x7fffffffe0 
[    4.692310] EDAC igen6: v2.5.1
[    4.694099] i801_smbus 0000:00:1f.4: enabling device (0000 -> 0003)
[    4.694225] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[    4.694261] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[    4.694866] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[    4.698697] mei_me 0000:00:16.0: hbm: dma setup response: failure = 3 REJECTED
[    4.704407] i2c i2c-10: Successfully instantiated SPD at 0x50
[    4.705900] intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
[    4.706152] idma64 idma64.0: Found Intel integrated DMA 64-bit
[    4.734125] mc: Linux media interface: v0.10
[    4.746289] EXT4-fs (nvme0n1p9): mounted filesystem d3fa04da-cb55-4ff4-a93b-92256084412c r/w with ordered data mode. Quota mode: none.
[    4.785342] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/261)
[    4.786358] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/33030)
[    4.787340] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/1157)
[    4.788333] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/2309)
[    4.789338] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/405)
[    4.790332] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/661)
[    4.791314] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/4213)
[    4.792331] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/9474)
[    4.793312] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/897)
[    4.794082] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    4.794190] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
[    4.794251] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    4.794337] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/49154)
[    4.794395] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[    4.794804] mei_pxp 0000:00:16.0-fbf6fcf1-96cf-4e2e-a6a6-1bab8cbe36b1: bound 0000:00:02.0 (ops i915_pxp_tee_component_ops [i915])
[    4.794984] ee1004 10-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
[    4.795331] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/33105)
[    4.796315] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/9731)
[    4.797329] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/38160)
[    4.798328] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/1941)
[    4.799318] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/38145)
[    4.800343] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/49154)
[    4.801327] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/3593)
[    4.804893] intel_rapl_msr: PL4 support detected.
[    4.804920] intel_rapl_common: Found RAPL domain package
[    4.804921] intel_rapl_common: Found RAPL domain core
[    4.804922] intel_rapl_common: Found RAPL domain uncore
[    4.804924] intel_rapl_common: Found RAPL domain psys
[    4.805111] Bluetooth: Core ver 2.22
[    4.805122] NET: Registered PF_BLUETOOTH protocol family
[    4.805123] Bluetooth: HCI device and connection manager initialized
[    4.805126] Bluetooth: HCI socket layer initialized
[    4.805128] Bluetooth: L2CAP socket layer initialized
[    4.805133] Bluetooth: SCO socket layer initialized
[    4.986697] r8169 0000:03:00.0: enabling device (0000 -> 0003)
[    4.989574] Creating 1 MTD partitions on "0000:00:1f.5":
[    4.989578] 0x000000000000-0x000002000000 : "BIOS"
[    4.991920] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input7
[    4.993144] r8169 0000:03:00.0 eth0: RTL8168evl/8111evl, 00:00:00:00:00:03, XID 2c9, IRQ 136
[    4.993148] r8169 0000:03:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[    4.995845] Intel(R) Wireless WiFi driver for Linux
[    4.997003] r8169 0000:03:00.0 enp3s0: renamed from eth0
[    4.998918] proc_thermal_pci 0000:00:04.0: enabling device (0000 -> 0002)
[    4.999074] input: XXXX0000:01 0911:5288 Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-11/i2c-XXXX0000:01/0018:0911:5288.0001/input/input8
[    4.999110] videodev: Linux video capture interface: v2.00
[    4.999146] input: XXXX0000:01 0911:5288 Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-11/i2c-XXXX0000:01/0018:0911:5288.0001/input/input9
[    4.999217] hid-generic 0018:0911:5288.0001: input,hidraw0: I2C HID v1.00 Mouse [XXXX0000:01 0911:5288] on i2c-XXXX0000:01
[    5.003037] intel_rapl_common: Found RAPL domain package
[    5.003080] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[    5.003083] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[    5.003084] RAPL PMU: hw unit of domain package 2^-14 Joules
[    5.003085] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[    5.003086] RAPL PMU: hw unit of domain psys 2^-14 Joules
[    5.005506] cryptd: max_cpu_qlen set to 1000
[    5.006993] iwlwifi 0000:02:00.0: enabling device (0000 -> 0002)
[    5.008888] iwlwifi 0000:02:00.0: Detected crf-id 0x0, cnv-id 0x0 wfpm id 0x0
[    5.008993] iwlwifi 0000:02:00.0: PCI dev 095a/5410, rev=0x210, rfid=0xd55555d5
[    5.013783] iwlwifi 0000:02:00.0: Found debug destination: EXTERNAL_DRAM
[    5.013785] iwlwifi 0000:02:00.0: Found debug configuration: 0
[    5.013899] iwlwifi 0000:02:00.0: loaded firmware version 29.4063824552.0 7265D-29.ucode op_mode iwlmvm
[    5.017823] AVX2 version of gcm_enc/dec engaged.
[    5.017853] AES CTR mode by8 optimization enabled
[    5.020782] pps_core: LinuxPPS API ver. 1 registered
[    5.020785] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    5.021653] usb 1-5: Found UVC 1.00 device USB 2.0 Camera (0c45:6711)
[    5.025177] PTP clock support registered
[    5.029108] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
[    5.029214] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[    5.029415] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[    5.049879] usbcore: registered new interface driver uvcvideo
[    5.080011] RTL8211E Gigabit Ethernet r8169-0-300:00: attached PHY driver (mii_bus:phy_addr=r8169-0-300:00, irq=MAC)
[    5.116116] iwlwifi 0000:02:00.0: Detected Intel(R) Dual Band Wireless AC 7265, REV=0x210
[    5.116168] thermal thermal_zone4: failed to read out thermal zone (-61)
[    5.117880] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC269VB: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    5.117887] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    5.117888] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[    5.117890] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[    5.117890] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[    5.117891] snd_hda_codec_realtek hdaudioC0D0:      Mic=0x18
[    5.117892] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x19
[    5.117893] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
[    5.119980] usbcore: registered new interface driver btusb
[    5.135126] Bluetooth: hci0: Legacy ROM 2.5 revision 1.0 build 3 week 17 2014
[    5.135131] Bluetooth: hci0: Intel device is already patched. patch num: 39
[    5.135688] intel_tcc_cooling: TCC Offset locked
[    5.136467] input: XXXX0000:01 0911:5288 Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-11/i2c-XXXX0000:01/0018:0911:5288.0001/input/input12
[    5.136513] input: XXXX0000:01 0911:5288 Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-11/i2c-XXXX0000:01/0018:0911:5288.0001/input/input13
[    5.136546] hid-multitouch 0018:0911:5288.0001: input,hidraw0: I2C HID v1.00 Mouse [XXXX0000:01 0911:5288] on i2c-XXXX0000:01
[    5.143057] mousedev: PS/2 mouse device common for all mice
[    5.150526] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input10
[    5.150566] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input11
[    5.150606] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input14
[    5.150635] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input15
[    5.150661] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input16
[    5.150686] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
[    5.180431] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    5.180435] Bluetooth: BNEP filters: protocol multicast
[    5.180439] Bluetooth: BNEP socket layer initialized
[    5.186259] Bluetooth: MGMT ver 1.22
[    5.186302] Bluetooth: ISO socket layer initialized
[    5.189744] NET: Registered PF_ALG protocol family
[    5.328707] r8169 0000:03:00.0 enp3s0: Link is Down
[    5.343860] iwlwifi 0000:02:00.0: Applying debug destination EXTERNAL_DRAM
[    5.345250] iwlwifi 0000:02:00.0: Allocated 0x00400000 bytes for firmware monitor.
[    5.358011] iwlwifi 0000:02:00.0: base HW address: 18:5e:0f:5e:3b:66, OTP minor version: 0x0
[    5.421099] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[    5.427658] iwlwifi 0000:02:00.0 wlp2s0: renamed from wlan0
[    5.450928] iwlwifi 0000:02:00.0: Applying debug destination EXTERNAL_DRAM
[    5.530285] iwlwifi 0000:02:00.0: Applying debug destination EXTERNAL_DRAM
[    5.532460] iwlwifi 0000:02:00.0: FW already configured (0) - re-configuring
[    5.540759] iwlwifi 0000:02:00.0: Registered PHC clock: iwlwifi-PTP, with index: 0
[    5.607588] iwlwifi 0000:02:00.0: Applying debug destination EXTERNAL_DRAM
[    5.687804] iwlwifi 0000:02:00.0: Applying debug destination EXTERNAL_DRAM
[    5.689850] iwlwifi 0000:02:00.0: FW already configured (0) - re-configuring
[    5.695206] fbcon: Taking over console
[    5.707988] Console: switching to colour frame buffer device 240x67
[    8.314817] r8169 0000:03:00.0 enp3s0: Link is Up - 1Gbps/Full - flow control rx/tx
[   10.602121] input: Baseus F02 Mouse  Keyboard as /devices/virtual/misc/uhid/0005:045E:0040.0002/input/input18
[   10.602694] input: Baseus F02 Mouse  Mouse as /devices/virtual/misc/uhid/0005:045E:0040.0002/input/input19
[   10.602985] hid-generic 0005:045E:0040.0002: input,hidraw1: BLUETOOTH HID v3.00 Keyboard [Baseus F02 Mouse ] on 18:5e:0f:5e:3b:6a
[   12.672816] systemd-journald[281]: /var/log/journal/bd024c881a1f4958a55e8145fab6de4c/user-1000.journal: Journal file uses a different sequence number ID, rotating.
[   25.316229] ntfs3: Max link count 4000
[   25.316233] ntfs3: Enabled Linux POSIX ACLs support
[   25.316235] ntfs3: Read-only LZX/Xpress compression included
[   25.405381] Bluetooth: RFCOMM TTY layer initialized
[   25.405389] Bluetooth: RFCOMM socket layer initialized
[   25.405393] Bluetooth: RFCOMM ver 1.11
[   25.617720] warning: `crow' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211

[-- Attachment #1.3: dmesg6.9.2-1.5.log --]
[-- Type: text/plain, Size: 79904 bytes --]

[    0.000000] Linux version 6.9.2-arch1-1.5 (linux@archlinux) (gcc (GCC) 14.1.1 20240522, GNU ld (GNU Binutils) 2.42.0) #1 SMP PREEMPT_DYNAMIC Thu, 30 May 2024 17:09:45 +0000
[    0.000000] Command line: ro root=UUID=9bf7c08f-ded6-4cf7-864f-9eb6b26c33ae resume=UUID=9bf7c08f-ded6-4cf7-864f-9eb6b26c33ae rw add_efi_memmap resume_offset=2170880 quiet split_lock_detect=off loglevel=3 nowatchdog mitigations=off initrd=\boot\initramfs-linux.img
[    0.000000] x86/split lock detection: disabled
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009e000-0x000000000009efff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000009f000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000407cdfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000407ce000-0x00000000407cefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000407cf000-0x000000004244dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000004244e000-0x000000004244efff] reserved
[    0.000000] BIOS-e820: [mem 0x000000004244f000-0x0000000071ca8fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000071ca9000-0x000000007544bfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007544c000-0x000000007553dfff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000007553e000-0x0000000075619fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007561a000-0x0000000075ffefff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000075fff000-0x0000000075ffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000076000000-0x0000000079ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007a600000-0x000000007a7fffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007ac00000-0x00000000803fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000087fbfffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.8 by American Megatrends
[    0.000000] efi: ACPI=0x755b6000 ACPI 2.0=0x755b6014 TPMFinalLog=0x75585000 SMBIOS=0x75dae000 SMBIOS 3.0=0x75dad000 MEMATTR=0x6ecf8198 ESRT=0x6ef4a398 INITRD=0x6599fd98 RNG=0x7548a018 TPMEventLog=0x66603018 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem110: MMIO range=[0xc0000000-0xcfffffff] (256MB) from e820 map
[    0.000000] e820: remove [mem 0xc0000000-0xcfffffff] reserved
[    0.000000] efi: Not removing mem111: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map
[    0.000000] efi: Not removing mem112: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
[    0.000000] efi: Not removing mem113: MMIO range=[0xfed00000-0xfed00fff] (4KB) from e820 map
[    0.000000] efi: Not removing mem115: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
[    0.000000] efi: Remove mem116: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[    0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
[    0.000000] SMBIOS 3.5.0 present.
[    0.000000] DMI: Default string Default string/Default string, BIOS GLX258-A V0.0.5 07/23/2022
[    0.000000] tsc: Detected 2600.000 MHz processor
[    0.000000] tsc: Detected 2611.200 MHz TSC
[    0.000392] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000394] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000401] last_pfn = 0x87fc00 max_arch_pfn = 0x400000000
[    0.000403] MTRR map: 5 entries (3 fixed + 2 variable; max 23), built from 10 variable MTRRs
[    0.000405] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000745] last_pfn = 0x76000 max_arch_pfn = 0x400000000
[    0.009801] esrt: Reserving ESRT space from 0x000000006ef4a398 to 0x000000006ef4a3d0.
[    0.009805] e820: update [mem 0x6ef4a000-0x6ef4afff] usable ==> reserved
[    0.009819] Using GB pages for direct mapping
[    0.009819] Incomplete global flushes, disabling PCID
[    0.010072] Secure boot enabled
[    0.010073] RAMDISK: [mem 0x61b10000-0x62ceefff]
[    0.010099] ACPI: Early table checksum verification disabled
[    0.010102] ACPI: RSDP 0x00000000755B6014 000024 (v02 ALASKA)
[    0.010104] ACPI: XSDT 0x00000000755B5728 000104 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.010108] ACPI: FACP 0x0000000075534000 000114 (v06 ALASKA A M I    01072009 AMI  01000013)
[    0.010112] ACPI: DSDT 0x00000000754BF000 074A9A (v02 ALASKA A M I    01072009 INTL 20200717)
[    0.010114] ACPI: FACS 0x0000000075619000 000040
[    0.010115] ACPI: SSDT 0x0000000075535000 006C41 (v02 DptfTb DptfTabl 00001000 INTL 20200717)
[    0.010118] ACPI: FIDT 0x00000000754BE000 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.010119] ACPI: SSDT 0x000000007553D000 00038C (v02 PmaxDv Pmax_Dev 00000001 INTL 20200717)
[    0.010121] ACPI: SSDT 0x00000000754B8000 005D0B (v02 CpuRef CpuSsdt  00003000 INTL 20200717)
[    0.010123] ACPI: SSDT 0x00000000754B5000 002AA1 (v02 SaSsdt SaSsdt   00003000 INTL 20200717)
[    0.010125] ACPI: SSDT 0x00000000754B1000 0033D3 (v02 INTEL  IgfxSsdt 00003000 INTL 20200717)
[    0.010127] ACPI: HPET 0x000000007553C000 000038 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.010129] ACPI: APIC 0x00000000754B0000 0001DC (v05 ALASKA A M I    01072009 AMI  01000013)
[    0.010130] ACPI: MCFG 0x00000000754AF000 00003C (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.010132] ACPI: SSDT 0x00000000754A6000 008384 (v02 ALASKA AdlP_Rvp 00001000 INTL 20200717)
[    0.010134] ACPI: SSDT 0x00000000754A4000 0019D1 (v02 ALASKA Ther_Rvp 00001000 INTL 20200717)
[    0.010136] ACPI: UEFI 0x000000007556C000 000048 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.010138] ACPI: NHLT 0x00000000754A3000 00002D (v00 ALASKA A M I    01072009 AMI  01000013)
[    0.010139] ACPI: LPIT 0x00000000754A2000 0000CC (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.010141] ACPI: SSDT 0x000000007549E000 002A83 (v02 ALASKA PtidDevc 00001000 INTL 20200717)
[    0.010143] ACPI: SSDT 0x000000007549B000 002357 (v02 ALASKA TbtTypeC 00000000 INTL 20200717)
[    0.010145] ACPI: DBGP 0x000000007549A000 000034 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.010146] ACPI: DBG2 0x0000000075499000 00005C (v00 ALASKA A M I    01072009 AMI  01000013)
[    0.010148] ACPI: SSDT 0x0000000075498000 00078E (v02 INTEL  xh_adlLP 00000000 INTL 20200717)
[    0.010150] ACPI: SSDT 0x0000000075494000 003AEA (v02 SocGpe SocGpe   00003000 INTL 20200717)
[    0.010152] ACPI: SSDT 0x0000000075490000 0039DA (v02 SocCmn SocCmn   00003000 INTL 20200717)
[    0.010154] ACPI: SSDT 0x000000007548F000 000144 (v02 Intel  ADebTabl 00001000 INTL 20200717)
[    0.010156] ACPI: BGRT 0x000000007548E000 000038 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.010157] ACPI: TPM2 0x000000007548D000 00004C (v04 ALASKA A M I    00000001 AMI  00000000)
[    0.010159] ACPI: PHAT 0x000000007548C000 0004EA (v01 ALASKA A M I    00000005 MSFT 0100000D)
[    0.010161] ACPI: WSMT 0x00000000754A1000 000028 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.010163] ACPI: FPDT 0x000000007548B000 000044 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.010164] ACPI: Reserving FACP table memory at [mem 0x75534000-0x75534113]
[    0.010165] ACPI: Reserving DSDT table memory at [mem 0x754bf000-0x75533a99]
[    0.010166] ACPI: Reserving FACS table memory at [mem 0x75619000-0x7561903f]
[    0.010166] ACPI: Reserving SSDT table memory at [mem 0x75535000-0x7553bc40]
[    0.010167] ACPI: Reserving FIDT table memory at [mem 0x754be000-0x754be09b]
[    0.010167] ACPI: Reserving SSDT table memory at [mem 0x7553d000-0x7553d38b]
[    0.010168] ACPI: Reserving SSDT table memory at [mem 0x754b8000-0x754bdd0a]
[    0.010168] ACPI: Reserving SSDT table memory at [mem 0x754b5000-0x754b7aa0]
[    0.010169] ACPI: Reserving SSDT table memory at [mem 0x754b1000-0x754b43d2]
[    0.010169] ACPI: Reserving HPET table memory at [mem 0x7553c000-0x7553c037]
[    0.010170] ACPI: Reserving APIC table memory at [mem 0x754b0000-0x754b01db]
[    0.010170] ACPI: Reserving MCFG table memory at [mem 0x754af000-0x754af03b]
[    0.010171] ACPI: Reserving SSDT table memory at [mem 0x754a6000-0x754ae383]
[    0.010171] ACPI: Reserving SSDT table memory at [mem 0x754a4000-0x754a59d0]
[    0.010172] ACPI: Reserving UEFI table memory at [mem 0x7556c000-0x7556c047]
[    0.010172] ACPI: Reserving NHLT table memory at [mem 0x754a3000-0x754a302c]
[    0.010173] ACPI: Reserving LPIT table memory at [mem 0x754a2000-0x754a20cb]
[    0.010173] ACPI: Reserving SSDT table memory at [mem 0x7549e000-0x754a0a82]
[    0.010174] ACPI: Reserving SSDT table memory at [mem 0x7549b000-0x7549d356]
[    0.010174] ACPI: Reserving DBGP table memory at [mem 0x7549a000-0x7549a033]
[    0.010175] ACPI: Reserving DBG2 table memory at [mem 0x75499000-0x7549905b]
[    0.010175] ACPI: Reserving SSDT table memory at [mem 0x75498000-0x7549878d]
[    0.010176] ACPI: Reserving SSDT table memory at [mem 0x75494000-0x75497ae9]
[    0.010176] ACPI: Reserving SSDT table memory at [mem 0x75490000-0x754939d9]
[    0.010177] ACPI: Reserving SSDT table memory at [mem 0x7548f000-0x7548f143]
[    0.010177] ACPI: Reserving BGRT table memory at [mem 0x7548e000-0x7548e037]
[    0.010178] ACPI: Reserving TPM2 table memory at [mem 0x7548d000-0x7548d04b]
[    0.010178] ACPI: Reserving PHAT table memory at [mem 0x7548c000-0x7548c4e9]
[    0.010179] ACPI: Reserving WSMT table memory at [mem 0x754a1000-0x754a1027]
[    0.010179] ACPI: Reserving FPDT table memory at [mem 0x7548b000-0x7548b043]
[    0.010303] No NUMA configuration found
[    0.010303] Faking a node at [mem 0x0000000000000000-0x000000087fbfffff]
[    0.010305] NODE_DATA(0) allocated [mem 0x87fbfb000-0x87fbfffff]
[    0.010335] Zone ranges:
[    0.010335]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.010336]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.010338]   Normal   [mem 0x0000000100000000-0x000000087fbfffff]
[    0.010339]   Device   empty
[    0.010339] Movable zone start for each node
[    0.010340] Early memory node ranges
[    0.010340]   node   0: [mem 0x0000000000001000-0x000000000009dfff]
[    0.010341]   node   0: [mem 0x000000000009f000-0x000000000009ffff]
[    0.010341]   node   0: [mem 0x0000000000100000-0x00000000407cdfff]
[    0.010342]   node   0: [mem 0x00000000407cf000-0x000000004244dfff]
[    0.010342]   node   0: [mem 0x000000004244f000-0x0000000071ca8fff]
[    0.010343]   node   0: [mem 0x0000000075fff000-0x0000000075ffffff]
[    0.010343]   node   0: [mem 0x0000000100000000-0x000000087fbfffff]
[    0.010345] Initmem setup node 0 [mem 0x0000000000001000-0x000000087fbfffff]
[    0.010348] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.010349] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.010366] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.011690] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.012489] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.012582] On node 0, zone DMA32: 17238 pages in unavailable ranges
[    0.044879] On node 0, zone Normal: 8192 pages in unavailable ranges
[    0.044885] On node 0, zone Normal: 1024 pages in unavailable ranges
[    0.044904] Reserving Intel graphics memory at [mem 0x7c800000-0x803fffff]
[    0.045328] ACPI: PM-Timer IO Port: 0x1808
[    0.045334] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.045335] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.045336] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.045336] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.045337] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.045337] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.045337] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.045338] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.045338] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.045338] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.045339] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.045339] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.045340] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.045340] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.045340] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.045341] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.045341] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.045342] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.045342] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.045342] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.045343] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    0.045343] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    0.045343] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    0.045344] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.045378] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    0.045380] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.045381] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.045384] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.045384] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.045389] e820: update [mem 0x6e4b1000-0x6e503fff] usable ==> reserved
[    0.045397] TSC deadline timer available
[    0.045399] CPU topo: Max. logical packages:   1
[    0.045399] CPU topo: Max. logical dies:       1
[    0.045399] CPU topo: Max. dies per package:   1
[    0.045401] CPU topo: Max. threads per core:   2
[    0.045402] CPU topo: Num. cores per package:    10
[    0.045402] CPU topo: Num. threads per package:  12
[    0.045403] CPU topo: Allowing 12 present CPUs plus 0 hotplug CPUs
[    0.045416] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.045418] PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009efff]
[    0.045419] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.045420] PM: hibernation: Registered nosave memory: [mem 0x407ce000-0x407cefff]
[    0.045420] PM: hibernation: Registered nosave memory: [mem 0x4244e000-0x4244efff]
[    0.045421] PM: hibernation: Registered nosave memory: [mem 0x6e4b1000-0x6e503fff]
[    0.045422] PM: hibernation: Registered nosave memory: [mem 0x6ef4a000-0x6ef4afff]
[    0.045423] PM: hibernation: Registered nosave memory: [mem 0x71ca9000-0x7544bfff]
[    0.045423] PM: hibernation: Registered nosave memory: [mem 0x7544c000-0x7553dfff]
[    0.045424] PM: hibernation: Registered nosave memory: [mem 0x7553e000-0x75619fff]
[    0.045424] PM: hibernation: Registered nosave memory: [mem 0x7561a000-0x75ffefff]
[    0.045425] PM: hibernation: Registered nosave memory: [mem 0x76000000-0x79ffffff]
[    0.045425] PM: hibernation: Registered nosave memory: [mem 0x7a000000-0x7a5fffff]
[    0.045426] PM: hibernation: Registered nosave memory: [mem 0x7a600000-0x7a7fffff]
[    0.045426] PM: hibernation: Registered nosave memory: [mem 0x7a800000-0x7abfffff]
[    0.045426] PM: hibernation: Registered nosave memory: [mem 0x7ac00000-0x803fffff]
[    0.045427] PM: hibernation: Registered nosave memory: [mem 0x80400000-0xfdffffff]
[    0.045427] PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[    0.045428] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[    0.045428] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.045428] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
[    0.045429] PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
[    0.045429] PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed1ffff]
[    0.045429] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
[    0.045430] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfedfffff]
[    0.045430] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.045430] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
[    0.045431] [mem 0x80400000-0xfdffffff] available for PCI devices
[    0.045432] Booting paravirtualized kernel on bare hardware
[    0.045434] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[    0.049310] setup_percpu: NR_CPUS:320 nr_cpumask_bits:12 nr_cpu_ids:12 nr_node_ids:1
[    0.049786] percpu: Embedded 66 pages/cpu s233472 r8192 d28672 u524288
[    0.049789] pcpu-alloc: s233472 r8192 d28672 u524288 alloc=1*2097152
[    0.049791] pcpu-alloc: [0] 00 01 02 03 [0] 04 05 06 07 
[    0.049794] pcpu-alloc: [0] 08 09 10 11 
[    0.049804] Kernel command line: ro root=UUID=9bf7c08f-ded6-4cf7-864f-9eb6b26c33ae resume=UUID=9bf7c08f-ded6-4cf7-864f-9eb6b26c33ae rw add_efi_memmap resume_offset=2170880 quiet split_lock_detect=off loglevel=3 nowatchdog mitigations=off initrd=\boot\initramfs-linux.img
[    0.049868] Unknown kernel command line parameters "split_lock_detect=off", will be passed to user space.
[    0.051824] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.052803] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.052887] Fallback order for Node 0: 0 
[    0.052889] Built 1 zonelists, mobility grouping on.  Total pages: 8198981
[    0.052890] Policy zone: Normal
[    0.053031] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[    0.053035] software IO TLB: area num 16.
[    0.099526] Memory: 32446260K/33317144K available (18432K kernel code, 2164K rwdata, 13296K rodata, 3412K init, 3624K bss, 870624K reserved, 0K cma-reserved)
[    0.099663] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=12, Nodes=1
[    0.099693] ftrace: allocating 49853 entries in 195 pages
[    0.103962] ftrace: allocated 195 pages with 4 groups
[    0.104015] Dynamic Preempt: full
[    0.104051] rcu: Preemptible hierarchical RCU implementation.
[    0.104052] rcu: 	RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=12.
[    0.104053] rcu: 	RCU priority boosting: priority 1 delay 500 ms.
[    0.104054] 	Trampoline variant of Tasks RCU enabled.
[    0.104054] 	Rude variant of Tasks RCU enabled.
[    0.104054] 	Tracing variant of Tasks RCU enabled.
[    0.104055] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[    0.104056] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=12
[    0.104062] RCU Tasks: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[    0.104063] RCU Tasks Rude: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[    0.104064] RCU Tasks Trace: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[    0.106481] NR_IRQS: 20736, nr_irqs: 2152, preallocated irqs: 16
[    0.106764] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.107006] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[    0.107027] Console: colour dummy device 80x25
[    0.107029] printk: legacy console [tty0] enabled
[    0.107056] ACPI: Core revision 20230628
[    0.107265] hpet: HPET dysfunctional in PC10. Force disabled.
[    0.107266] APIC: Switch to symmetric I/O mode setup
[    0.108577] x2apic: IRQ remapping doesn't support X2APIC mode
[    0.108918] APIC: Switched APIC routing to: physical flat
[    0.113284] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x25a39079a08, max_idle_ns: 440795310461 ns
[    0.113289] Calibrating delay loop (skipped), value calculated using timer frequency.. 5224.00 BogoMIPS (lpj=8704000)
[    0.113353] CPU0: Thermal monitoring enabled (TM1)
[    0.113354] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.113447] CET detected: Indirect Branch Tracking enabled
[    0.113449] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.113449] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.113452] process: using mwait in idle threads
[    0.113454] Spectre V2 : User space: Vulnerable
[    0.113455] Speculative Store Bypass: Vulnerable
[    0.113465] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.113466] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.113466] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.113467] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.113467] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    0.113468] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.113469] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    0.113469] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
[    0.113470] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[    0.116620] Freeing SMP alternatives memory: 40K
[    0.116620] pid_max: default: 32768 minimum: 301
[    0.116620] LSM: initializing lsm=capability,landlock,lockdown,yama,bpf
[    0.116620] landlock: Up and running.
[    0.116620] Yama: becoming mindful.
[    0.116620] LSM support for eBPF active
[    0.116620] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.116620] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.116620] smpboot: CPU0: 12th Gen Intel(R) Core(TM) i7-1255U (family: 0x6, model: 0x9a, stepping: 0x4)
[    0.116620] Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline,  AnyThread deprecated, Alderlake Hybrid events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.116620] core: cpu_core PMU driver: 
[    0.116620] ... version:                5
[    0.116620] ... bit width:              48
[    0.116620] ... generic registers:      8
[    0.116620] ... value mask:             0000ffffffffffff
[    0.116620] ... max period:             00007fffffffffff
[    0.116620] ... fixed-purpose events:   4
[    0.116620] ... event mask:             0001000f000000ff
[    0.116620] signal: max sigframe size: 3632
[    0.116620] Estimated ratio of average max frequency by base frequency (times 1024): 1614
[    0.116620] rcu: Hierarchical SRCU implementation.
[    0.116620] rcu: 	Max phase no-delay instances is 1000.
[    0.116620] smp: Bringing up secondary CPUs ...
[    0.116620] smpboot: x86: Booting SMP configuration:
[    0.116620] .... node  #0, CPUs:        #2  #4  #5  #6  #7  #8  #9 #10 #11
[    0.009676] [Firmware Bug]: CPU4: Topology domain 1 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU4: Topology domain 2 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU4: Topology domain 3 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU4: Topology domain 4 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU4: Topology domain 5 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU4: Topology domain 6 shift 7 != 6
[    0.009676] core: cpu_atom PMU driver: PEBS-via-PT 
[    0.009676] ... version:                5
[    0.009676] ... bit width:              48
[    0.009676] ... generic registers:      6
[    0.009676] ... value mask:             0000ffffffffffff
[    0.009676] ... max period:             00007fffffffffff
[    0.009676] ... fixed-purpose events:   3
[    0.009676] ... event mask:             000000070000003f
[    0.009676] [Firmware Bug]: CPU5: Topology domain 1 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU5: Topology domain 2 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU5: Topology domain 3 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU5: Topology domain 4 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU5: Topology domain 5 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU5: Topology domain 6 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU6: Topology domain 1 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU6: Topology domain 2 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU6: Topology domain 3 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU6: Topology domain 4 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU6: Topology domain 5 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU6: Topology domain 6 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU7: Topology domain 1 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU7: Topology domain 2 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU7: Topology domain 3 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU7: Topology domain 4 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU7: Topology domain 5 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU7: Topology domain 6 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU8: Topology domain 1 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU8: Topology domain 2 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU8: Topology domain 3 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU8: Topology domain 4 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU8: Topology domain 5 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU8: Topology domain 6 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU9: Topology domain 1 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU9: Topology domain 2 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU9: Topology domain 3 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU9: Topology domain 4 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU9: Topology domain 5 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU9: Topology domain 6 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU10: Topology domain 1 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU10: Topology domain 2 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU10: Topology domain 3 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU10: Topology domain 4 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU10: Topology domain 5 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU10: Topology domain 6 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU11: Topology domain 1 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU11: Topology domain 2 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU11: Topology domain 3 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU11: Topology domain 4 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU11: Topology domain 5 shift 7 != 6
[    0.009676] [Firmware Bug]: CPU11: Topology domain 6 shift 7 != 6
[    0.120017]   #1  #3
[    0.121153] smp: Brought up 1 node, 12 CPUs
[    0.121153] smpboot: Total of 12 processors activated (62693.00 BogoMIPS)
[    0.123865] devtmpfs: initialized
[    0.123865] x86/mm: Memory block size: 128MB
[    0.124414] ACPI: PM: Registering ACPI NVS region [mem 0x7553e000-0x75619fff] (901120 bytes)
[    0.124414] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    0.124414] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    0.124414] pinctrl core: initialized pinctrl subsystem
[    0.124414] PM: RTC time: 05:47:18, date: 2024-05-31
[    0.124414] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.124414] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    0.124445] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.126649] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.126655] audit: initializing netlink subsys (disabled)
[    0.126674] audit: type=2000 audit(1717134438.013:1): state=initialized audit_enabled=0 res=1
[    0.126675] thermal_sys: Registered thermal governor 'fair_share'
[    0.126675] thermal_sys: Registered thermal governor 'bang_bang'
[    0.126676] thermal_sys: Registered thermal governor 'step_wise'
[    0.126676] thermal_sys: Registered thermal governor 'user_space'
[    0.126677] thermal_sys: Registered thermal governor 'power_allocator'
[    0.126683] cpuidle: using governor ladder
[    0.126685] cpuidle: using governor menu
[    0.126709] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.126709] PCI: ECAM [mem 0xc0000000-0xcfffffff] (base 0xc0000000) for domain 0000 [bus 00-ff]
[    0.126709] PCI: not using ECAM ([mem 0xc0000000-0xcfffffff] not reserved)
[    0.126709] PCI: Using configuration type 1 for base access
[    0.126778] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.126781] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.126781] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    0.126781] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.126781] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    0.126794] Demotion targets for Node 0: null
[    0.126864] ACPI: Added _OSI(Module Device)
[    0.126864] ACPI: Added _OSI(Processor Device)
[    0.126864] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.126864] ACPI: Added _OSI(Processor Aggregator Device)
[    0.199620] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.TXHC.RHUB.SS01], AE_NOT_FOUND (20230628/dswload2-162)
[    0.199626] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20230628/psobject-220)
[    0.199628] ACPI: Skipping parse of AML opcode: Scope (0x0010)
[    0.199630] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.TXHC.RHUB.SS02], AE_NOT_FOUND (20230628/dswload2-162)
[    0.199633] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20230628/psobject-220)
[    0.199634] ACPI: Skipping parse of AML opcode: Scope (0x0010)
[    0.199636] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.TXHC.RHUB.SS03], AE_NOT_FOUND (20230628/dswload2-162)
[    0.199638] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20230628/psobject-220)
[    0.199640] ACPI: Skipping parse of AML opcode: Scope (0x0010)
[    0.199642] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.TXHC.RHUB.SS04], AE_NOT_FOUND (20230628/dswload2-162)
[    0.199644] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20230628/psobject-220)
[    0.199645] ACPI: Skipping parse of AML opcode: Scope (0x0010)
[    0.201314] ACPI: 14 ACPI AML tables successfully acquired and loaded
[    0.215758] ACPI: Dynamic OEM Table Load:
[    0.215766] ACPI: SSDT 0xFFFF9B5AC135E400 000394 (v02 PmRef  Cpu0Cst  00003001 INTL 20200717)
[    0.216692] ACPI: Dynamic OEM Table Load:
[    0.216697] ACPI: SSDT 0xFFFF9B5AC1386800 000605 (v02 PmRef  Cpu0Ist  00003000 INTL 20200717)
[    0.217654] ACPI: Dynamic OEM Table Load:
[    0.217658] ACPI: SSDT 0xFFFF9B5AC12C0600 0001AB (v02 PmRef  Cpu0Psd  00003000 INTL 20200717)
[    0.218528] ACPI: Dynamic OEM Table Load:
[    0.218532] ACPI: SSDT 0xFFFF9B5AC1380000 0004BA (v02 PmRef  Cpu0Hwp  00003000 INTL 20200717)
[    0.219763] ACPI: Dynamic OEM Table Load:
[    0.219770] ACPI: SSDT 0xFFFF9B5AC1388000 001BAF (v02 PmRef  ApIst    00003000 INTL 20200717)
[    0.221325] ACPI: Dynamic OEM Table Load:
[    0.221331] ACPI: SSDT 0xFFFF9B5AC138C000 001038 (v02 PmRef  ApHwp    00003000 INTL 20200717)
[    0.222676] ACPI: Dynamic OEM Table Load:
[    0.222682] ACPI: SSDT 0xFFFF9B5AC138A000 001349 (v02 PmRef  ApPsd    00003000 INTL 20200717)
[    0.224102] ACPI: Dynamic OEM Table Load:
[    0.224108] ACPI: SSDT 0xFFFF9B5AC1365000 000FBB (v02 PmRef  ApCst    00003000 INTL 20200717)
[    0.228846] ACPI: _OSC evaluated successfully for all CPUs
[    0.228883] ACPI: EC: EC started
[    0.228884] ACPI: EC: interrupt blocked
[    0.234254] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.234256] ACPI: \_SB_.PC00.LPCB.H_EC: Boot DSDT EC used to handle transactions
[    0.234258] ACPI: Interpreter enabled
[    0.234302] ACPI: PM: (supports S0 S3 S4 S5)
[    0.234302] ACPI: Using IOAPIC for interrupt routing
[    0.235420] PCI: ECAM [mem 0xc0000000-0xcfffffff] (base 0xc0000000) for domain 0000 [bus 00-ff]
[    0.237249] PCI: ECAM [mem 0xc0000000-0xcfffffff] reserved as ACPI motherboard resource
[    0.237257] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.237258] PCI: Using E820 reservations for host bridge windows
[    0.238695] ACPI: Enabled 7 GPEs in block 00 to 7F
[    0.239495] ACPI: \_SB_.PC00.PEG1.PXP_: New power resource
[    0.240053] ACPI: \_SB_.PC00.PEG2.PXP_: New power resource
[    0.241237] ACPI: \_SB_.PC00.PEG0.PXP_: New power resource
[    0.372036] ACPI: \_SB_.PC00.RP05.PXP_: New power resource
[    0.380752] ACPI: \_SB_.PC00.PAUD: New power resource
[    0.389920] ACPI: \_SB_.PC00.CNVW.WRST: New power resource
[    0.401851] ACPI: \PIN_: New power resource
[    0.402111] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-fe])
[    0.402116] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.403805] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[    0.405228] PCI host bridge to bus 0000:00
[    0.405230] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.405232] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.405234] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.405235] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
[    0.405236] pci_bus 0000:00: root bus resource [mem 0x80400000-0xbfffffff window]
[    0.405237] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
[    0.405239] pci_bus 0000:00: root bus resource [bus 00-fe]
[    0.405403] pci 0000:00:00.0: [8086:4601] type 00 class 0x060000 conventional PCI endpoint
[    0.405526] pci 0000:00:02.0: [8086:46a8] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
[    0.405534] pci 0000:00:02.0: BAR 0 [mem 0x6001000000-0x6001ffffff 64bit]
[    0.405539] pci 0000:00:02.0: BAR 2 [mem 0x4000000000-0x400fffffff 64bit pref]
[    0.405542] pci 0000:00:02.0: BAR 4 [io  0x4000-0x403f]
[    0.405556] pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
[    0.405558] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.405582] pci 0000:00:02.0: VF BAR 0 [mem 0x00000000-0x00ffffff 64bit]
[    0.405583] pci 0000:00:02.0: VF BAR 0 [mem 0x00000000-0x06ffffff 64bit]: contains BAR 0 for 7 VFs
[    0.405587] pci 0000:00:02.0: VF BAR 2 [mem 0x00000000-0x1fffffff 64bit pref]
[    0.405588] pci 0000:00:02.0: VF BAR 2 [mem 0x00000000-0xdfffffff 64bit pref]: contains BAR 2 for 7 VFs
[    0.405714] pci 0000:00:04.0: [8086:461d] type 00 class 0x118000 conventional PCI endpoint
[    0.405726] pci 0000:00:04.0: BAR 0 [mem 0x6002100000-0x600211ffff 64bit]
[    0.406071] pci 0000:00:06.0: [8086:464d] type 01 class 0x060400 PCIe Root Port
[    0.406101] pci 0000:00:06.0: PCI bridge to [bus 01]
[    0.406109] pci 0000:00:06.0:   bridge window [mem 0x80500000-0x805fffff]
[    0.406192] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
[    0.406229] pci 0000:00:06.0: PTM enabled (root), 4ns granularity
[    0.406842] pci 0000:00:14.0: [8086:51ed] type 00 class 0x0c0330 conventional PCI endpoint
[    0.406863] pci 0000:00:14.0: BAR 0 [mem 0x6002120000-0x600212ffff 64bit]
[    0.406947] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.408726] pci 0000:00:14.2: [8086:51ef] type 00 class 0x050000 conventional PCI endpoint
[    0.408747] pci 0000:00:14.2: BAR 0 [mem 0x6002134000-0x6002137fff 64bit]
[    0.408760] pci 0000:00:14.2: BAR 2 [mem 0x600213b000-0x600213bfff 64bit]
[    0.408875] pci 0000:00:15.0: [8086:51e8] type 00 class 0x0c8000 conventional PCI endpoint
[    0.408897] pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[    0.409265] pci 0000:00:16.0: [8086:51e0] type 00 class 0x078000 conventional PCI endpoint
[    0.409289] pci 0000:00:16.0: BAR 0 [mem 0x6002139000-0x6002139fff 64bit]
[    0.409374] pci 0000:00:16.0: PME# supported from D3hot
[    0.409674] pci 0000:00:17.0: [8086:51d3] type 00 class 0x010601 conventional PCI endpoint
[    0.409690] pci 0000:00:17.0: BAR 0 [mem 0x80600000-0x80601fff]
[    0.409700] pci 0000:00:17.0: BAR 1 [mem 0x80603000-0x806030ff]
[    0.409708] pci 0000:00:17.0: BAR 2 [io  0x4090-0x4097]
[    0.409717] pci 0000:00:17.0: BAR 3 [io  0x4080-0x4083]
[    0.409726] pci 0000:00:17.0: BAR 4 [io  0x4060-0x407f]
[    0.409734] pci 0000:00:17.0: BAR 5 [mem 0x80602000-0x806027ff]
[    0.409782] pci 0000:00:17.0: PME# supported from D3hot
[    0.410077] pci 0000:00:1d.0: [8086:51b0] type 01 class 0x060400 PCIe Root Port
[    0.410104] pci 0000:00:1d.0: PCI bridge to [bus 02]
[    0.410109] pci 0000:00:1d.0:   bridge window [mem 0x80400000-0x804fffff]
[    0.410189] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.410220] pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
[    0.410769] pci 0000:00:1d.1: [8086:51b1] type 01 class 0x060400 PCIe Root Port
[    0.410796] pci 0000:00:1d.1: PCI bridge to [bus 03]
[    0.410800] pci 0000:00:1d.1:   bridge window [io  0x3000-0x3fff]
[    0.410811] pci 0000:00:1d.1:   bridge window [mem 0x6000000000-0x60000fffff 64bit pref]
[    0.410882] pci 0000:00:1d.1: PME# supported from D0 D3hot D3cold
[    0.410913] pci 0000:00:1d.1: PTM enabled (root), 4ns granularity
[    0.411478] pci 0000:00:1f.0: [8086:5182] type 00 class 0x060100 conventional PCI endpoint
[    0.411869] pci 0000:00:1f.3: [8086:51c8] type 00 class 0x040100 conventional PCI endpoint
[    0.411911] pci 0000:00:1f.3: BAR 0 [mem 0x6002130000-0x6002133fff 64bit]
[    0.411965] pci 0000:00:1f.3: BAR 4 [mem 0x6002000000-0x60020fffff 64bit]
[    0.412069] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    0.412365] pci 0000:00:1f.4: [8086:51a3] type 00 class 0x0c0500 conventional PCI endpoint
[    0.412386] pci 0000:00:1f.4: BAR 0 [mem 0x6002138000-0x60021380ff 64bit]
[    0.412408] pci 0000:00:1f.4: BAR 4 [io  0xefa0-0xefbf]
[    0.412690] pci 0000:00:1f.5: [8086:51a4] type 00 class 0x0c8000 conventional PCI endpoint
[    0.412709] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
[    0.416642] pci 0000:01:00.0: [1987:5013] type 00 class 0x010802 PCIe Endpoint
[    0.416658] pci 0000:01:00.0: BAR 0 [mem 0x80500000-0x80503fff 64bit]
[    0.417584] pci 0000:00:06.0: PCI bridge to [bus 01]
[    0.417834] pci 0000:02:00.0: [8086:095a] type 00 class 0x028000 PCIe Endpoint
[    0.417921] pci 0000:02:00.0: BAR 0 [mem 0x80400000-0x80401fff 64bit]
[    0.418266] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[    0.419243] pci 0000:00:1d.0: PCI bridge to [bus 02]
[    0.419314] pci 0000:03:00.0: [10ec:8168] type 00 class 0x020000 PCIe Endpoint
[    0.419333] pci 0000:03:00.0: BAR 0 [io  0x3000-0x30ff]
[    0.419357] pci 0000:03:00.0: BAR 2 [mem 0x6000004000-0x6000004fff 64bit pref]
[    0.419373] pci 0000:03:00.0: BAR 4 [mem 0x6000000000-0x6000003fff 64bit pref]
[    0.419484] pci 0000:03:00.0: supports D1 D2
[    0.419485] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.419651] pci 0000:00:1d.1: PCI bridge to [bus 03]
[    0.423690] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    0.423778] ACPI: PCI: Interrupt link LNKB configured for IRQ 1
[    0.423864] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    0.423950] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    0.424036] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.424122] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.424208] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.424294] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.431684] ACPI: EC: interrupt unblocked
[    0.431685] ACPI: EC: event unblocked
[    0.431707] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.431708] ACPI: EC: GPE=0x6e
[    0.431709] ACPI: \_SB_.PC00.LPCB.H_EC: Boot DSDT EC initialization complete
[    0.431710] ACPI: \_SB_.PC00.LPCB.H_EC: EC: Used to handle transactions and events
[    0.431760] iommu: Default domain type: Translated
[    0.431760] iommu: DMA domain TLB invalidation policy: lazy mode
[    0.431760] SCSI subsystem initialized
[    0.431760] libata version 3.00 loaded.
[    0.431760] ACPI: bus type USB registered
[    0.431760] usbcore: registered new interface driver usbfs
[    0.431760] usbcore: registered new interface driver hub
[    0.431760] usbcore: registered new device driver usb
[    0.431760] EDAC MC: Ver: 3.0.0
[    0.431760] efivars: Registered efivars operations
[    0.433471] NetLabel: Initializing
[    0.433472] NetLabel:  domain hash size = 128
[    0.433473] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.433487] NetLabel:  unlabeled traffic allowed by default
[    0.433491] mctp: management component transport protocol core
[    0.433491] NET: Registered PF_MCTP protocol family
[    0.433494] PCI: Using ACPI for IRQ routing
[    0.453044] PCI: pci_cache_line_size set to 64 bytes
[    0.456819] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]: can't claim; no compatible bridge window
[    0.457738] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
[    0.457739] e820: reserve RAM buffer [mem 0x407ce000-0x43ffffff]
[    0.457740] e820: reserve RAM buffer [mem 0x4244e000-0x43ffffff]
[    0.457741] e820: reserve RAM buffer [mem 0x6e4b1000-0x6fffffff]
[    0.457742] e820: reserve RAM buffer [mem 0x6ef4a000-0x6fffffff]
[    0.457742] e820: reserve RAM buffer [mem 0x71ca9000-0x73ffffff]
[    0.457743] e820: reserve RAM buffer [mem 0x76000000-0x77ffffff]
[    0.457744] e820: reserve RAM buffer [mem 0x87fc00000-0x87fffffff]
[    0.457769] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.457769] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.457769] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.457769] vgaarb: loaded
[    0.457769] clocksource: Switched to clocksource tsc-early
[    0.457769] VFS: Disk quotas dquot_6.6.0
[    0.457769] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.457769] pnp: PnP ACPI init
[    0.458605] system 00:00: [io  0x0680-0x069f] has been reserved
[    0.458608] system 00:00: [io  0x164e-0x164f] has been reserved
[    0.458716] system 00:01: [io  0x1854-0x1857] has been reserved
[    0.460494] pnp 00:02: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
[    0.460513] system 00:02: [mem 0xfedc0000-0xfedc7fff] has been reserved
[    0.460515] system 00:02: [mem 0xfeda0000-0xfeda0fff] has been reserved
[    0.460517] system 00:02: [mem 0xfeda1000-0xfeda1fff] has been reserved
[    0.460518] system 00:02: [mem 0xfed20000-0xfed7ffff] could not be reserved
[    0.460519] system 00:02: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.460520] system 00:02: [mem 0xfed45000-0xfed8ffff] could not be reserved
[    0.460521] system 00:02: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.461221] system 00:04: [io  0x2000-0x20fe] has been reserved
[    0.461614] system 00:05: [mem 0xfe03e008-0xfe03efff] has been reserved
[    0.461616] system 00:05: [mem 0xfe03f000-0xfe03ffff] has been reserved
[    0.461981] pnp: PnP ACPI: found 6 devices
[    0.467279] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.467347] NET: Registered PF_INET protocol family
[    0.467550] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.478627] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    0.478655] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.478803] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.479084] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    0.479169] TCP: Hash tables configured (established 262144 bind 65536)
[    0.479286] MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
[    0.479358] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.479422] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.479481] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.479487] NET: Registered PF_XDP protocol family
[    0.479501] pci 0000:00:02.0: VF BAR 2 [mem 0x4020000000-0x40ffffffff 64bit pref]: assigned
[    0.479506] pci 0000:00:02.0: VF BAR 0 [mem 0x4010000000-0x4016ffffff 64bit]: assigned
[    0.479508] pci 0000:00:15.0: BAR 0 [mem 0x4017000000-0x4017000fff 64bit]: assigned
[    0.479522] resource: avoiding allocation from e820 entry [mem 0x000a0000-0x000fffff]
[    0.479523] resource: avoiding allocation from e820 entry [mem 0x000a0000-0x000fffff]
[    0.479525] pci 0000:00:1f.5: BAR 0 [mem 0x80604000-0x80604fff]: assigned
[    0.479531] pci 0000:00:06.0: PCI bridge to [bus 01]
[    0.479546] pci 0000:00:06.0:   bridge window [mem 0x80500000-0x805fffff]
[    0.479565] pci 0000:00:1d.0: PCI bridge to [bus 02]
[    0.479570] pci 0000:00:1d.0:   bridge window [mem 0x80400000-0x804fffff]
[    0.479577] pci 0000:00:1d.1: PCI bridge to [bus 03]
[    0.479578] pci 0000:00:1d.1:   bridge window [io  0x3000-0x3fff]
[    0.479584] pci 0000:00:1d.1:   bridge window [mem 0x6000000000-0x60000fffff 64bit pref]
[    0.479589] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.479591] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.479592] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.479593] pci_bus 0000:00: resource 7 [mem 0x000e0000-0x000fffff window]
[    0.479594] pci_bus 0000:00: resource 8 [mem 0x80400000-0xbfffffff window]
[    0.479595] pci_bus 0000:00: resource 9 [mem 0x4000000000-0x7fffffffff window]
[    0.479596] pci_bus 0000:01: resource 1 [mem 0x80500000-0x805fffff]
[    0.479597] pci_bus 0000:02: resource 1 [mem 0x80400000-0x804fffff]
[    0.479598] pci_bus 0000:03: resource 0 [io  0x3000-0x3fff]
[    0.479599] pci_bus 0000:03: resource 2 [mem 0x6000000000-0x60000fffff 64bit pref]
[    0.480958] PCI: CLS 64 bytes, default 64
[    0.480965] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.480965] software IO TLB: mapped [mem 0x000000005db10000-0x0000000061b10000] (64MB)
[    0.481017] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x25a39079a08, max_idle_ns: 440795310461 ns
[    0.481063] Trying to unpack rootfs image as initramfs...
[    0.481173] clocksource: Switched to clocksource tsc
[    0.481195] platform rtc_cmos: registered platform RTC device (no PNP device found)
[    0.487335] Initialise system trusted keyrings
[    0.487342] Key type blacklist registered
[    0.487401] workingset: timestamp_bits=41 max_order=23 bucket_order=0
[    0.487407] zbud: loaded
[    0.487478] fuse: init (API version 7.40)
[    0.487533] integrity: Platform Keyring initialized
[    0.487535] integrity: Machine keyring initialized
[    0.495079] Key type asymmetric registered
[    0.495081] Asymmetric key parser 'x509' registered
[    0.495095] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    0.495157] io scheduler mq-deadline registered
[    0.495158] io scheduler kyber registered
[    0.495164] io scheduler bfq registered
[    0.495533] pcieport 0000:00:06.0: PME: Signaling with IRQ 120
[    0.495741] pcieport 0000:00:1d.0: PME: Signaling with IRQ 121
[    0.495926] pcieport 0000:00:1d.1: PME: Signaling with IRQ 122
[    0.495997] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.497933] ACPI: AC: AC Adapter [ADP1] (on-line)
[    0.497968] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0b/PNP0C09:00/PNP0C0D:00/input/input0
[    0.497978] ACPI: button: Lid Switch [LID0]
[    0.498002] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    0.498012] ACPI: button: Power Button [PWRB]
[    0.498029] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
[    0.498038] ACPI: button: Sleep Button [SLPB]
[    0.498057] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    0.498090] ACPI: button: Power Button [PWRF]
[    0.500781] thermal LNXTHERM:00: registered as thermal_zone0
[    0.500783] ACPI: thermal: Thermal Zone [TZ00] (28 C)
[    0.500949] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.504528] hpet_acpi_add: no address or irqs in _CRS
[    0.504557] Non-volatile memory driver v1.3
[    0.504558] Linux agpgart interface v0.103
[    0.511966] ACPI: bus type drm_connector registered
[    0.512658] ahci 0000:00:17.0: version 3.0
[    0.512805] ahci 0000:00:17.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
[    0.512807] ahci 0000:00:17.0: 1/2 ports implemented (port mask 0x2)
[    0.512808] ahci 0000:00:17.0: flags: 64bit ncq sntf pm led clo only pio slum part deso sadm sds 
[    0.512971] scsi host0: ahci
[    0.513029] scsi host1: ahci
[    0.513045] ata1: DUMMY
[    0.513046] ata2: SATA max UDMA/133 abar m2048@0x80602000 port 0x80602180 irq 123 lpm-pol 3
[    0.513092] usbcore: registered new interface driver usbserial_generic
[    0.513095] usbserial: USB Serial support registered for generic
[    0.513175] rtc_cmos rtc_cmos: RTC can wake from S4
[    0.513202] ACPI: battery: Slot [BAT0] (battery present)
[    0.513337] Freeing initrd memory: 18300K
[    0.513985] rtc_cmos rtc_cmos: registered as rtc0
[    0.514150] rtc_cmos rtc_cmos: setting system clock to 2024-05-31T05:47:19 UTC (1717134439)
[    0.514169] rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
[    0.514526] intel_pstate: Intel P-state driver initializing
[    0.515271] intel_pstate: HWP enabled
[    0.515327] ledtrig-cpu: registered to indicate activity on CPUs
[    0.515488] [drm] Initialized simpledrm 1.0.0 20200625 for simple-framebuffer.0 on minor 0
[    0.515759] fbcon: Deferring console take-over
[    0.515761] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[    0.515789] hid: raw HID events driver (C) Jiri Kosina
[    0.515842] drop_monitor: Initializing network drop monitor service
[    0.515919] NET: Registered PF_INET6 protocol family
[    0.519909] Segment Routing with IPv6
[    0.519911] RPL Segment Routing with IPv6
[    0.519916] In-situ OAM (IOAM) with IPv6
[    0.519933] NET: Registered PF_PACKET protocol family
[    0.520538] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.520784] microcode: Current revision: 0x00000433
[    0.520784] microcode: Updated early from: 0x0000041b
[    0.521033] resctrl: L2 allocation detected
[    0.521042] IPI shorthand broadcast: enabled
[    0.521914] sched_clock: Marking stable (514686506, 6343531)->(542413923, -21383886)
[    0.522031] Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
[    0.522134] registered taskstats version 1
[    0.522398] Loading compiled-in X.509 certificates
[    0.523934] Loaded X.509 cert 'Build time autogenerated kernel key: eba0468f1bde3ca892316281e0e049bc0db5b106'
[    0.526616] zswap: loaded using pool zstd/zsmalloc
[    0.526782] Key type .fscrypt registered
[    0.526782] Key type fscrypt-provisioning registered
[    0.527014] integrity: Loading X.509 certificate: UEFI:db
[    0.527028] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    0.527029] integrity: Loading X.509 certificate: UEFI:db
[    0.527039] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    0.527040] integrity: Loading X.509 certificate: UEFI:db
[    0.529193] integrity: Loaded X.509 cert 'my Signature Database key: f55742b17ee4c75ecb4f66293e2fbceddefed102'
[    0.529943] PM:   Magic number: 8:89:771
[    0.531587] RAS: Correctable Errors collector initialized.
[    0.825519] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    0.828720] ata2.00: ATA-10: Hanstor M.2 1TB, U0510A0, max UDMA/133
[    0.830242] ata2.00: 1953525168 sectors, multi 1: LBA48 NCQ (depth 32), AA
[    0.837166] ata2.00: configured for UDMA/133
[    0.848231] scsi 1:0:0:0: Direct-Access     ATA      Hanstor M.2 1TB  0A0  PQ: 0 ANSI: 5
[    0.851365] sd 1:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[    0.851400] sd 1:0:0:0: [sda] Write Protect is off
[    0.851406] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    0.851431] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    0.851478] sd 1:0:0:0: [sda] Preferred minimum I/O size 512 bytes
[    0.856137]  sda: sda1
[    0.856551] sd 1:0:0:0: [sda] Attached SCSI disk
[    0.856827] clk: Disabling unused clocks
[    0.856838] PM: genpd: Disabling unused power domains
[    0.866251] Freeing unused decrypted memory: 2028K
[    0.866613] Freeing unused kernel image (initmem) memory: 3412K
[    0.866614] Write protecting the kernel read-only data: 32768k
[    0.867150] Freeing unused kernel image (rodata/data gap) memory: 1040K
[    0.872252] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    0.872255] rodata_test: all tests were successful
[    0.872258] Run /init as init process
[    0.872259]   with arguments:
[    0.872260]     /init
[    0.872260]   with environment:
[    0.872261]     HOME=/
[    0.872261]     TERM=linux
[    0.872262]     split_lock_detect=off
[    0.891199] systemd[1]: systemd 255.7-1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
[    0.891204] systemd[1]: Detected architecture x86-64.
[    0.891206] systemd[1]: Running in initrd.
[    0.891305] systemd[1]: Initializing machine ID from random generator.
[    0.946042] systemd[1]: Queued start job for default target Initrd Default Target.
[    0.948536] systemd[1]: Expecting device /dev/disk/by-uuid/9bf7c08f-ded6-4cf7-864f-9eb6b26c33ae...
[    0.948574] systemd[1]: Reached target Path Units.
[    0.948582] systemd[1]: Reached target Slice Units.
[    0.948588] systemd[1]: Reached target Swaps.
[    0.948594] systemd[1]: Reached target Timer Units.
[    0.948645] systemd[1]: Listening on Journal Socket (/dev/log).
[    0.948678] systemd[1]: Listening on Journal Socket.
[    0.948715] systemd[1]: Listening on udev Control Socket.
[    0.948739] systemd[1]: Listening on udev Kernel Socket.
[    0.948744] systemd[1]: Reached target Socket Units.
[    0.948758] systemd[1]: Create List of Static Device Nodes was skipped because of an unmet condition check (ConditionFileNotEmpty=/lib/modules/6.9.2-arch1-1.5/modules.devname).
[    0.949222] systemd[1]: Starting Check battery level during early boot...
[    0.950071] systemd[1]: Starting Journal Service...
[    0.950435] systemd[1]: Starting Load Kernel Modules...
[    0.950456] systemd[1]: TPM2 PCR Barrier (initrd) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    0.950836] systemd[1]: Starting Create Static Device Nodes in /dev...
[    0.951184] systemd[1]: Starting Coldplug All udev Devices...
[    0.955417] systemd[1]: Finished Load Kernel Modules.
[    0.956884] systemd[1]: Finished Create Static Device Nodes in /dev.
[    0.957686] systemd[1]: Starting Rule-based Manager for Device Events and Files...
[    0.958793] systemd-journald[159]: Collecting audit messages is disabled.
[    0.966792] systemd[1]: Finished Check battery level during early boot.
[    0.967324] systemd[1]: Started Displays emergency message in full screen..
[    0.967614] systemd[1]: Started Journal Service.
[    1.026871] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.026879] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    1.027977] xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000100200009810
[    1.028223] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.028226] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    1.028229] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[    1.028292] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.09
[    1.028295] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.028296] usb usb1: Product: xHCI Host Controller
[    1.028297] usb usb1: Manufacturer: Linux 6.9.2-arch1-1.5 xhci-hcd
[    1.028298] usb usb1: SerialNumber: 0000:00:14.0
[    1.028425] hub 1-0:1.0: USB hub found
[    1.028460] hub 1-0:1.0: 12 ports detected
[    1.029548] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.09
[    1.029550] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.029551] usb usb2: Product: xHCI Host Controller
[    1.029552] usb usb2: Manufacturer: Linux 6.9.2-arch1-1.5 xhci-hcd
[    1.029553] usb usb2: SerialNumber: 0000:00:14.0
[    1.029602] hub 2-0:1.0: USB hub found
[    1.029614] hub 2-0:1.0: 4 ports detected
[    1.030003] usb: port power management may be unreliable
[    1.036792] nvme 0000:01:00.0: platform quirk: setting simple suspend
[    1.036849] nvme nvme0: pci function 0000:01:00.0
[    1.059182] nvme nvme0: missing or invalid SUBNQN field.
[    1.104650] nvme nvme0: allocated 128 MiB host memory buffer.
[    1.105572] nvme nvme0: 8/0/0 default/read/poll queues
[    1.108706]  nvme0n1: p1 p2 p3 p4 p5 p6 p7 p8 p9
[    1.274020] PM: Image not found (code -22)
[    1.279840] usb 1-4: new full-speed USB device number 2 using xhci_hcd
[    1.326702] i915 0000:00:02.0: vgaarb: deactivate vga console
[    1.326765] i915 0000:00:02.0: [drm] Using Transparent Hugepages
[    1.327329] i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    1.329445] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/adlp_dmc.bin (v2.20)
[    1.334609] EXT4-fs (nvme0n1p8): mounted filesystem 9bf7c08f-ded6-4cf7-864f-9eb6b26c33ae r/w with ordered data mode. Quota mode: none.
[    1.344753] i915 0000:00:02.0: [drm] GT0: GuC firmware i915/adlp_guc_70.bin version 70.20.0
[    1.344758] i915 0000:00:02.0: [drm] GT0: HuC firmware i915/tgl_huc.bin version 7.9.3
[    1.360660] i915 0000:00:02.0: [drm] GT0: HuC: authenticated for all workloads
[    1.361356] i915 0000:00:02.0: [drm] GT0: GUC: submission enabled
[    1.361358] i915 0000:00:02.0: [drm] GT0: GUC: SLPC enabled
[    1.361712] i915 0000:00:02.0: [drm] GT0: GUC: RC enabled
[    1.362281] i915 0000:00:02.0: [drm] Protected Xe Path (PXP) protected content support initialized
[    1.425715] usb 1-4: New USB device found, idVendor=8087, idProduct=0a2a, bcdDevice= 0.01
[    1.425732] usb 1-4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.549849] usb 1-5: new high-speed USB device number 3 using xhci_hcd
[    1.715895] usb 1-5: New USB device found, idVendor=0c45, idProduct=6711, bcdDevice=40.24
[    1.715925] usb 1-5: New USB device strings: Mfr=2, Product=1, SerialNumber=0
[    1.715937] usb 1-5: Product: USB 2.0 Camera
[    1.715945] usb 1-5: Manufacturer: Sonix Technology Co., Ltd.
[    2.572682] [drm] Initialized i915 1.6.0 20230929 for 0000:00:02.0 on minor 1
[    2.578964] ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    2.580238] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input4
[    2.597131] fbcon: i915drmfb (fb0) is primary device
[    2.597145] fbcon: Deferring console take-over
[    2.597156] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[    2.852282] systemd-journald[159]: Received SIGTERM from PID 1 (systemd).
[    2.936207] systemd[1]: systemd 255.7-1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
[    2.936212] systemd[1]: Detected architecture x86-64.
[    2.936983] systemd[1]: Hostname set to <FIRE>.
[    3.366825] systemd[1]: bpf-lsm: LSM BPF program attached
[    3.502058] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[    3.502125] systemd[1]: Stopped Switch Root.
[    3.502488] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[    3.502666] systemd[1]: Created slice Slice /system/dirmngr.
[    3.502783] systemd[1]: Created slice Slice /system/getty.
[    3.502895] systemd[1]: Created slice Slice /system/gpg-agent.
[    3.503007] systemd[1]: Created slice Slice /system/gpg-agent-browser.
[    3.503127] systemd[1]: Created slice Slice /system/gpg-agent-extra.
[    3.503224] systemd[1]: Created slice Slice /system/gpg-agent-ssh.
[    3.503322] systemd[1]: Created slice Slice /system/keyboxd.
[    3.503420] systemd[1]: Created slice Slice /system/modprobe.
[    3.503516] systemd[1]: Created slice Slice /system/systemd-fsck.
[    3.503582] systemd[1]: Created slice User and Session Slice.
[    3.503605] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    3.503621] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    3.503690] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    3.503697] systemd[1]: Expecting device /dev/disk/by-uuid/d3fa04da-cb55-4ff4-a93b-92256084412c...
[    3.503701] systemd[1]: Reached target Local Encrypted Volumes.
[    3.503713] systemd[1]: Stopped target Switch Root.
[    3.503719] systemd[1]: Stopped target Initrd File Systems.
[    3.503723] systemd[1]: Stopped target Initrd Root File System.
[    3.503729] systemd[1]: Reached target Local Integrity Protected Volumes.
[    3.503740] systemd[1]: Reached target Remote File Systems.
[    3.503746] systemd[1]: Reached target Slice Units.
[    3.503761] systemd[1]: Reached target Local Verity Protected Volumes.
[    3.503791] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    3.505455] systemd[1]: Listening on Process Core Dump Socket.
[    3.505471] systemd[1]: TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    3.505581] systemd[1]: Listening on udev Control Socket.
[    3.505608] systemd[1]: Listening on udev Kernel Socket.
[    3.543585] systemd[1]: Mounting Huge Pages File System...
[    3.545205] systemd[1]: Mounting POSIX Message Queue File System...
[    3.546304] systemd[1]: Mounting Kernel Debug File System...
[    3.547491] systemd[1]: Mounting Kernel Trace File System...
[    3.548585] systemd[1]: Starting Create List of Static Device Nodes...
[    3.549256] systemd[1]: Starting Load Kernel Module configfs...
[    3.549847] systemd[1]: Starting Load Kernel Module dm_mod...
[    3.550458] systemd[1]: Starting Load Kernel Module drm...
[    3.551055] systemd[1]: Starting Load Kernel Module fuse...
[    3.551455] systemd[1]: Starting Load Kernel Module loop...
[    3.552374] systemd[1]: Starting Journal Service...
[    3.553182] systemd[1]: Starting Load Kernel Modules...
[    3.553198] systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    3.553821] systemd[1]: Starting Remount Root and Kernel File Systems...
[    3.553865] systemd[1]: TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    3.554445] systemd[1]: Starting Coldplug All udev Devices...
[    3.555259] systemd[1]: Mounted Huge Pages File System.
[    3.555334] systemd[1]: Mounted POSIX Message Queue File System.
[    3.555396] systemd[1]: Mounted Kernel Debug File System.
[    3.555454] systemd[1]: Mounted Kernel Trace File System.
[    3.555586] systemd[1]: Finished Create List of Static Device Nodes.
[    3.555752] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[    3.555841] systemd[1]: Finished Load Kernel Module configfs.
[    3.556005] systemd[1]: modprobe@drm.service: Deactivated successfully.
[    3.556085] systemd[1]: Finished Load Kernel Module drm.
[    3.556236] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[    3.556315] systemd[1]: Finished Load Kernel Module fuse.
[    3.556997] systemd[1]: Mounting FUSE Control File System...
[    3.557235] loop: module loaded
[    3.557539] systemd[1]: Mounting Kernel Configuration File System...
[    3.558107] systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
[    3.558347] systemd[1]: modprobe@loop.service: Deactivated successfully.
[    3.558455] systemd[1]: Finished Load Kernel Module loop.
[    3.561138] systemd[1]: Mounted FUSE Control File System.
[    3.561313] systemd[1]: Mounted Kernel Configuration File System.
[    3.562630] device-mapper: uevent: version 1.0.3
[    3.562699] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
[    3.563505] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[    3.563696] systemd[1]: Finished Load Kernel Module dm_mod.
[    3.563834] systemd-journald[286]: Collecting audit messages is disabled.
[    3.563841] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
[    3.565832] i2c_dev: i2c /dev entries driver
[    3.567875] systemd[1]: Started Journal Service.
[    3.579892] EXT4-fs (nvme0n1p8): re-mounted 9bf7c08f-ded6-4cf7-864f-9eb6b26c33ae r/w. Quota mode: none.
[    3.587820] systemd-journald[286]: Received client request to flush runtime journal.
[    3.703576] systemd-journald[286]: /var/log/journal/bd024c881a1f4958a55e8145fab6de4c/system.journal: Journal file uses a different sequence number ID, rotating.
[    3.703598] systemd-journald[286]: Rotating system journal.
[    4.386978] Adding 4194300k swap on /swapfile.  Priority:-2 extents:192 across:59072512k SSDsc
[    4.429025] Consider using thermal netlink events interface
[    4.430972] input: Intel HID events as /devices/platform/INTC1070:00/input/input5
[    4.432088] intel-hid INTC1070:00: platform supports 5 button array
[    4.433976] input: Intel HID 5 button array as /devices/platform/INTC1070:00/input/input6
[    4.439206] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[    4.439209] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    4.441089] serio: i8042 KBD port at 0x60,0x64 irq 1
[    4.441235] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.LPCB.H_EC.CHRG.PPSS.FCHG], AE_NOT_FOUND (20230628/psargs-330)
[    4.441244] ACPI Error: Aborting method \_SB.PC00.LPCB.H_EC.CHRG.PPSS due to previous error (AE_NOT_FOUND) (20230628/psparse-529)
[    4.444127] intel_pmc_core INT33A1:00:  initialized
[    4.456124] resource: resource sanity check: requesting [mem 0x00000000fedc0000-0x00000000fedcffff], which spans more than pnp 00:02 [mem 0xfedc0000-0xfedc7fff]
[    4.456130] caller igen6_probe+0x15e/0x7c0 [igen6_edac] mapping multiple BARs
[    4.458241] EDAC MC0: Giving out device to module igen6_edac controller Intel_client_SoC MC#0: DEV 0000:00:00.0 (INTERRUPT)
[    4.458686] i801_smbus 0000:00:1f.4: enabling device (0000 -> 0003)
[    4.458876] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[    4.458920] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[    4.461071] EDAC MC1: Giving out device to module igen6_edac controller Intel_client_SoC MC#1: DEV 0000:00:00.0 (INTERRUPT)
[    4.461093] EDAC igen6 MC1: HANDLING IBECC MEMORY ERROR
[    4.461095] EDAC igen6 MC1: ADDR 0x7fffffffe0 
[    4.461096] EDAC igen6 MC0: HANDLING IBECC MEMORY ERROR
[    4.461097] EDAC igen6 MC0: ADDR 0x7fffffffe0 
[    4.461969] EDAC igen6: v2.5.1
[    4.464866] i2c i2c-10: Successfully instantiated SPD at 0x50
[    4.473864] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[    4.479697] intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
[    4.480053] idma64 idma64.0: Found Intel integrated DMA 64-bit
[    4.492867] mei_me 0000:00:16.0: hbm: dma setup response: failure = 3 REJECTED
[    4.551117] intel_rapl_msr: PL4 support detected.
[    4.551220] intel_rapl_common: Found RAPL domain package
[    4.551227] intel_rapl_common: Found RAPL domain core
[    4.551229] intel_rapl_common: Found RAPL domain uncore
[    4.551232] intel_rapl_common: Found RAPL domain psys
[    4.552031] ee1004 10-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
[    4.552284] EXT4-fs (nvme0n1p9): mounted filesystem d3fa04da-cb55-4ff4-a93b-92256084412c r/w with ordered data mode. Quota mode: none.
[    4.552479] mc: Linux media interface: v0.10
[    4.558644] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/261)
[    4.559720] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/33030)
[    4.560705] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/1157)
[    4.561705] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/2309)
[    4.562732] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/405)
[    4.563748] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/661)
[    4.564751] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/4213)
[    4.565789] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/9474)
[    4.566793] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/897)
[    4.567830] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/49154)
[    4.568832] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/33105)
[    4.569842] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/9731)
[    4.570853] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/38160)
[    4.571861] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/1941)
[    4.572862] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/38145)
[    4.573896] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/49154)
[    4.587651] Bluetooth: Core ver 2.22
[    4.587667] NET: Registered PF_BLUETOOTH protocol family
[    4.587668] Bluetooth: HCI device and connection manager initialized
[    4.587671] Bluetooth: HCI socket layer initialized
[    4.587673] Bluetooth: L2CAP socket layer initialized
[    4.587676] Bluetooth: SCO socket layer initialized
[    4.588295] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    4.588468] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    4.588589] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[    4.756705] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
[    4.760537] input: XXXX0000:01 0911:5288 Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-11/i2c-XXXX0000:01/0018:0911:5288.0001/input/input7
[    4.761150] input: XXXX0000:01 0911:5288 Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-11/i2c-XXXX0000:01/0018:0911:5288.0001/input/input8
[    4.761283] hid-generic 0018:0911:5288.0001: input,hidraw0: I2C HID v1.00 Mouse [XXXX0000:01 0911:5288] on i2c-XXXX0000:01
[    4.761225] mei_pxp 0000:00:16.0-fbf6fcf1-96cf-4e2e-a6a6-1bab8cbe36b1: bound 0000:00:02.0 (ops i915_pxp_tee_component_ops [i915])
[    4.763467] r8169 0000:03:00.0: enabling device (0000 -> 0003)
[    4.763608] Creating 1 MTD partitions on "0000:00:1f.5":
[    4.763612] 0x000000000000-0x000002000000 : "BIOS"
[    4.763686] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input9
[    4.767314] r8169 0000:03:00.0 eth0: RTL8168evl/8111evl, 00:00:00:00:00:03, XID 2c9, IRQ 136
[    4.767319] r8169 0000:03:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[    4.769524] Intel(R) Wireless WiFi driver for Linux
[    4.770780] r8169 0000:03:00.0 enp3s0: renamed from eth0
[    4.772922] videodev: Linux video capture interface: v2.00
[    4.773086] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[    4.773095] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[    4.773096] RAPL PMU: hw unit of domain package 2^-14 Joules
[    4.773097] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[    4.773098] RAPL PMU: hw unit of domain psys 2^-14 Joules
[    4.776052] proc_thermal_pci 0000:00:04.0: enabling device (0000 -> 0002)
[    4.776248] intel_rapl_common: Found RAPL domain package
[    4.776298] cryptd: max_cpu_qlen set to 1000
[    4.782195] iwlwifi 0000:02:00.0: enabling device (0000 -> 0002)
[    4.783954] iwlwifi 0000:02:00.0: Detected crf-id 0x0, cnv-id 0x0 wfpm id 0x0
[    4.784012] iwlwifi 0000:02:00.0: PCI dev 095a/5410, rev=0x210, rfid=0xd55555d5
[    4.785666] AVX2 version of gcm_enc/dec engaged.
[    4.785706] AES CTR mode by8 optimization enabled
[    4.790755] iwlwifi 0000:02:00.0: Found debug destination: EXTERNAL_DRAM
[    4.790758] iwlwifi 0000:02:00.0: Found debug configuration: 0
[    4.790902] iwlwifi 0000:02:00.0: loaded firmware version 29.4063824552.0 7265D-29.ucode op_mode iwlmvm
[    4.792801] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
[    4.792898] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[    4.793074] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[    4.796184] pps_core: LinuxPPS API ver. 1 registered
[    4.796186] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    4.798892] usb 1-5: Found UVC 1.00 device USB 2.0 Camera (0c45:6711)
[    4.800514] PTP clock support registered
[    4.827283] usbcore: registered new interface driver uvcvideo
[    4.839865] input: XXXX0000:01 0911:5288 Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-11/i2c-XXXX0000:01/0018:0911:5288.0001/input/input10
[    4.839939] input: XXXX0000:01 0911:5288 Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-11/i2c-XXXX0000:01/0018:0911:5288.0001/input/input11
[    4.840060] hid-multitouch 0018:0911:5288.0001: input,hidraw0: I2C HID v1.00 Mouse [XXXX0000:01 0911:5288] on i2c-XXXX0000:01
[    4.887415] mousedev: PS/2 mouse device common for all mice
[    4.890030] usbcore: registered new interface driver btusb
[    4.893692] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC269VB: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    4.893697] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    4.893699] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[    4.893701] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[    4.893702] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[    4.893703] snd_hda_codec_realtek hdaudioC0D0:      Mic=0x18
[    4.893704] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x19
[    4.893705] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
[    4.905174] Bluetooth: hci0: Legacy ROM 2.5 revision 1.0 build 3 week 17 2014
[    4.905178] Bluetooth: hci0: Intel device is already patched. patch num: 39
[    4.909354] iwlwifi 0000:02:00.0: Detected Intel(R) Dual Band Wireless AC 7265, REV=0x210
[    4.909398] thermal thermal_zone4: failed to read out thermal zone (-61)
[    4.918625] intel_tcc_cooling: TCC Offset locked
[    4.923210] iwlwifi 0000:02:00.0: Applying debug destination EXTERNAL_DRAM
[    4.923672] iwlwifi 0000:02:00.0: Allocated 0x00400000 bytes for firmware monitor.
[    4.928550] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input12
[    4.928581] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input13
[    4.928606] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input14
[    4.928639] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input15
[    4.928662] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input16
[    4.928685] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
[    4.929806] iwlwifi 0000:02:00.0: base HW address: 18:5e:0f:5e:3b:66, OTP minor version: 0x0
[    4.991243] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[    4.992788] iwlwifi 0000:02:00.0 wlp2s0: renamed from wlan0
[    5.054063] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    5.054065] Bluetooth: BNEP filters: protocol multicast
[    5.054068] Bluetooth: BNEP socket layer initialized
[    5.055183] Bluetooth: MGMT ver 1.22
[    5.055254] Bluetooth: ISO socket layer initialized
[    5.060623] NET: Registered PF_ALG protocol family
[    5.167026] RTL8211E Gigabit Ethernet r8169-0-300:00: attached PHY driver (mii_bus:phy_addr=r8169-0-300:00, irq=MAC)
[    5.392203] r8169 0000:03:00.0 enp3s0: Link is Down
[    5.411876] iwlwifi 0000:02:00.0: Applying debug destination EXTERNAL_DRAM
[    5.492949] iwlwifi 0000:02:00.0: Applying debug destination EXTERNAL_DRAM
[    5.495521] iwlwifi 0000:02:00.0: FW already configured (0) - re-configuring
[    5.511063] iwlwifi 0000:02:00.0: Registered PHC clock: iwlwifi-PTP, with index: 0
[    5.585991] iwlwifi 0000:02:00.0: Applying debug destination EXTERNAL_DRAM
[    5.670127] iwlwifi 0000:02:00.0: Applying debug destination EXTERNAL_DRAM
[    5.673758] iwlwifi 0000:02:00.0: FW already configured (0) - re-configuring
[    5.971943] fbcon: Taking over console
[    5.985774] Console: switching to colour frame buffer device 240x67
[    8.394847] r8169 0000:03:00.0 enp3s0: Link is Up - 1Gbps/Full - flow control rx/tx
[   10.045280] input: Baseus F02 Mouse  Keyboard as /devices/virtual/misc/uhid/0005:045E:0040.0002/input/input18
[   10.045835] input: Baseus F02 Mouse  Mouse as /devices/virtual/misc/uhid/0005:045E:0040.0002/input/input19
[   10.046036] hid-generic 0005:045E:0040.0002: input,hidraw1: BLUETOOTH HID v3.00 Keyboard [Baseus F02 Mouse ] on 18:5e:0f:5e:3b:6a
[   15.474181] systemd-journald[286]: /var/log/journal/bd024c881a1f4958a55e8145fab6de4c/user-1000.journal: Journal file uses a different sequence number ID, rotating.
[   20.092180] ntfs3: Max link count 4000
[   20.092184] ntfs3: Enabled Linux POSIX ACLs support
[   20.092185] ntfs3: Read-only LZX/Xpress compression included
[   20.168589] Bluetooth: RFCOMM TTY layer initialized
[   20.168597] Bluetooth: RFCOMM socket layer initialized
[   20.168600] Bluetooth: RFCOMM ver 1.11
[   20.371050] warning: `crow' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: Kernel 6.9 regression: X86: Bogus messages from topology detection
  2024-05-31  6:52                 ` Peter Schneider
@ 2024-05-31  8:33                   ` Thomas Gleixner
  2024-05-31  8:42                     ` Thomas Gleixner
  0 siblings, 1 reply; 29+ messages in thread
From: Thomas Gleixner @ 2024-05-31  8:33 UTC (permalink / raw)
  To: Peter Schneider; +Cc: LKML, x86, stable, regressions

Peter!

On Fri, May 31 2024 at 08:52, Peter Schneider wrote:
> Am 30.05.2024 um 18:24 schrieb Thomas Gleixner:
> With that patch applied, I now get a build error:
>
> arch/x86/xen/enlighten_pv.c: In Funktion »xen_start_kernel«:
> arch/x86/xen/enlighten_pv.c:1388:9: Fehler: Implizite Deklaration der Funktion 
> »get_cpu_cap«; meinten Sie »set_cpu_cap«? [-Werror=implicit-function-declaration]
>   1388 |         get_cpu_cap(&boot_cpu_data);

Bah. Updated patch below.

Thanks,

        tglx
---
Subject: x86/topology/intel: Unlock CPUID before evaluating anything
From: Thomas Gleixner <tglx@linutronix.de>
Date: Thu, 30 May 2024 17:29:18 +0200

Intel CPUs have a MSR bit to limit CPUID enumeration to leaf two. If this
bit is set by the BIOS then CPUID evaluation including topology enumeration
does not work correctly as the evaluation code does not try to analyze any
leaf greater than two.

This went unnoticed before because the original topology code just repeated
evaluation several times and managed to overwrite the initial limited
information with the correct one later. The new evaluation code does it
once and therefore ends up with the limited and wrong information.

Cure this by unlocking CPUID right before evaluating anything which depends
on the maximum CPUID leaf being greater than two instead of rereading stuff
after unlock.

Fixes: 22d63660c35e ("x86/cpu: Use common topology code for Intel")
Reported-by: Peter Schneider <pschneider1968@googlemail.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
 arch/x86/kernel/cpu/common.c |    3 ++-
 arch/x86/kernel/cpu/intel.c  |   25 ++++++++++++++++---------
 2 files changed, 18 insertions(+), 10 deletions(-)

--- a/arch/x86/kernel/cpu/common.c
+++ b/arch/x86/kernel/cpu/common.c
@@ -1585,6 +1585,7 @@ static void __init early_identify_cpu(st
 	if (have_cpuid_p()) {
 		cpu_detect(c);
 		get_cpu_vendor(c);
+		intel_unlock_cpuid_leafs(c);
 		get_cpu_cap(c);
 		setup_force_cpu_cap(X86_FEATURE_CPUID);
 		get_cpu_address_sizes(c);
@@ -1744,7 +1745,7 @@ static void generic_identify(struct cpui
 	cpu_detect(c);
 
 	get_cpu_vendor(c);
-
+	intel_unlock_cpuid_leafs(c);
 	get_cpu_cap(c);
 
 	get_cpu_address_sizes(c);
--- a/arch/x86/kernel/cpu/intel.c
+++ b/arch/x86/kernel/cpu/intel.c
@@ -269,19 +269,26 @@ static void detect_tme_early(struct cpui
 	c->x86_phys_bits -= keyid_bits;
 }
 
+void intel_unlock_cpuid_leafs(struct cpuinfo_x86 *c)
+{
+	if (boot_cpu_data.x86_vendor != X86_VENDOR_INTEL)
+		return;
+
+	if (c->x86 < 6 || (c->x86 == 6 && c->x86_model < 0xd))
+		return;
+
+	/*
+	 * The BIOS can have limited CPUID to leaf 2, which breaks feature
+	 * enumeration. Unlock it and update the maximum leaf info.
+	 */
+	if (msr_clear_bit(MSR_IA32_MISC_ENABLE, MSR_IA32_MISC_ENABLE_LIMIT_CPUID_BIT) > 0)
+		c->cpuid_level = cpuid_eax(0);
+}
+
 static void early_init_intel(struct cpuinfo_x86 *c)
 {
 	u64 misc_enable;
 
-	/* Unmask CPUID levels if masked: */
-	if (c->x86 > 6 || (c->x86 == 6 && c->x86_model >= 0xd)) {
-		if (msr_clear_bit(MSR_IA32_MISC_ENABLE,
-				  MSR_IA32_MISC_ENABLE_LIMIT_CPUID_BIT) > 0) {
-			c->cpuid_level = cpuid_eax(0);
-			get_cpu_cap(c);
-		}
-	}
-
 	if ((c->x86 == 0xf && c->x86_model >= 0x03) ||
 		(c->x86 == 0x6 && c->x86_model >= 0x0e))
 		set_cpu_cap(c, X86_FEATURE_CONSTANT_TSC);

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: Kernel 6.9 regression: X86: Bogus messages from topology detection
  2024-05-31  8:33                   ` Thomas Gleixner
@ 2024-05-31  8:42                     ` Thomas Gleixner
  2024-05-31  9:41                       ` Peter Schneider
  2024-06-01  7:06                       ` Linux regression tracking (Thorsten Leemhuis)
  0 siblings, 2 replies; 29+ messages in thread
From: Thomas Gleixner @ 2024-05-31  8:42 UTC (permalink / raw)
  To: Peter Schneider; +Cc: LKML, x86, stable, regressions

On Fri, May 31 2024 at 10:33, Thomas Gleixner wrote:

Clearly coffee did not set in yet.

Thanks,

         tglx
---
Subject: x86/topology/intel: Unlock CPUID before evaluating anything
From: Thomas Gleixner <tglx@linutronix.de>
Date: Thu, 30 May 2024 17:29:18 +0200

Intel CPUs have a MSR bit to limit CPUID enumeration to leaf two. If this
bit is set by the BIOS then CPUID evaluation including topology enumeration
does not work correctly as the evaluation code does not try to analyze any
leaf greater than two.

This went unnoticed before because the original topology code just repeated
evaluation several times and managed to overwrite the initial limited
information with the correct one later. The new evaluation code does it
once and therefore ends up with the limited and wrong information.

Cure this by unlocking CPUID right before evaluating anything which depends
on the maximum CPUID leaf being greater than two instead of rereading stuff
after unlock.

Fixes: 22d63660c35e ("x86/cpu: Use common topology code for Intel")
Reported-by: Peter Schneider <pschneider1968@googlemail.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
 arch/x86/kernel/cpu/common.c |    3 ++-
 arch/x86/kernel/cpu/cpu.h    |    2 ++
 arch/x86/kernel/cpu/intel.c  |   25 ++++++++++++++++---------
 3 files changed, 20 insertions(+), 10 deletions(-)

--- a/arch/x86/kernel/cpu/common.c
+++ b/arch/x86/kernel/cpu/common.c
@@ -1585,6 +1585,7 @@ static void __init early_identify_cpu(st
 	if (have_cpuid_p()) {
 		cpu_detect(c);
 		get_cpu_vendor(c);
+		intel_unlock_cpuid_leafs(c);
 		get_cpu_cap(c);
 		setup_force_cpu_cap(X86_FEATURE_CPUID);
 		get_cpu_address_sizes(c);
@@ -1744,7 +1745,7 @@ static void generic_identify(struct cpui
 	cpu_detect(c);
 
 	get_cpu_vendor(c);
-
+	intel_unlock_cpuid_leafs(c);
 	get_cpu_cap(c);
 
 	get_cpu_address_sizes(c);
--- a/arch/x86/kernel/cpu/cpu.h
+++ b/arch/x86/kernel/cpu/cpu.h
@@ -61,9 +61,11 @@ extern __ro_after_init enum tsx_ctrl_sta
 
 extern void __init tsx_init(void);
 void tsx_ap_init(void);
+void intel_unlock_cpuid_leafs(struct cpuinfo_x86 *c);
 #else
 static inline void tsx_init(void) { }
 static inline void tsx_ap_init(void) { }
+static inline void intel_unlock_cpuid_leafs(struct cpuinfo_x86 *c) { }
 #endif /* CONFIG_CPU_SUP_INTEL */
 
 extern void init_spectral_chicken(struct cpuinfo_x86 *c);
--- a/arch/x86/kernel/cpu/intel.c
+++ b/arch/x86/kernel/cpu/intel.c
@@ -269,19 +269,26 @@ static void detect_tme_early(struct cpui
 	c->x86_phys_bits -= keyid_bits;
 }
 
+void intel_unlock_cpuid_leafs(struct cpuinfo_x86 *c)
+{
+	if (boot_cpu_data.x86_vendor != X86_VENDOR_INTEL)
+		return;
+
+	if (c->x86 < 6 || (c->x86 == 6 && c->x86_model < 0xd))
+		return;
+
+	/*
+	 * The BIOS can have limited CPUID to leaf 2, which breaks feature
+	 * enumeration. Unlock it and update the maximum leaf info.
+	 */
+	if (msr_clear_bit(MSR_IA32_MISC_ENABLE, MSR_IA32_MISC_ENABLE_LIMIT_CPUID_BIT) > 0)
+		c->cpuid_level = cpuid_eax(0);
+}
+
 static void early_init_intel(struct cpuinfo_x86 *c)
 {
 	u64 misc_enable;
 
-	/* Unmask CPUID levels if masked: */
-	if (c->x86 > 6 || (c->x86 == 6 && c->x86_model >= 0xd)) {
-		if (msr_clear_bit(MSR_IA32_MISC_ENABLE,
-				  MSR_IA32_MISC_ENABLE_LIMIT_CPUID_BIT) > 0) {
-			c->cpuid_level = cpuid_eax(0);
-			get_cpu_cap(c);
-		}
-	}
-
 	if ((c->x86 == 0xf && c->x86_model >= 0x03) ||
 		(c->x86 == 0x6 && c->x86_model >= 0x0e))
 		set_cpu_cap(c, X86_FEATURE_CONSTANT_TSC);

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: Kernel 6.9 regression: X86: Bogus messages from topology detection
  2024-05-31  8:16                   ` Christian Heusel
@ 2024-05-31  8:48                     ` Thomas Gleixner
  2024-05-31  9:11                       ` Thomas Gleixner
  2024-05-31 11:06                     ` Thomas Gleixner
  1 sibling, 1 reply; 29+ messages in thread
From: Thomas Gleixner @ 2024-05-31  8:48 UTC (permalink / raw)
  To: Christian Heusel; +Cc: Peter Schneider, LKML, x86, stable, regressions

Christian!

On Fri, May 31 2024 at 10:16, Christian Heusel wrote:
>> One of the reporters in the Arch Bugtracker with an Intel Core i7-7700k
>> has tested a modified version of this fix[0] with the static change
>> reversed on top of the 6.9.2 stable kernel and reports that the patch
>> does not fix the issue for them. I have attached their output for the
>> patched (dmesg6.9.2-1.5.log) and nonpatched (dmesg6.9.2-1.log) kernel.
>> 
>> Should we also get them to test the mainline version or do you need any
>> other debug output?

Can I get:

    - dmesg from 6.8.y kernel
    - output of cpuid -r
    - content of /sys/kernel/debug/x86/topo/cpus/* (on 6.9.y)

please?

Thanks,

        tglx

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: Kernel 6.9 regression: X86: Bogus messages from topology detection
  2024-05-31  8:48                     ` Thomas Gleixner
@ 2024-05-31  9:11                       ` Thomas Gleixner
  2024-05-31 13:08                         ` Christian Heusel
  0 siblings, 1 reply; 29+ messages in thread
From: Thomas Gleixner @ 2024-05-31  9:11 UTC (permalink / raw)
  To: Christian Heusel; +Cc: Peter Schneider, LKML, x86, stable, regressions

On Fri, May 31 2024 at 10:48, Thomas Gleixner wrote:

> Christian!
>
> On Fri, May 31 2024 at 10:16, Christian Heusel wrote:
>>> One of the reporters in the Arch Bugtracker with an Intel Core i7-7700k
>>> has tested a modified version of this fix[0] with the static change
>>> reversed on top of the 6.9.2 stable kernel and reports that the patch
>>> does not fix the issue for them. I have attached their output for the
>>> patched (dmesg6.9.2-1.5.log) and nonpatched (dmesg6.9.2-1.log) kernel.
>>> 
>>> Should we also get them to test the mainline version or do you need any
>>> other debug output?
>
> Can I get:
>
>     - dmesg from 6.8.y kernel
>     - output of cpuid -r
>     - content of /sys/kernel/debug/x86/topo/cpus/* (on 6.9.y)
>
> please?

It seems there are two different issues here. The dmesg you provided is
from a i7-1255U, which is a hybrid CPU. The i7-7700k has 4 cores (8
threads) and there is not necessarily the same root cause.

Thanks,

        tglx

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: Kernel 6.9 regression: X86: Bogus messages from topology detection
  2024-05-31  8:42                     ` Thomas Gleixner
@ 2024-05-31  9:41                       ` Peter Schneider
  2024-05-31 10:07                         ` Thomas Gleixner
  2024-06-01  7:06                       ` Linux regression tracking (Thorsten Leemhuis)
  1 sibling, 1 reply; 29+ messages in thread
From: Peter Schneider @ 2024-05-31  9:41 UTC (permalink / raw)
  To: Thomas Gleixner; +Cc: LKML, x86, stable, regressions, christian


[-- Attachment #1.1.1: Type: text/plain, Size: 1273 bytes --]

Hey Thomas,

Am 31.05.2024 um 10:42 schrieb Thomas Gleixner:
 > Bah. Updated patch below.
 > Clearly coffee did not set in yet.
[...]

;-)

There seems to be an absolute lower limit of caffeine per ml blood serum, below which you 
just can't get things done right... I know that too!

Anyway, this last version of your patch fixes things for me, please see attached dmesg 
output. Thanks very much for investigating and fixing this issue!

Tested-by: Peter Schneider <pschneider1968@googlemail.com>

If you like, I can retest with your first patch (with additional debug info output) 
additionally applied on top of that and send the output, if that would be useful for you. 
Just let me know.

Beste Grüße,
Peter Schneider

-- 
Climb the mountain not to plant your flag, but to embrace the challenge,
enjoy the air and behold the view. Climb it so you can see the world,
not so the world can see you.                    -- David McCullough Jr.

OpenPGP:  0xA3828BD796CCE11A8CADE8866E3A92C92C3FF244
Download: https://www.peters-netzplatz.de/download/pschneider1968_pub.asc
https://keys.mailvelope.com/pks/lookup?op=get&search=pschneider1968@googlemail.com
https://keys.mailvelope.com/pks/lookup?op=get&search=pschneider1968@gmail.com



[-- Attachment #1.1.2: dmesg_v6.9.3-dirty_Good_w_tglx_topo_patch.txt --]
[-- Type: text/plain, Size: 121102 bytes --]

[    0.000000] Linux version 6.9.3-dirty (root@linus.localdomain) (gcc (Debian 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 SMP PREEMPT_DYNAMIC Fri May 31 11:09:27 CEST 2024
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-6.9.3-dirty root=UUID=3842ebdd-e37f-4e4e-afd4-d7eb79b41984 ro quiet rootdelay=50 intel_iommu=on iommu=pt vfio-pci.ids=10de:1201,10de:0e0c
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000096fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000097000-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007cb5ffff] usable
[    0.000000] BIOS-e820: [mem 0x000000007cb60000-0x000000007cb8cfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007cb8d000-0x000000007cca4fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000007cca5000-0x000000007d8defff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007d8df000-0x000000007eb06fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007eb07000-0x000000007effffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000080000000-0x000000008fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed3ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000407fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: ASUSTeK COMPUTER INC. Z9PE-D16 Series/Z9PE-D16 Series, BIOS 5601 06/11/2015
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2700.025 MHz processor
[    0.001121] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.001125] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.001133] last_pfn = 0x4080000 max_arch_pfn = 0x400000000
[    0.001144] total RAM covered: 262144M
[    0.001344] Found optimal setting for mtrr clean up
[    0.001347]  gran_size: 64K 	chunk_size: 64K 	num_reg: 8  	lose cover RAM: 0G
[    0.001353] MTRR map: 7 entries (5 fixed + 2 variable; max 25), built from 10 variable MTRRs
[    0.001356] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.002358] e820: update [mem 0x80000000-0xffffffff] usable ==> reserved
[    0.002363] last_pfn = 0x7cb60 max_arch_pfn = 0x400000000
[    0.012886] found SMP MP-table at [mem 0x000fdd40-0x000fdd4f]
[    0.012904] Using GB pages for direct mapping
[    0.013099] RAMDISK: [mem 0x1d6c8000-0x37feefff]
[    0.013103] ACPI: Early table checksum verification disabled
[    0.013109] ACPI: RSDP 0x00000000000F0490 000024 (v02 ALASKA)
[    0.013114] ACPI: XSDT 0x000000007CBC5090 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.013120] ACPI: FACP 0x000000007CBD27D8 00010C (v05 ALASKA A M I    01072009 AMI  00010013)
[    0.013127] ACPI: DSDT 0x000000007CBC51C8 00D609 (v02 ALASKA A M I    00000000 INTL 20051117)
[    0.013132] ACPI: FACS 0x000000007D8D6F80 000040
[    0.013136] ACPI: APIC 0x000000007CBD28E8 000304 (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.013140] ACPI: FPDT 0x000000007CBD2BF0 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.013144] ACPI: MCFG 0x000000007CBD2C38 00003C (v01 ALASKA OEMMCFG. 01072009 MSFT 00000097)
[    0.013149] ACPI: SRAT 0x000000007CBD2C78 0005B0 (v01 A M I  AMI SRAT 00000001 AMI. 00000000)
[    0.013153] ACPI: SLIT 0x000000007CBD3228 000030 (v01 A M I  AMI SLIT 00000000 AMI. 00000000)
[    0.013157] ACPI: HPET 0x000000007CBD3258 000038 (v01 ALASKA A M I    01072009 AMI. 00000005)
[    0.013161] ACPI: DMAR 0x000000007CCA44D0 000168 (v01 A M I  OEMDMAR  00000001 INTL 00000001)
[    0.013165] ACPI: PRAD 0x000000007CBD32E8 0000BE (v02 PRADID PRADTID  00000001 MSFT 03000001)
[    0.013169] ACPI: SPMI 0x000000007CBD33A8 000040 (v05 A M I  OEMSPMI  00000000 AMI. 00000000)
[    0.013172] ACPI: SSDT 0x000000007CBD33E8 0D0CB0 (v02 INTEL  CpuPm    00004000 INTL 20051117)
[    0.013176] ACPI: EINJ 0x000000007CCA4098 000130 (v01 AMI    AMI EINJ 00000000      00000000)
[    0.013180] ACPI: ERST 0x000000007CCA41C8 000230 (v01 AMIER  AMI ERST 00000000      00000000)
[    0.013184] ACPI: HEST 0x000000007CCA43F8 0000A8 (v01 AMI    AMI HEST 00000000      00000000)
[    0.013188] ACPI: BERT 0x000000007CCA44A0 000030 (v01 AMI    AMI BERT 00000000      00000000)
[    0.013191] ACPI: Reserving FACP table memory at [mem 0x7cbd27d8-0x7cbd28e3]
[    0.013193] ACPI: Reserving DSDT table memory at [mem 0x7cbc51c8-0x7cbd27d0]
[    0.013194] ACPI: Reserving FACS table memory at [mem 0x7d8d6f80-0x7d8d6fbf]
[    0.013195] ACPI: Reserving APIC table memory at [mem 0x7cbd28e8-0x7cbd2beb]
[    0.013196] ACPI: Reserving FPDT table memory at [mem 0x7cbd2bf0-0x7cbd2c33]
[    0.013197] ACPI: Reserving MCFG table memory at [mem 0x7cbd2c38-0x7cbd2c73]
[    0.013199] ACPI: Reserving SRAT table memory at [mem 0x7cbd2c78-0x7cbd3227]
[    0.013200] ACPI: Reserving SLIT table memory at [mem 0x7cbd3228-0x7cbd3257]
[    0.013201] ACPI: Reserving HPET table memory at [mem 0x7cbd3258-0x7cbd328f]
[    0.013202] ACPI: Reserving DMAR table memory at [mem 0x7cca44d0-0x7cca4637]
[    0.013203] ACPI: Reserving PRAD table memory at [mem 0x7cbd32e8-0x7cbd33a5]
[    0.013204] ACPI: Reserving SPMI table memory at [mem 0x7cbd33a8-0x7cbd33e7]
[    0.013205] ACPI: Reserving SSDT table memory at [mem 0x7cbd33e8-0x7cca4097]
[    0.013206] ACPI: Reserving EINJ table memory at [mem 0x7cca4098-0x7cca41c7]
[    0.013207] ACPI: Reserving ERST table memory at [mem 0x7cca41c8-0x7cca43f7]
[    0.013208] ACPI: Reserving HEST table memory at [mem 0x7cca43f8-0x7cca449f]
[    0.013209] ACPI: Reserving BERT table memory at [mem 0x7cca44a0-0x7cca44cf]
[    0.013252] SRAT: PXM 0 -> APIC 0x00 -> Node 0
[    0.013255] SRAT: PXM 0 -> APIC 0x01 -> Node 0
[    0.013256] SRAT: PXM 0 -> APIC 0x02 -> Node 0
[    0.013256] SRAT: PXM 0 -> APIC 0x03 -> Node 0
[    0.013257] SRAT: PXM 0 -> APIC 0x04 -> Node 0
[    0.013258] SRAT: PXM 0 -> APIC 0x05 -> Node 0
[    0.013259] SRAT: PXM 0 -> APIC 0x06 -> Node 0
[    0.013260] SRAT: PXM 0 -> APIC 0x07 -> Node 0
[    0.013261] SRAT: PXM 0 -> APIC 0x08 -> Node 0
[    0.013262] SRAT: PXM 0 -> APIC 0x09 -> Node 0
[    0.013263] SRAT: PXM 0 -> APIC 0x0a -> Node 0
[    0.013264] SRAT: PXM 0 -> APIC 0x0b -> Node 0
[    0.013265] SRAT: PXM 0 -> APIC 0x10 -> Node 0
[    0.013266] SRAT: PXM 0 -> APIC 0x11 -> Node 0
[    0.013267] SRAT: PXM 0 -> APIC 0x12 -> Node 0
[    0.013268] SRAT: PXM 0 -> APIC 0x13 -> Node 0
[    0.013269] SRAT: PXM 0 -> APIC 0x14 -> Node 0
[    0.013270] SRAT: PXM 0 -> APIC 0x15 -> Node 0
[    0.013271] SRAT: PXM 0 -> APIC 0x16 -> Node 0
[    0.013272] SRAT: PXM 0 -> APIC 0x17 -> Node 0
[    0.013273] SRAT: PXM 0 -> APIC 0x18 -> Node 0
[    0.013274] SRAT: PXM 0 -> APIC 0x19 -> Node 0
[    0.013276] SRAT: PXM 0 -> APIC 0x1a -> Node 0
[    0.013277] SRAT: PXM 0 -> APIC 0x1b -> Node 0
[    0.013278] SRAT: PXM 1 -> APIC 0x20 -> Node 1
[    0.013279] SRAT: PXM 1 -> APIC 0x21 -> Node 1
[    0.013280] SRAT: PXM 1 -> APIC 0x22 -> Node 1
[    0.013281] SRAT: PXM 1 -> APIC 0x23 -> Node 1
[    0.013282] SRAT: PXM 1 -> APIC 0x24 -> Node 1
[    0.013283] SRAT: PXM 1 -> APIC 0x25 -> Node 1
[    0.013284] SRAT: PXM 1 -> APIC 0x26 -> Node 1
[    0.013285] SRAT: PXM 1 -> APIC 0x27 -> Node 1
[    0.013286] SRAT: PXM 1 -> APIC 0x28 -> Node 1
[    0.013287] SRAT: PXM 1 -> APIC 0x29 -> Node 1
[    0.013288] SRAT: PXM 1 -> APIC 0x2a -> Node 1
[    0.013289] SRAT: PXM 1 -> APIC 0x2b -> Node 1
[    0.013290] SRAT: PXM 1 -> APIC 0x30 -> Node 1
[    0.013291] SRAT: PXM 1 -> APIC 0x31 -> Node 1
[    0.013292] SRAT: PXM 1 -> APIC 0x32 -> Node 1
[    0.013293] SRAT: PXM 1 -> APIC 0x33 -> Node 1
[    0.013294] SRAT: PXM 1 -> APIC 0x34 -> Node 1
[    0.013295] SRAT: PXM 1 -> APIC 0x35 -> Node 1
[    0.013296] SRAT: PXM 1 -> APIC 0x36 -> Node 1
[    0.013297] SRAT: PXM 1 -> APIC 0x37 -> Node 1
[    0.013298] SRAT: PXM 1 -> APIC 0x38 -> Node 1
[    0.013298] SRAT: PXM 1 -> APIC 0x39 -> Node 1
[    0.013299] SRAT: PXM 1 -> APIC 0x3a -> Node 1
[    0.013300] SRAT: PXM 1 -> APIC 0x3b -> Node 1
[    0.013303] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x7fffffff]
[    0.013306] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x207fffffff]
[    0.013307] ACPI: SRAT: Node 1 PXM 1 [mem 0x2080000000-0x407fffffff]
[    0.013314] NUMA: Initialized distance table, cnt=2
[    0.013319] NUMA: Node 0 [mem 0x00000000-0x7fffffff] + [mem 0x100000000-0x207fffffff] -> [mem 0x00000000-0x207fffffff]
[    0.013330] NODE_DATA(0) allocated [mem 0x207ffd5000-0x207fffffff]
[    0.013355] NODE_DATA(1) allocated [mem 0x407ffd4000-0x407fffefff]
[    0.013876] Zone ranges:
[    0.013878]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.013880]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.013882]   Normal   [mem 0x0000000100000000-0x000000407fffffff]
[    0.013884]   Device   empty
[    0.013885] Movable zone start for each node
[    0.013889] Early memory node ranges
[    0.013889]   node   0: [mem 0x0000000000001000-0x0000000000096fff]
[    0.013892]   node   0: [mem 0x0000000000100000-0x000000007cb5ffff]
[    0.013893]   node   0: [mem 0x0000000100000000-0x000000207fffffff]
[    0.013909]   node   1: [mem 0x0000002080000000-0x000000407fffffff]
[    0.013928] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fffffff]
[    0.013934] Initmem setup node 1 [mem 0x0000002080000000-0x000000407fffffff]
[    0.013939] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.013978] On node 0, zone DMA: 105 pages in unavailable ranges
[    0.278151] On node 0, zone Normal: 13472 pages in unavailable ranges
[    0.691562] ACPI: PM-Timer IO Port: 0x408
[    0.691604] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.691608] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.691609] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.691611] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.691613] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.691614] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.691615] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.691617] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.691618] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.691619] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.691621] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.691622] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    0.691623] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
[    0.691624] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
[    0.691625] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
[    0.691626] ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
[    0.691627] ACPI: LAPIC_NMI (acpi_id[0x20] high edge lint[0x1])
[    0.691628] ACPI: LAPIC_NMI (acpi_id[0x22] high edge lint[0x1])
[    0.691629] ACPI: LAPIC_NMI (acpi_id[0x24] high edge lint[0x1])
[    0.691630] ACPI: LAPIC_NMI (acpi_id[0x26] high edge lint[0x1])
[    0.691631] ACPI: LAPIC_NMI (acpi_id[0x28] high edge lint[0x1])
[    0.691632] ACPI: LAPIC_NMI (acpi_id[0x2a] high edge lint[0x1])
[    0.691633] ACPI: LAPIC_NMI (acpi_id[0x2c] high edge lint[0x1])
[    0.691635] ACPI: LAPIC_NMI (acpi_id[0x2e] high edge lint[0x1])
[    0.691636] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.691637] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.691638] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.691639] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.691640] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.691641] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.691642] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.691643] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.691644] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.691645] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.691646] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    0.691647] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    0.691648] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
[    0.691649] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
[    0.691650] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
[    0.691651] ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
[    0.691652] ACPI: LAPIC_NMI (acpi_id[0x21] high edge lint[0x1])
[    0.691654] ACPI: LAPIC_NMI (acpi_id[0x23] high edge lint[0x1])
[    0.691655] ACPI: LAPIC_NMI (acpi_id[0x25] high edge lint[0x1])
[    0.691657] ACPI: LAPIC_NMI (acpi_id[0x27] high edge lint[0x1])
[    0.691658] ACPI: LAPIC_NMI (acpi_id[0x29] high edge lint[0x1])
[    0.691660] ACPI: LAPIC_NMI (acpi_id[0x2b] high edge lint[0x1])
[    0.691661] ACPI: LAPIC_NMI (acpi_id[0x2d] high edge lint[0x1])
[    0.691663] ACPI: LAPIC_NMI (acpi_id[0x2f] high edge lint[0x1])
[    0.691678] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.691684] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
[    0.691689] IOAPIC[2]: apic_id 3, version 32, address 0xfec40000, GSI 48-71
[    0.691693] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.691697] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.691705] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.691707] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.691718] TSC deadline timer available
[    0.691725] CPU topo: Max. logical packages:   2
[    0.691727] CPU topo: Max. logical dies:       2
[    0.691728] CPU topo: Max. dies per package:   1
[    0.691735] CPU topo: Max. threads per core:   2
[    0.691738] CPU topo: Num. cores per package:    12
[    0.691739] CPU topo: Num. threads per package:  24
[    0.691741] CPU topo: Allowing 48 present CPUs plus 0 hotplug CPUs
[    0.691762] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.691765] PM: hibernation: Registered nosave memory: [mem 0x00097000-0x0009ffff]
[    0.691766] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.691767] PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.691769] PM: hibernation: Registered nosave memory: [mem 0x7cb60000-0x7cb8cfff]
[    0.691770] PM: hibernation: Registered nosave memory: [mem 0x7cb8d000-0x7cca4fff]
[    0.691771] PM: hibernation: Registered nosave memory: [mem 0x7cca5000-0x7d8defff]
[    0.691772] PM: hibernation: Registered nosave memory: [mem 0x7d8df000-0x7eb06fff]
[    0.691773] PM: hibernation: Registered nosave memory: [mem 0x7eb07000-0x7effffff]
[    0.691774] PM: hibernation: Registered nosave memory: [mem 0x7f000000-0x7fffffff]
[    0.691775] PM: hibernation: Registered nosave memory: [mem 0x80000000-0x8fffffff]
[    0.691776] PM: hibernation: Registered nosave memory: [mem 0x90000000-0xfed1bfff]
[    0.691777] PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed3ffff]
[    0.691779] PM: hibernation: Registered nosave memory: [mem 0xfed40000-0xfeffffff]
[    0.691780] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.691783] [mem 0x90000000-0xfed1bfff] available for PCI devices
[    0.691785] Booting paravirtualized kernel on bare hardware
[    0.691789] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.691802] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:48 nr_cpu_ids:48 nr_node_ids:2
[    0.697300] percpu: Embedded 66 pages/cpu s233472 r8192 d28672 u524288
[    0.697312] pcpu-alloc: s233472 r8192 d28672 u524288 alloc=1*2097152
[    0.697317] pcpu-alloc: [0] 00 01 02 03 [0] 04 05 06 07 
[    0.697325] pcpu-alloc: [0] 08 09 10 11 [0] 24 25 26 27 
[    0.697332] pcpu-alloc: [0] 28 29 30 31 [0] 32 33 34 35 
[    0.697338] pcpu-alloc: [1] 12 13 14 15 [1] 16 17 18 19 
[    0.697345] pcpu-alloc: [1] 20 21 22 23 [1] 36 37 38 39 
[    0.697353] pcpu-alloc: [1] 40 41 42 43 [1] 44 45 46 47 
[    0.697389] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.9.3-dirty root=UUID=3842ebdd-e37f-4e4e-afd4-d7eb79b41984 ro quiet rootdelay=50 intel_iommu=on iommu=pt vfio-pci.ids=10de:1201,10de:0e0c
[    0.697504] DMAR: IOMMU enabled
[    0.697543] Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-6.9.3-dirty", will be passed to user space.
[    0.697557] random: crng init done
[    0.697559] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    0.697561] printk: log_buf_len total cpu_extra contributions: 192512 bytes
[    0.697562] printk: log_buf_len min size: 262144 bytes
[    0.698215] printk: log_buf_len: 524288 bytes
[    0.698216] printk: early log buf free: 246224(93%)
[    0.699149] Fallback order for Node 0: 0 1 
[    0.699155] Fallback order for Node 1: 1 0 
[    0.699162] Built 2 zonelists, mobility grouping on.  Total pages: 66046770
[    0.699164] Policy zone: Normal
[    0.699174] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[    0.699192] software IO TLB: area num 64.
[    1.637661] Memory: 263619156K/268381144K available (20480K kernel code, 3632K rwdata, 13176K rodata, 4768K init, 5748K bss, 4761728K reserved, 0K cma-reserved)
[    1.638294] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=48, Nodes=2
[    1.638450] Kernel/User page tables isolation: enabled
[    1.638570] ftrace: allocating 54090 entries in 212 pages
[    1.654796] ftrace: allocated 212 pages with 4 groups
[    1.656189] Dynamic Preempt: voluntary
[    1.656569] rcu: Preemptible hierarchical RCU implementation.
[    1.656571] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=48.
[    1.656574] 	Trampoline variant of Tasks RCU enabled.
[    1.656575] 	Rude variant of Tasks RCU enabled.
[    1.656576] 	Tracing variant of Tasks RCU enabled.
[    1.656577] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    1.656579] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=48
[    1.656631] RCU Tasks: Setting shift to 6 and lim to 1 rcu_task_cb_adjust=1.
[    1.656644] RCU Tasks Rude: Setting shift to 6 and lim to 1 rcu_task_cb_adjust=1.
[    1.656663] RCU Tasks Trace: Setting shift to 6 and lim to 1 rcu_task_cb_adjust=1.
[    1.660477] NR_IRQS: 524544, nr_irqs: 1624, preallocated irqs: 16
[    1.660795] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    1.667495] Console: colour VGA+ 80x25
[    1.667501] printk: legacy console [tty0] enabled
[    1.667700] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    1.667705] ACPI: Core revision 20230628
[    1.668269] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    1.668286] APIC: Switch to symmetric I/O mode setup
[    1.668290] DMAR: Host address width 46
[    1.668291] DMAR: DRHD base: 0x000000fbffe000 flags: 0x0
[    1.668305] DMAR: dmar0: reg_base_addr fbffe000 ver 1:0 cap d2078c106f0466 ecap f020df
[    1.668308] DMAR: DRHD base: 0x000000cfffc000 flags: 0x1
[    1.668313] DMAR: dmar1: reg_base_addr cfffc000 ver 1:0 cap d2078c106f0466 ecap f020df
[    1.668315] DMAR: RMRR base: 0x0000007e953000 end: 0x0000007e969fff
[    1.668318] DMAR: ATSR flags: 0x0
[    1.668319] DMAR: RHSA base: 0x000000fbffe000 proximity domain: 0x1
[    1.668321] DMAR: RHSA base: 0x000000cfffc000 proximity domain: 0x0
[    1.668325] DMAR-IR: IOAPIC id 3 under DRHD base  0xfbffe000 IOMMU 0
[    1.668327] DMAR-IR: IOAPIC id 0 under DRHD base  0xcfffc000 IOMMU 1
[    1.668328] DMAR-IR: IOAPIC id 2 under DRHD base  0xcfffc000 IOMMU 1
[    1.668330] DMAR-IR: HPET id 0 under DRHD base 0xcfffc000
[    1.668331] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    1.669140] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    1.669145] x2apic enabled
[    1.669226] APIC: Switched APIC routing to: cluster x2apic
[    1.669912] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    1.688296] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x26eb56463a8, max_idle_ns: 440795325635 ns
[    1.688304] Calibrating delay loop (skipped), value calculated using timer frequency.. 5400.05 BogoMIPS (lpj=10800100)
[    1.688342] CPU0: Thermal monitoring enabled (TM1)
[    1.688442] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    1.688444] Last level dTLB entries: 4KB 512, 2MB 0, 4MB 0, 1GB 4
[    1.688450] process: using mwait in idle threads
[    1.688453] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    1.688457] Spectre V2 : Mitigation: Retpolines
[    1.688458] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    1.688460] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[    1.688461] Speculative Store Bypass: Vulnerable
[    1.688464] MDS: Vulnerable: Clear CPU buffers attempted, no microcode
[    1.688465] MMIO Stale Data: Unknown: No mitigations
[    1.688472] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    1.688474] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    1.688475] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    1.688478] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    1.688480] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    1.718643] Freeing SMP alternatives memory: 44K
[    1.718647] pid_max: default: 49152 minimum: 384
[    1.718762] LSM: initializing lsm=lockdown,capability,yama,apparmor,ima,evm
[    1.718796] Yama: becoming mindful.
[    1.718835] AppArmor: AppArmor initialized
[    1.763082] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc hugepage)
[    1.785214] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
[    1.786022] Mount-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc)
[    1.786735] Mountpoint-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc)
[    1.787755] smpboot: CPU0: Intel(R) Xeon(R) CPU E5-2697 v2 @ 2.70GHz (family: 0x6, model: 0x3e, stepping: 0x4)
[    1.788206] Performance Events: PEBS fmt1+, IvyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
[    1.788248] ... version:                3
[    1.788249] ... bit width:              48
[    1.788251] ... generic registers:      4
[    1.788252] ... value mask:             0000ffffffffffff
[    1.788253] ... max period:             00007fffffffffff
[    1.788255] ... fixed-purpose events:   3
[    1.788256] ... event mask:             000000070000000f
[    1.788300] signal: max sigframe size: 1776
[    1.788300] Estimated ratio of average max frequency by base frequency (times 1024): 1213
[    1.788300] rcu: Hierarchical SRCU implementation.
[    1.788300] rcu: 	Max phase no-delay instances is 1000.
[    1.789665] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    1.790490] smp: Bringing up secondary CPUs ...
[    1.790706] smpboot: x86: Booting SMP configuration:
[    1.790708] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11
[    1.794481] .... node  #1, CPUs:   #12 #13 #14 #15 #16 #17 #18 #19 #20 #21 #22 #23
[    1.842305] .... node  #0, CPUs:   #24 #25 #26 #27 #28 #29 #30 #31 #32 #33 #34 #35
[    1.849300] .... node  #1, CPUs:   #36 #37 #38 #39 #40 #41 #42 #43 #44 #45 #46 #47
[    1.854304] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    1.900422] smp: Brought up 2 nodes, 48 CPUs
[    1.900422] smpboot: Total of 48 processors activated (259202.40 BogoMIPS)
[    1.919873] devtmpfs: initialized
[    1.919873] x86/mm: Memory block size: 2048MB
[    1.923020] ACPI: PM: Registering ACPI NVS region [mem 0x7cca5000-0x7d8defff] (12820480 bytes)
[    1.923020] ACPI: PM: Registering ACPI NVS region [mem 0x7eb07000-0x7effffff] (5214208 bytes)
[    1.923020] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    1.923020] futex hash table entries: 16384 (order: 8, 1048576 bytes, vmalloc)
[    1.923020] pinctrl core: initialized pinctrl subsystem
[    1.923020] PM: RTC time: 09:22:09, date: 2024-05-31
[    1.926481] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    1.928437] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    1.929444] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    1.930453] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    1.930468] audit: initializing netlink subsys (disabled)
[    1.930498] audit: type=2000 audit(1717147328.260:1): state=initialized audit_enabled=0 res=1
[    1.930498] thermal_sys: Registered thermal governor 'fair_share'
[    1.930498] thermal_sys: Registered thermal governor 'bang_bang'
[    1.930498] thermal_sys: Registered thermal governor 'step_wise'
[    1.930498] thermal_sys: Registered thermal governor 'user_space'
[    1.930498] thermal_sys: Registered thermal governor 'power_allocator'
[    1.930498] EISA bus registered
[    1.930498] cpuidle: using governor ladder
[    1.930498] cpuidle: using governor menu
[    1.930498] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    1.930498] PCI: ECAM [mem 0x80000000-0x8fffffff] (base 0x80000000) for domain 0000 [bus 00-ff]
[    1.930498] PCI: ECAM [mem 0x80000000-0x8fffffff] reserved as E820 entry
[    1.930498] PCI: Using configuration type 1 for base access
[    1.930498] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    1.930498] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    1.930498] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    1.930498] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    1.930498] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    1.930498] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    1.930498] Demotion targets for Node 0: null
[    1.930498] Demotion targets for Node 1: null
[    1.932513] ACPI: Added _OSI(Module Device)
[    1.932516] ACPI: Added _OSI(Processor Device)
[    1.932517] ACPI: Added _OSI(3.0 _SCP Extensions)
[    1.932519] ACPI: Added _OSI(Processor Aggregator Device)
[    2.084996] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    2.113119] ACPI: _OSC evaluated successfully for all CPUs
[    2.113415] ACPI: Interpreter enabled
[    2.113437] ACPI: PM: (supports S0 S1 S5)
[    2.113439] ACPI: Using IOAPIC for interrupt routing
[    2.117220] HEST: Table parsing has been initialized.
[    2.117354] GHES: APEI firmware first mode is enabled by WHEA _OSC.
[    2.117360] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.117362] PCI: Using E820 reservations for host bridge windows
[    2.117969] ACPI: Enabled 8 GPEs in block 00 to 3F
[    2.119393] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    2.142980] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
[    2.142993] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.143101] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[    2.143282] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    2.143788] PCI host bridge to bus 0000:00
[    2.143791] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    2.143794] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    2.143797] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    2.143798] pci_bus 0000:00: root bus resource [io  0x0d00-0x9fff window]
[    2.143801] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
[    2.143803] pci_bus 0000:00: root bus resource [mem 0x80000000-0xcfffffff window]
[    2.143806] pci_bus 0000:00: root bus resource [bus 00-7e]
[    2.143843] pci 0000:00:00.0: [8086:0e00] type 00 class 0x060000 PCIe Root Port
[    2.143928] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    2.144051] pci 0000:00:01.0: [8086:0e02] type 01 class 0x060400 PCIe Root Port
[    2.144076] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.144156] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    2.144334] pci 0000:00:01.1: [8086:0e03] type 01 class 0x060400 PCIe Root Port
[    2.144360] pci 0000:00:01.1: PCI bridge to [bus 02]
[    2.144437] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    2.144618] pci 0000:00:02.0: [8086:0e04] type 01 class 0x060400 PCIe Root Port
[    2.144643] pci 0000:00:02.0: PCI bridge to [bus 03]
[    2.144722] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    2.144882] pci 0000:00:02.2: [8086:0e06] type 01 class 0x060400 PCIe Root Port
[    2.144907] pci 0000:00:02.2: PCI bridge to [bus 04]
[    2.144915] pci 0000:00:02.2:   bridge window [mem 0xc8a00000-0xc8cfffff]
[    2.144988] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    2.145146] pci 0000:00:03.0: [8086:0e08] type 01 class 0x060400 PCIe Root Port
[    2.145171] pci 0000:00:03.0: PCI bridge to [bus 05]
[    2.145177] pci 0000:00:03.0:   bridge window [io  0x8000-0x8fff]
[    2.145181] pci 0000:00:03.0:   bridge window [mem 0xb8000000-0xc60fffff]
[    2.145197] pci 0000:00:03.0: enabling Extended Tags
[    2.145260] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    2.145411] pci 0000:00:04.0: [8086:0e20] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.145430] pci 0000:00:04.0: BAR 0 [mem 0xc6120000-0xc6123fff 64bit]
[    2.145555] pci 0000:00:04.1: [8086:0e21] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.145571] pci 0000:00:04.1: BAR 0 [mem 0xc611c000-0xc611ffff 64bit]
[    2.145692] pci 0000:00:04.2: [8086:0e22] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.145708] pci 0000:00:04.2: BAR 0 [mem 0xc6118000-0xc611bfff 64bit]
[    2.145828] pci 0000:00:04.3: [8086:0e23] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.145845] pci 0000:00:04.3: BAR 0 [mem 0xc6114000-0xc6117fff 64bit]
[    2.145963] pci 0000:00:04.4: [8086:0e24] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.145979] pci 0000:00:04.4: BAR 0 [mem 0xc6110000-0xc6113fff 64bit]
[    2.146107] pci 0000:00:04.5: [8086:0e25] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.146123] pci 0000:00:04.5: BAR 0 [mem 0xc610c000-0xc610ffff 64bit]
[    2.146244] pci 0000:00:04.6: [8086:0e26] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.146260] pci 0000:00:04.6: BAR 0 [mem 0xc6108000-0xc610bfff 64bit]
[    2.146381] pci 0000:00:04.7: [8086:0e27] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.146397] pci 0000:00:04.7: BAR 0 [mem 0xc6104000-0xc6107fff 64bit]
[    2.146517] pci 0000:00:05.0: [8086:0e28] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.146628] pci 0000:00:05.2: [8086:0e2a] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.146740] pci 0000:00:05.4: [8086:0e2c] type 00 class 0x080020 PCIe Root Complex Integrated Endpoint
[    2.146752] pci 0000:00:05.4: BAR 0 [mem 0xc612b000-0xc612bfff]
[    2.146886] pci 0000:00:11.0: [8086:1d3e] type 01 class 0x060400 PCIe Root Port
[    2.146922] pci 0000:00:11.0: PCI bridge to [bus 06]
[    2.146932] pci 0000:00:11.0:   bridge window [io  0x7000-0x7fff]
[    2.146936] pci 0000:00:11.0:   bridge window [mem 0xc8400000-0xc88fffff]
[    2.146949] pci 0000:00:11.0:   bridge window [mem 0xcfe00000-0xcfefffff 64bit pref]
[    2.147022] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold
[    2.147160] pci 0000:00:16.0: [8086:1d3a] type 00 class 0x078000 conventional PCI endpoint
[    2.147178] pci 0000:00:16.0: BAR 0 [mem 0xc612a000-0xc612a00f 64bit]
[    2.147241] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    2.147334] pci 0000:00:16.1: [8086:1d3b] type 00 class 0x078000 conventional PCI endpoint
[    2.147353] pci 0000:00:16.1: BAR 0 [mem 0xc6129000-0xc612900f 64bit]
[    2.147414] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
[    2.147516] pci 0000:00:1a.0: [8086:1d2d] type 00 class 0x0c0320 conventional PCI endpoint
[    2.147535] pci 0000:00:1a.0: BAR 0 [mem 0xc6127000-0xc61273ff]
[    2.147620] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    2.147716] pci 0000:00:1b.0: [8086:1d20] type 00 class 0x040300 PCIe Root Complex Integrated Endpoint
[    2.147734] pci 0000:00:1b.0: BAR 0 [mem 0xc6100000-0xc6103fff 64bit]
[    2.147814] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    2.147895] pci 0000:00:1c.0: [8086:1d10] type 01 class 0x060400 PCIe Root Port
[    2.147926] pci 0000:00:1c.0: PCI bridge to [bus 07-08]
[    2.147932] pci 0000:00:1c.0:   bridge window [io  0x6000-0x6fff]
[    2.147938] pci 0000:00:1c.0:   bridge window [mem 0xc8e00000-0xc8efffff]
[    2.148006] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    2.148034] pci 0000:00:1c.0: Enabling MPC IRBNCE
[    2.148037] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[    2.148162] pci 0000:00:1c.7: [8086:1d1e] type 01 class 0x060400 PCIe Root Port
[    2.148195] pci 0000:00:1c.7: PCI bridge to [bus 09-0a]
[    2.148202] pci 0000:00:1c.7:   bridge window [io  0x5000-0x5fff]
[    2.148206] pci 0000:00:1c.7:   bridge window [mem 0xc7000000-0xc80fffff]
[    2.148278] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
[    2.148304] pci 0000:00:1c.7: Enabling MPC IRBNCE
[    2.148307] pci 0000:00:1c.7: Intel PCH root port ACS workaround enabled
[    2.148411] pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320 conventional PCI endpoint
[    2.148430] pci 0000:00:1d.0: BAR 0 [mem 0xc6126000-0xc61263ff]
[    2.148515] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    2.148608] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401 conventional PCI bridge
[    2.148634] pci 0000:00:1e.0: PCI bridge to [bus 0b] (subtractive decode)
[    2.148749] pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100 conventional PCI endpoint
[    2.148955] pci 0000:00:1f.2: [8086:1d02] type 00 class 0x010601 conventional PCI endpoint
[    2.148971] pci 0000:00:1f.2: BAR 0 [io  0x9070-0x9077]
[    2.148978] pci 0000:00:1f.2: BAR 1 [io  0x9060-0x9063]
[    2.148986] pci 0000:00:1f.2: BAR 2 [io  0x9050-0x9057]
[    2.148993] pci 0000:00:1f.2: BAR 3 [io  0x9040-0x9043]
[    2.149002] pci 0000:00:1f.2: BAR 4 [io  0x9020-0x903f]
[    2.149010] pci 0000:00:1f.2: BAR 5 [mem 0xc6125000-0xc61257ff]
[    2.149052] pci 0000:00:1f.2: PME# supported from D3hot
[    2.149137] pci 0000:00:1f.3: [8086:1d22] type 00 class 0x0c0500 conventional PCI endpoint
[    2.149157] pci 0000:00:1f.3: BAR 0 [mem 0xc6124000-0xc61240ff 64bit]
[    2.149177] pci 0000:00:1f.3: BAR 4 [io  0x9000-0x901f]
[    2.149295] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.149338] pci 0000:00:01.1: PCI bridge to [bus 02]
[    2.149380] pci 0000:00:02.0: PCI bridge to [bus 03]
[    2.149435] pci 0000:04:00.0: [9005:0285] type 00 class 0x010400 PCIe Endpoint
[    2.149451] pci 0000:04:00.0: BAR 0 [mem 0xc8a00000-0xc8bfffff 64bit]
[    2.149479] pci 0000:04:00.0: ROM [mem 0xc8c00000-0xc8c7ffff pref]
[    2.149522] pci 0000:04:00.0: supports D1
[    2.149587] pci 0000:00:02.2: PCI bridge to [bus 04]
[    2.149642] pci 0000:05:00.0: [10de:1201] type 00 class 0x030000 PCIe Endpoint
[    2.149653] pci 0000:05:00.0: BAR 0 [mem 0xc4000000-0xc5ffffff]
[    2.149661] pci 0000:05:00.0: BAR 1 [mem 0xb8000000-0xbfffffff 64bit pref]
[    2.149670] pci 0000:05:00.0: BAR 3 [mem 0xc0000000-0xc3ffffff 64bit pref]
[    2.149676] pci 0000:05:00.0: BAR 5 [io  0x8000-0x807f]
[    2.149683] pci 0000:05:00.0: ROM [mem 0xc6000000-0xc607ffff pref]
[    2.149689] pci 0000:05:00.0: enabling Extended Tags
[    2.149807] pci 0000:05:00.1: [10de:0e0c] type 00 class 0x040300 PCIe Endpoint
[    2.149818] pci 0000:05:00.1: BAR 0 [mem 0xc6080000-0xc6083fff]
[    2.149853] pci 0000:05:00.1: enabling Extended Tags
[    2.149948] pci 0000:00:03.0: PCI bridge to [bus 05]
[    2.150021] pci 0000:06:00.0: [8086:1d6b] type 00 class 0x010700 PCIe Endpoint
[    2.150047] pci 0000:06:00.0: BAR 0 [mem 0xc8800000-0xc8803fff 64bit pref]
[    2.150062] pci 0000:06:00.0: BAR 2 [mem 0xc8400000-0xc87fffff 64bit pref]
[    2.150072] pci 0000:06:00.0: BAR 4 [io  0x7000-0x70ff]
[    2.150099] pci 0000:06:00.0: enabling Extended Tags
[    2.150203] pci 0000:06:00.0: VF BAR 0 [mem 0xcfe00000-0xcfe03fff 64bit pref]
[    2.150206] pci 0000:06:00.0: VF BAR 0 [mem 0xcfe00000-0xcfe7bfff 64bit pref]: contains BAR 0 for 31 VFs
[    2.150448] pci 0000:00:11.0: PCI bridge to [bus 06]
[    2.150556] pci 0000:07:00.0: [8086:1521] type 00 class 0x020000 PCIe Endpoint
[    2.150583] pci 0000:07:00.0: BAR 0 [mem 0xc8e20000-0xc8e3ffff]
[    2.150608] pci 0000:07:00.0: BAR 2 [io  0x6020-0x603f]
[    2.150621] pci 0000:07:00.0: BAR 3 [mem 0xc8ec4000-0xc8ec7fff]
[    2.150792] pci 0000:07:00.0: PME# supported from D0 D3hot D3cold
[    2.150834] pci 0000:07:00.0: VF BAR 0 [mem 0xc8ea0000-0xc8ea3fff]
[    2.150837] pci 0000:07:00.0: VF BAR 0 [mem 0xc8ea0000-0xc8ebffff]: contains BAR 0 for 8 VFs
[    2.150871] pci 0000:07:00.0: VF BAR 3 [mem 0xc8e80000-0xc8e83fff]
[    2.150875] pci 0000:07:00.0: VF BAR 3 [mem 0xc8e80000-0xc8e9ffff]: contains BAR 3 for 8 VFs
[    2.151199] pci 0000:07:00.1: [8086:1521] type 00 class 0x020000 PCIe Endpoint
[    2.151223] pci 0000:07:00.1: BAR 0 [mem 0xc8e00000-0xc8e1ffff]
[    2.151248] pci 0000:07:00.1: BAR 2 [io  0x6000-0x601f]
[    2.151261] pci 0000:07:00.1: BAR 3 [mem 0xc8ec0000-0xc8ec3fff]
[    2.151426] pci 0000:07:00.1: PME# supported from D0 D3hot D3cold
[    2.151468] pci 0000:07:00.1: VF BAR 0 [mem 0xc8e60000-0xc8e63fff]
[    2.151474] pci 0000:07:00.1: VF BAR 0 [mem 0xc8e60000-0xc8e7ffff]: contains BAR 0 for 8 VFs
[    2.151508] pci 0000:07:00.1: VF BAR 3 [mem 0xc8e40000-0xc8e43fff]
[    2.151512] pci 0000:07:00.1: VF BAR 3 [mem 0xc8e40000-0xc8e5ffff]: contains BAR 3 for 8 VFs
[    2.151772] pci 0000:00:1c.0: PCI bridge to [bus 07-08]
[    2.151862] pci 0000:09:00.0: [1a03:1150] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
[    2.151917] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    2.151932] pci 0000:09:00.0:   bridge window [io  0x5000-0x5fff]
[    2.151938] pci 0000:09:00.0:   bridge window [mem 0xc7000000-0xc80fffff]
[    2.152063] pci 0000:09:00.0: supports D1 D2
[    2.152064] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.152187] pci 0000:09:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    2.152203] pci 0000:00:1c.7: PCI bridge to [bus 09-0a]
[    2.152269] pci_bus 0000:0a: extended config space not accessible
[    2.152302] pci 0000:0a:00.0: [1a03:2000] type 00 class 0x030000 conventional PCI endpoint
[    2.152336] pci 0000:0a:00.0: BAR 0 [mem 0xc7000000-0xc7ffffff]
[    2.152355] pci 0000:0a:00.0: BAR 1 [mem 0xc8000000-0xc801ffff]
[    2.152375] pci 0000:0a:00.0: BAR 2 [io  0x5000-0x507f]
[    2.152465] pci 0000:0a:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    2.152515] pci 0000:0a:00.0: supports D1 D2
[    2.152517] pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.152649] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    2.152697] pci_bus 0000:0b: extended config space not accessible
[    2.152750] pci 0000:00:1e.0: PCI bridge to [bus 0b] (subtractive decode)
[    2.152763] pci 0000:00:1e.0:   bridge window [io  0x0000-0x03af window] (subtractive decode)
[    2.152765] pci 0000:00:1e.0:   bridge window [io  0x03e0-0x0cf7 window] (subtractive decode)
[    2.152768] pci 0000:00:1e.0:   bridge window [io  0x03b0-0x03df window] (subtractive decode)
[    2.152770] pci 0000:00:1e.0:   bridge window [io  0x0d00-0x9fff window] (subtractive decode)
[    2.152772] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000dffff window] (subtractive decode)
[    2.152774] pci 0000:00:1e.0:   bridge window [mem 0x80000000-0xcfffffff window] (subtractive decode)
[    2.152826] pci_bus 0000:00: on NUMA node 0
[    2.153663] ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus 7f])
[    2.153669] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.153691] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[    2.153759] PCI host bridge to bus 0000:7f
[    2.153763] pci_bus 0000:7f: root bus resource [bus 7f]
[    2.153775] pci 0000:7f:08.0: [8086:0e80] type 00 class 0x088000 conventional PCI endpoint
[    2.153838] pci 0000:7f:09.0: [8086:0e90] type 00 class 0x088000 conventional PCI endpoint
[    2.153893] pci 0000:7f:0a.0: [8086:0ec0] type 00 class 0x088000 conventional PCI endpoint
[    2.153942] pci 0000:7f:0a.1: [8086:0ec1] type 00 class 0x088000 conventional PCI endpoint
[    2.153990] pci 0000:7f:0a.2: [8086:0ec2] type 00 class 0x088000 conventional PCI endpoint
[    2.154040] pci 0000:7f:0a.3: [8086:0ec3] type 00 class 0x088000 conventional PCI endpoint
[    2.154099] pci 0000:7f:0b.0: [8086:0e1e] type 00 class 0x088000 conventional PCI endpoint
[    2.154145] pci 0000:7f:0b.3: [8086:0e1f] type 00 class 0x088000 conventional PCI endpoint
[    2.154193] pci 0000:7f:0c.0: [8086:0ee0] type 00 class 0x088000 conventional PCI endpoint
[    2.154246] pci 0000:7f:0c.1: [8086:0ee2] type 00 class 0x088000 conventional PCI endpoint
[    2.154292] pci 0000:7f:0c.2: [8086:0ee4] type 00 class 0x088000 conventional PCI endpoint
[    2.154342] pci 0000:7f:0c.3: [8086:0ee6] type 00 class 0x088000 conventional PCI endpoint
[    2.154390] pci 0000:7f:0c.4: [8086:0ee8] type 00 class 0x088000 conventional PCI endpoint
[    2.154436] pci 0000:7f:0c.5: [8086:0eea] type 00 class 0x088000 conventional PCI endpoint
[    2.154491] pci 0000:7f:0d.0: [8086:0ee1] type 00 class 0x088000 conventional PCI endpoint
[    2.154543] pci 0000:7f:0d.1: [8086:0ee3] type 00 class 0x088000 conventional PCI endpoint
[    2.154589] pci 0000:7f:0d.2: [8086:0ee5] type 00 class 0x088000 conventional PCI endpoint
[    2.154636] pci 0000:7f:0d.3: [8086:0ee7] type 00 class 0x088000 conventional PCI endpoint
[    2.154684] pci 0000:7f:0d.4: [8086:0ee9] type 00 class 0x088000 conventional PCI endpoint
[    2.154730] pci 0000:7f:0d.5: [8086:0eeb] type 00 class 0x088000 conventional PCI endpoint
[    2.154777] pci 0000:7f:0e.0: [8086:0ea0] type 00 class 0x088000 conventional PCI endpoint
[    2.154832] pci 0000:7f:0e.1: [8086:0e30] type 00 class 0x110100 conventional PCI endpoint
[    2.154896] pci 0000:7f:0f.0: [8086:0ea8] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.154965] pci 0000:7f:0f.1: [8086:0e71] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.155032] pci 0000:7f:0f.2: [8086:0eaa] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.155098] pci 0000:7f:0f.3: [8086:0eab] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.155166] pci 0000:7f:0f.4: [8086:0eac] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.155232] pci 0000:7f:0f.5: [8086:0ead] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.155301] pci 0000:7f:10.0: [8086:0eb0] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.155370] pci 0000:7f:10.1: [8086:0eb1] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.155446] pci 0000:7f:10.2: [8086:0eb2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.155514] pci 0000:7f:10.3: [8086:0eb3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.155581] pci 0000:7f:10.4: [8086:0eb4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.155649] pci 0000:7f:10.5: [8086:0eb5] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.155716] pci 0000:7f:10.6: [8086:0eb6] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.155784] pci 0000:7f:10.7: [8086:0eb7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.155850] pci 0000:7f:13.0: [8086:0e1d] type 00 class 0x088000 conventional PCI endpoint
[    2.155897] pci 0000:7f:13.1: [8086:0e34] type 00 class 0x110100 conventional PCI endpoint
[    2.155956] pci 0000:7f:13.4: [8086:0e81] type 00 class 0x088000 conventional PCI endpoint
[    2.156004] pci 0000:7f:13.5: [8086:0e36] type 00 class 0x110100 conventional PCI endpoint
[    2.156054] pci 0000:7f:16.0: [8086:0ec8] type 00 class 0x088000 conventional PCI endpoint
[    2.156102] pci 0000:7f:16.1: [8086:0ec9] type 00 class 0x088000 conventional PCI endpoint
[    2.156151] pci 0000:7f:16.2: [8086:0eca] type 00 class 0x088000 conventional PCI endpoint
[    2.156205] pci 0000:7f:1c.0: [8086:0e60] type 00 class 0x088000 conventional PCI endpoint
[    2.156258] pci 0000:7f:1c.1: [8086:0e38] type 00 class 0x110100 conventional PCI endpoint
[    2.156323] pci 0000:7f:1d.0: [8086:0e68] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.156403] pci 0000:7f:1d.1: [8086:0e79] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.156473] pci 0000:7f:1d.2: [8086:0e6a] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.156541] pci 0000:7f:1d.3: [8086:0e6b] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.156611] pci 0000:7f:1d.4: [8086:0e6c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.156680] pci 0000:7f:1d.5: [8086:0e6d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.156754] pci 0000:7f:1e.0: [8086:0ef0] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.156827] pci 0000:7f:1e.1: [8086:0ef1] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.156897] pci 0000:7f:1e.2: [8086:0ef2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.156976] pci 0000:7f:1e.3: [8086:0ef3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.157045] pci 0000:7f:1e.4: [8086:0ef4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.157113] pci 0000:7f:1e.5: [8086:0ef5] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.157182] pci 0000:7f:1e.6: [8086:0ef6] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.157250] pci 0000:7f:1e.7: [8086:0ef7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.157320] pci_bus 0000:7f: on NUMA node 0
[    2.157513] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 80-fe])
[    2.157520] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.157624] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug AER LTR DPC]
[    2.157805] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability]
[    2.158052] PCI host bridge to bus 0000:80
[    2.158057] pci_bus 0000:80: root bus resource [io  0xa000-0xffff window]
[    2.158059] pci_bus 0000:80: root bus resource [mem 0xd0000000-0xfbffffff window]
[    2.158062] pci_bus 0000:80: root bus resource [bus 80-fe]
[    2.158093] pci 0000:80:00.0: [8086:0e01] type 01 class 0x060400 PCIe Root Port
[    2.158122] pci 0000:80:00.0: PCI bridge to [bus 81]
[    2.158205] pci 0000:80:00.0: PME# supported from D0 D3hot D3cold
[    2.158376] pci 0000:80:01.0: [8086:0e02] type 01 class 0x060400 PCIe Root Port
[    2.158405] pci 0000:80:01.0: PCI bridge to [bus 82]
[    2.158491] pci 0000:80:01.0: PME# supported from D0 D3hot D3cold
[    2.158668] pci 0000:80:02.0: [8086:0e04] type 01 class 0x060400 PCIe Root Port
[    2.158697] pci 0000:80:02.0: PCI bridge to [bus 83]
[    2.158786] pci 0000:80:02.0: PME# supported from D0 D3hot D3cold
[    2.158975] pci 0000:80:03.0: [8086:0e08] type 01 class 0x060400 PCIe Root Port
[    2.159004] pci 0000:80:03.0: PCI bridge to [bus 84]
[    2.159028] pci 0000:80:03.0: enabling Extended Tags
[    2.159098] pci 0000:80:03.0: PME# supported from D0 D3hot D3cold
[    2.159261] pci 0000:80:04.0: [8086:0e20] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.159281] pci 0000:80:04.0: BAR 0 [mem 0xfbf1c000-0xfbf1ffff 64bit]
[    2.159415] pci 0000:80:04.1: [8086:0e21] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.159434] pci 0000:80:04.1: BAR 0 [mem 0xfbf18000-0xfbf1bfff 64bit]
[    2.159566] pci 0000:80:04.2: [8086:0e22] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.159585] pci 0000:80:04.2: BAR 0 [mem 0xfbf14000-0xfbf17fff 64bit]
[    2.159717] pci 0000:80:04.3: [8086:0e23] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.159735] pci 0000:80:04.3: BAR 0 [mem 0xfbf10000-0xfbf13fff 64bit]
[    2.159865] pci 0000:80:04.4: [8086:0e24] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.159883] pci 0000:80:04.4: BAR 0 [mem 0xfbf0c000-0xfbf0ffff 64bit]
[    2.160015] pci 0000:80:04.5: [8086:0e25] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.160033] pci 0000:80:04.5: BAR 0 [mem 0xfbf08000-0xfbf0bfff 64bit]
[    2.160164] pci 0000:80:04.6: [8086:0e26] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.160182] pci 0000:80:04.6: BAR 0 [mem 0xfbf04000-0xfbf07fff 64bit]
[    2.160325] pci 0000:80:04.7: [8086:0e27] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.160343] pci 0000:80:04.7: BAR 0 [mem 0xfbf00000-0xfbf03fff 64bit]
[    2.160480] pci 0000:80:05.0: [8086:0e28] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.160600] pci 0000:80:05.2: [8086:0e2a] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.160721] pci 0000:80:05.4: [8086:0e2c] type 00 class 0x080020 PCIe Root Complex Integrated Endpoint
[    2.160735] pci 0000:80:05.4: BAR 0 [mem 0xfbf20000-0xfbf20fff]
[    2.160905] pci 0000:80:00.0: PCI bridge to [bus 81]
[    2.160951] pci 0000:80:01.0: PCI bridge to [bus 82]
[    2.160999] pci 0000:80:02.0: PCI bridge to [bus 83]
[    2.161045] pci 0000:80:03.0: PCI bridge to [bus 84]
[    2.161079] pci_bus 0000:80: on NUMA node 1
[    2.161188] ACPI: PCI Root Bridge [UNC1] (domain 0000 [bus ff])
[    2.161194] acpi PNP0A03:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    2.161215] acpi PNP0A03:01: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[    2.161287] PCI host bridge to bus 0000:ff
[    2.161290] pci_bus 0000:ff: root bus resource [bus ff]
[    2.161304] pci 0000:ff:08.0: [8086:0e80] type 00 class 0x088000 conventional PCI endpoint
[    2.161369] pci 0000:ff:09.0: [8086:0e90] type 00 class 0x088000 conventional PCI endpoint
[    2.161431] pci 0000:ff:0a.0: [8086:0ec0] type 00 class 0x088000 conventional PCI endpoint
[    2.161485] pci 0000:ff:0a.1: [8086:0ec1] type 00 class 0x088000 conventional PCI endpoint
[    2.161548] pci 0000:ff:0a.2: [8086:0ec2] type 00 class 0x088000 conventional PCI endpoint
[    2.161603] pci 0000:ff:0a.3: [8086:0ec3] type 00 class 0x088000 conventional PCI endpoint
[    2.161659] pci 0000:ff:0b.0: [8086:0e1e] type 00 class 0x088000 conventional PCI endpoint
[    2.161711] pci 0000:ff:0b.3: [8086:0e1f] type 00 class 0x088000 conventional PCI endpoint
[    2.161765] pci 0000:ff:0c.0: [8086:0ee0] type 00 class 0x088000 conventional PCI endpoint
[    2.161818] pci 0000:ff:0c.1: [8086:0ee2] type 00 class 0x088000 conventional PCI endpoint
[    2.161873] pci 0000:ff:0c.2: [8086:0ee4] type 00 class 0x088000 conventional PCI endpoint
[    2.161937] pci 0000:ff:0c.3: [8086:0ee6] type 00 class 0x088000 conventional PCI endpoint
[    2.162000] pci 0000:ff:0c.4: [8086:0ee8] type 00 class 0x088000 conventional PCI endpoint
[    2.162054] pci 0000:ff:0c.5: [8086:0eea] type 00 class 0x088000 conventional PCI endpoint
[    2.162107] pci 0000:ff:0d.0: [8086:0ee1] type 00 class 0x088000 conventional PCI endpoint
[    2.162161] pci 0000:ff:0d.1: [8086:0ee3] type 00 class 0x088000 conventional PCI endpoint
[    2.162214] pci 0000:ff:0d.2: [8086:0ee5] type 00 class 0x088000 conventional PCI endpoint
[    2.162270] pci 0000:ff:0d.3: [8086:0ee7] type 00 class 0x088000 conventional PCI endpoint
[    2.162325] pci 0000:ff:0d.4: [8086:0ee9] type 00 class 0x088000 conventional PCI endpoint
[    2.162378] pci 0000:ff:0d.5: [8086:0eeb] type 00 class 0x088000 conventional PCI endpoint
[    2.162440] pci 0000:ff:0e.0: [8086:0ea0] type 00 class 0x088000 conventional PCI endpoint
[    2.162504] pci 0000:ff:0e.1: [8086:0e30] type 00 class 0x110100 conventional PCI endpoint
[    2.162573] pci 0000:ff:0f.0: [8086:0ea8] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.162654] pci 0000:ff:0f.1: [8086:0e71] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.162735] pci 0000:ff:0f.2: [8086:0eaa] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.162818] pci 0000:ff:0f.3: [8086:0eab] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.162899] pci 0000:ff:0f.4: [8086:0eac] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.162978] pci 0000:ff:0f.5: [8086:0ead] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.163069] pci 0000:ff:10.0: [8086:0eb0] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.163151] pci 0000:ff:10.1: [8086:0eb1] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.163230] pci 0000:ff:10.2: [8086:0eb2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.163312] pci 0000:ff:10.3: [8086:0eb3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.163392] pci 0000:ff:10.4: [8086:0eb4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.163473] pci 0000:ff:10.5: [8086:0eb5] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.163553] pci 0000:ff:10.6: [8086:0eb6] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.163634] pci 0000:ff:10.7: [8086:0eb7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.163722] pci 0000:ff:13.0: [8086:0e1d] type 00 class 0x088000 conventional PCI endpoint
[    2.163777] pci 0000:ff:13.1: [8086:0e34] type 00 class 0x110100 conventional PCI endpoint
[    2.163836] pci 0000:ff:13.4: [8086:0e81] type 00 class 0x088000 conventional PCI endpoint
[    2.163891] pci 0000:ff:13.5: [8086:0e36] type 00 class 0x110100 conventional PCI endpoint
[    2.163952] pci 0000:ff:16.0: [8086:0ec8] type 00 class 0x088000 conventional PCI endpoint
[    2.164009] pci 0000:ff:16.1: [8086:0ec9] type 00 class 0x088000 conventional PCI endpoint
[    2.164066] pci 0000:ff:16.2: [8086:0eca] type 00 class 0x088000 conventional PCI endpoint
[    2.164129] pci 0000:ff:1c.0: [8086:0e60] type 00 class 0x088000 conventional PCI endpoint
[    2.164202] pci 0000:ff:1c.1: [8086:0e38] type 00 class 0x110100 conventional PCI endpoint
[    2.164276] pci 0000:ff:1d.0: [8086:0e68] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.164363] pci 0000:ff:1d.1: [8086:0e79] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.164449] pci 0000:ff:1d.2: [8086:0e6a] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.164533] pci 0000:ff:1d.3: [8086:0e6b] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.164615] pci 0000:ff:1d.4: [8086:0e6c] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.164699] pci 0000:ff:1d.5: [8086:0e6d] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.164783] pci 0000:ff:1e.0: [8086:0ef0] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.164877] pci 0000:ff:1e.1: [8086:0ef1] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.164967] pci 0000:ff:1e.2: [8086:0ef2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.165051] pci 0000:ff:1e.3: [8086:0ef3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.165134] pci 0000:ff:1e.4: [8086:0ef4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.165217] pci 0000:ff:1e.5: [8086:0ef5] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.165306] pci 0000:ff:1e.6: [8086:0ef6] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.165389] pci 0000:ff:1e.7: [8086:0ef7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
[    2.165469] pci_bus 0000:ff: on NUMA node 1
[    2.165596] ACPI: PCI: Interrupt link LNKA configured for IRQ 11
[    2.165659] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[    2.165719] ACPI: PCI: Interrupt link LNKC configured for IRQ 15
[    2.165778] ACPI: PCI: Interrupt link LNKD configured for IRQ 5
[    2.165837] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    2.165896] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    2.165955] ACPI: PCI: Interrupt link LNKG configured for IRQ 7
[    2.166014] ACPI: PCI: Interrupt link LNKH configured for IRQ 14
[    2.170412] iommu: Default domain type: Passthrough (set via kernel command line)
[    2.170412] SCSI subsystem initialized
[    2.170412] libata version 3.00 loaded.
[    2.170412] ACPI: bus type USB registered
[    2.170412] usbcore: registered new interface driver usbfs
[    2.170412] usbcore: registered new interface driver hub
[    2.170412] usbcore: registered new device driver usb
[    2.170412] pps_core: LinuxPPS API ver. 1 registered
[    2.170412] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    2.170412] PTP clock support registered
[    2.170412] EDAC MC: Ver: 3.0.0
[    2.170412] NetLabel: Initializing
[    2.170412] NetLabel:  domain hash size = 128
[    2.170412] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    2.170412] NetLabel:  unlabeled traffic allowed by default
[    2.170412] mctp: management component transport protocol core
[    2.170412] NET: Registered PF_MCTP protocol family
[    2.170412] PCI: Using ACPI for IRQ routing
[    2.176433] PCI: pci_cache_line_size set to 64 bytes
[    2.176664] e820: reserve RAM buffer [mem 0x00097000-0x0009ffff]
[    2.176667] e820: reserve RAM buffer [mem 0x7cb60000-0x7fffffff]
[    2.176697] pci 0000:05:00.0: vgaarb: setting as boot VGA device
[    2.176697] pci 0000:05:00.0: vgaarb: bridge control possible
[    2.176697] pci 0000:05:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    2.176697] pci 0000:0a:00.0: vgaarb: setting as boot VGA device (overriding previous)
[    2.176697] pci 0000:0a:00.0: vgaarb: bridge control possible
[    2.176697] pci 0000:0a:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    2.176697] vgaarb: loaded
[    2.176697] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    2.176697] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    2.178600] clocksource: Switched to clocksource tsc-early
[    2.179480] VFS: Disk quotas dquot_6.6.0
[    2.179513] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    2.179703] AppArmor: AppArmor Filesystem Enabled
[    2.179743] pnp: PnP ACPI init
[    2.179743] system 00:00: [mem 0xfc000000-0xfcffffff] has been reserved
[    2.179743] system 00:00: [mem 0xfd000000-0xfdffffff] has been reserved
[    2.179743] system 00:00: [mem 0xfe000000-0xfeafffff] has been reserved
[    2.179743] system 00:00: [mem 0xfeb00000-0xfebfffff] has been reserved
[    2.179743] system 00:00: [mem 0xfed00400-0xfed3ffff] could not be reserved
[    2.179743] system 00:00: [mem 0xfed45000-0xfedfffff] has been reserved
[    2.179743] system 00:00: [mem 0x00000400-0x000004ff] could not be reserved
[    2.179743] system 00:01: [mem 0xcfffc000-0xcfffdfff] could not be reserved
[    2.179743] system 00:02: [io  0x0290-0x029f] has been reserved
[    2.179743] system 00:04: [io  0x04d0-0x04d1] has been reserved
[    2.179743] pnp 00:06: [dma 0 disabled]
[    2.179743] pnp 00:07: [dma 0 disabled]
[    2.179743] system 00:08: [io  0x0400-0x0453] has been reserved
[    2.179743] system 00:08: [io  0x0458-0x047f] has been reserved
[    2.179743] system 00:08: [io  0x1180-0x119f] has been reserved
[    2.179743] system 00:08: [io  0x0500-0x057f] has been reserved
[    2.179743] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    2.179743] system 00:08: [mem 0xfec00000-0xfecfffff] could not be reserved
[    2.179743] system 00:08: [mem 0xfed08000-0xfed08fff] has been reserved
[    2.179743] system 00:08: [mem 0xff000000-0xffffffff] has been reserved
[    2.179743] system 00:09: [io  0x0454-0x0457] has been reserved
[    2.179743] system 00:0b: [mem 0xfbffe000-0xfbffffff] could not be reserved
[    2.180047] pnp: PnP ACPI: found 12 devices
[    2.186202] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    2.186309] NET: Registered PF_INET protocol family
[    2.187060] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc)
[    2.206474] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
[    2.206646] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
[    2.208031] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
[    2.209009] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    2.209285] TCP: Hash tables configured (established 524288 bind 65536)
[    2.209988] MPTCP token hash table entries: 65536 (order: 8, 1572864 bytes, vmalloc)
[    2.210816] UDP hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    2.211725] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc)
[    2.212051] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    2.212063] NET: Registered PF_XDP protocol family
[    2.212096] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.212110] pci 0000:00:01.1: PCI bridge to [bus 02]
[    2.212119] pci 0000:00:02.0: PCI bridge to [bus 03]
[    2.212128] pci 0000:00:02.2: PCI bridge to [bus 04]
[    2.212132] pci 0000:00:02.2:   bridge window [mem 0xc8a00000-0xc8cfffff]
[    2.212139] pci 0000:00:03.0: PCI bridge to [bus 05]
[    2.212142] pci 0000:00:03.0:   bridge window [io  0x8000-0x8fff]
[    2.212147] pci 0000:00:03.0:   bridge window [mem 0xb8000000-0xc60fffff]
[    2.212154] pci 0000:00:11.0: PCI bridge to [bus 06]
[    2.212157] pci 0000:00:11.0:   bridge window [io  0x7000-0x7fff]
[    2.212162] pci 0000:00:11.0:   bridge window [mem 0xc8400000-0xc88fffff]
[    2.212166] pci 0000:00:11.0:   bridge window [mem 0xcfe00000-0xcfefffff 64bit pref]
[    2.212174] pci 0000:00:1c.0: PCI bridge to [bus 07-08]
[    2.212177] pci 0000:00:1c.0:   bridge window [io  0x6000-0x6fff]
[    2.212181] pci 0000:00:1c.0:   bridge window [mem 0xc8e00000-0xc8efffff]
[    2.212190] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    2.212193] pci 0000:09:00.0:   bridge window [io  0x5000-0x5fff]
[    2.212200] pci 0000:09:00.0:   bridge window [mem 0xc7000000-0xc80fffff]
[    2.212213] pci 0000:00:1c.7: PCI bridge to [bus 09-0a]
[    2.212216] pci 0000:00:1c.7:   bridge window [io  0x5000-0x5fff]
[    2.212220] pci 0000:00:1c.7:   bridge window [mem 0xc7000000-0xc80fffff]
[    2.212229] pci 0000:00:1e.0: PCI bridge to [bus 0b]
[    2.212239] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    2.212242] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    2.212243] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    2.212245] pci_bus 0000:00: resource 7 [io  0x0d00-0x9fff window]
[    2.212247] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
[    2.212248] pci_bus 0000:00: resource 9 [mem 0x80000000-0xcfffffff window]
[    2.212250] pci_bus 0000:04: resource 1 [mem 0xc8a00000-0xc8cfffff]
[    2.212252] pci_bus 0000:05: resource 0 [io  0x8000-0x8fff]
[    2.212254] pci_bus 0000:05: resource 1 [mem 0xb8000000-0xc60fffff]
[    2.212256] pci_bus 0000:06: resource 0 [io  0x7000-0x7fff]
[    2.212257] pci_bus 0000:06: resource 1 [mem 0xc8400000-0xc88fffff]
[    2.212258] pci_bus 0000:06: resource 2 [mem 0xcfe00000-0xcfefffff 64bit pref]
[    2.212260] pci_bus 0000:07: resource 0 [io  0x6000-0x6fff]
[    2.212262] pci_bus 0000:07: resource 1 [mem 0xc8e00000-0xc8efffff]
[    2.212263] pci_bus 0000:09: resource 0 [io  0x5000-0x5fff]
[    2.212265] pci_bus 0000:09: resource 1 [mem 0xc7000000-0xc80fffff]
[    2.212267] pci_bus 0000:0a: resource 0 [io  0x5000-0x5fff]
[    2.212268] pci_bus 0000:0a: resource 1 [mem 0xc7000000-0xc80fffff]
[    2.212270] pci_bus 0000:0b: resource 4 [io  0x0000-0x03af window]
[    2.212271] pci_bus 0000:0b: resource 5 [io  0x03e0-0x0cf7 window]
[    2.212273] pci_bus 0000:0b: resource 6 [io  0x03b0-0x03df window]
[    2.212274] pci_bus 0000:0b: resource 7 [io  0x0d00-0x9fff window]
[    2.212276] pci_bus 0000:0b: resource 8 [mem 0x000a0000-0x000dffff window]
[    2.212278] pci_bus 0000:0b: resource 9 [mem 0x80000000-0xcfffffff window]
[    2.212386] pci 0000:80:00.0: PCI bridge to [bus 81]
[    2.212397] pci 0000:80:01.0: PCI bridge to [bus 82]
[    2.212406] pci 0000:80:02.0: PCI bridge to [bus 83]
[    2.212416] pci 0000:80:03.0: PCI bridge to [bus 84]
[    2.212426] pci_bus 0000:80: resource 4 [io  0xa000-0xffff window]
[    2.212430] pci_bus 0000:80: resource 5 [mem 0xd0000000-0xfbffffff window]
[    2.212495] pci 0000:00:05.0: disabled boot interrupts on device [8086:0e28]
[    2.236434] pci 0000:00:1a.0: quirk_usb_early_handoff+0x0/0x780 took 23360 usecs
[    2.260427] pci 0000:00:1d.0: quirk_usb_early_handoff+0x0/0x780 took 23407 usecs
[    2.260455] pci 0000:05:00.1: extending delay after power-on from D3hot to 20 msec
[    2.260502] pci 0000:05:00.1: D0 power state depends on 0000:05:00.0
[    2.260661] pci 0000:80:05.0: disabled boot interrupts on device [8086:0e28]
[    2.260785] PCI: CLS 64 bytes, default 64
[    2.260872] DMAR: No SATC found
[    2.260876] DMAR: dmar0: Using Queued invalidation
[    2.260883] DMAR: dmar1: Using Queued invalidation
[    2.260890] Trying to unpack rootfs image as initramfs...
[    2.261006] pci 0000:80:00.0: Adding to iommu group 0
[    2.261049] pci 0000:80:01.0: Adding to iommu group 1
[    2.261088] pci 0000:80:02.0: Adding to iommu group 2
[    2.261127] pci 0000:80:03.0: Adding to iommu group 3
[    2.261165] pci 0000:80:04.0: Adding to iommu group 4
[    2.261202] pci 0000:80:04.1: Adding to iommu group 5
[    2.261239] pci 0000:80:04.2: Adding to iommu group 6
[    2.261276] pci 0000:80:04.3: Adding to iommu group 7
[    2.261314] pci 0000:80:04.4: Adding to iommu group 8
[    2.261351] pci 0000:80:04.5: Adding to iommu group 9
[    2.261389] pci 0000:80:04.6: Adding to iommu group 10
[    2.261426] pci 0000:80:04.7: Adding to iommu group 11
[    2.261519] pci 0000:00:00.0: Adding to iommu group 12
[    2.261560] pci 0000:00:01.0: Adding to iommu group 13
[    2.261601] pci 0000:00:01.1: Adding to iommu group 14
[    2.261640] pci 0000:00:02.0: Adding to iommu group 15
[    2.261681] pci 0000:00:02.2: Adding to iommu group 16
[    2.261720] pci 0000:00:03.0: Adding to iommu group 17
[    2.261757] pci 0000:00:04.0: Adding to iommu group 18
[    2.261794] pci 0000:00:04.1: Adding to iommu group 19
[    2.261831] pci 0000:00:04.2: Adding to iommu group 20
[    2.261868] pci 0000:00:04.3: Adding to iommu group 21
[    2.261906] pci 0000:00:04.4: Adding to iommu group 22
[    2.261942] pci 0000:00:04.5: Adding to iommu group 23
[    2.261981] pci 0000:00:04.6: Adding to iommu group 24
[    2.262018] pci 0000:00:04.7: Adding to iommu group 25
[    2.262055] pci 0000:00:05.0: Adding to iommu group 26
[    2.262092] pci 0000:00:05.2: Adding to iommu group 27
[    2.262130] pci 0000:00:05.4: Adding to iommu group 28
[    2.262167] pci 0000:00:11.0: Adding to iommu group 29
[    2.262263] pci 0000:00:16.0: Adding to iommu group 30
[    2.262302] pci 0000:00:16.1: Adding to iommu group 30
[    2.262340] pci 0000:00:1a.0: Adding to iommu group 31
[    2.262377] pci 0000:00:1b.0: Adding to iommu group 32
[    2.262414] pci 0000:00:1c.0: Adding to iommu group 33
[    2.262454] pci 0000:00:1c.7: Adding to iommu group 34
[    2.262492] pci 0000:00:1d.0: Adding to iommu group 35
[    2.262529] pci 0000:00:1e.0: Adding to iommu group 36
[    2.262654] pci 0000:00:1f.0: Adding to iommu group 37
[    2.262694] pci 0000:00:1f.2: Adding to iommu group 37
[    2.262735] pci 0000:00:1f.3: Adding to iommu group 37
[    2.262774] pci 0000:04:00.0: Adding to iommu group 38
[    2.262872] pci 0000:05:00.0: Adding to iommu group 39
[    2.262914] pci 0000:05:00.1: Adding to iommu group 39
[    2.262981] pci 0000:06:00.0: Adding to iommu group 40
[    2.263021] pci 0000:07:00.0: Adding to iommu group 41
[    2.263058] pci 0000:07:00.1: Adding to iommu group 42
[    2.263098] pci 0000:09:00.0: Adding to iommu group 43
[    2.263103] pci 0000:0a:00.0: Adding to iommu group 43
[    2.263172] pci 0000:7f:08.0: Adding to iommu group 44
[    2.263238] pci 0000:7f:09.0: Adding to iommu group 45
[    2.263394] pci 0000:7f:0a.0: Adding to iommu group 46
[    2.263437] pci 0000:7f:0a.1: Adding to iommu group 46
[    2.263479] pci 0000:7f:0a.2: Adding to iommu group 46
[    2.263523] pci 0000:7f:0a.3: Adding to iommu group 46
[    2.263617] pci 0000:7f:0b.0: Adding to iommu group 47
[    2.263662] pci 0000:7f:0b.3: Adding to iommu group 47
[    2.263877] pci 0000:7f:0c.0: Adding to iommu group 48
[    2.263920] pci 0000:7f:0c.1: Adding to iommu group 48
[    2.263967] pci 0000:7f:0c.2: Adding to iommu group 48
[    2.264010] pci 0000:7f:0c.3: Adding to iommu group 48
[    2.264053] pci 0000:7f:0c.4: Adding to iommu group 48
[    2.264099] pci 0000:7f:0c.5: Adding to iommu group 48
[    2.264364] pci 0000:7f:0d.0: Adding to iommu group 49
[    2.264410] pci 0000:7f:0d.1: Adding to iommu group 49
[    2.264454] pci 0000:7f:0d.2: Adding to iommu group 49
[    2.264500] pci 0000:7f:0d.3: Adding to iommu group 49
[    2.264545] pci 0000:7f:0d.4: Adding to iommu group 49
[    2.264589] pci 0000:7f:0d.5: Adding to iommu group 49
[    2.264685] pci 0000:7f:0e.0: Adding to iommu group 50
[    2.264731] pci 0000:7f:0e.1: Adding to iommu group 50
[    2.264770] pci 0000:7f:0f.0: Adding to iommu group 51
[    2.264807] pci 0000:7f:0f.1: Adding to iommu group 52
[    2.264845] pci 0000:7f:0f.2: Adding to iommu group 53
[    2.264882] pci 0000:7f:0f.3: Adding to iommu group 54
[    2.264927] pci 0000:7f:0f.4: Adding to iommu group 55
[    2.264965] pci 0000:7f:0f.5: Adding to iommu group 56
[    2.265004] pci 0000:7f:10.0: Adding to iommu group 57
[    2.265041] pci 0000:7f:10.1: Adding to iommu group 58
[    2.265080] pci 0000:7f:10.2: Adding to iommu group 59
[    2.265117] pci 0000:7f:10.3: Adding to iommu group 60
[    2.265154] pci 0000:7f:10.4: Adding to iommu group 61
[    2.265191] pci 0000:7f:10.5: Adding to iommu group 62
[    2.265232] pci 0000:7f:10.6: Adding to iommu group 63
[    2.265268] pci 0000:7f:10.7: Adding to iommu group 64
[    2.265423] pci 0000:7f:13.0: Adding to iommu group 65
[    2.265471] pci 0000:7f:13.1: Adding to iommu group 65
[    2.265522] pci 0000:7f:13.4: Adding to iommu group 65
[    2.265571] pci 0000:7f:13.5: Adding to iommu group 65
[    2.265698] pci 0000:7f:16.0: Adding to iommu group 66
[    2.265747] pci 0000:7f:16.1: Adding to iommu group 66
[    2.265796] pci 0000:7f:16.2: Adding to iommu group 66
[    2.265892] pci 0000:7f:1c.0: Adding to iommu group 67
[    2.265943] pci 0000:7f:1c.1: Adding to iommu group 67
[    2.265981] pci 0000:7f:1d.0: Adding to iommu group 68
[    2.266018] pci 0000:7f:1d.1: Adding to iommu group 69
[    2.266055] pci 0000:7f:1d.2: Adding to iommu group 70
[    2.266094] pci 0000:7f:1d.3: Adding to iommu group 71
[    2.266133] pci 0000:7f:1d.4: Adding to iommu group 72
[    2.266171] pci 0000:7f:1d.5: Adding to iommu group 73
[    2.266208] pci 0000:7f:1e.0: Adding to iommu group 74
[    2.266250] pci 0000:7f:1e.1: Adding to iommu group 75
[    2.266287] pci 0000:7f:1e.2: Adding to iommu group 76
[    2.266324] pci 0000:7f:1e.3: Adding to iommu group 77
[    2.266367] pci 0000:7f:1e.4: Adding to iommu group 78
[    2.266405] pci 0000:7f:1e.5: Adding to iommu group 79
[    2.266442] pci 0000:7f:1e.6: Adding to iommu group 80
[    2.266480] pci 0000:7f:1e.7: Adding to iommu group 81
[    2.266519] pci 0000:80:05.0: Adding to iommu group 82
[    2.266556] pci 0000:80:05.2: Adding to iommu group 83
[    2.266593] pci 0000:80:05.4: Adding to iommu group 84
[    2.266659] pci 0000:ff:08.0: Adding to iommu group 85
[    2.266727] pci 0000:ff:09.0: Adding to iommu group 86
[    2.266882] pci 0000:ff:0a.0: Adding to iommu group 87
[    2.266937] pci 0000:ff:0a.1: Adding to iommu group 87
[    2.266993] pci 0000:ff:0a.2: Adding to iommu group 87
[    2.267047] pci 0000:ff:0a.3: Adding to iommu group 87
[    2.267144] pci 0000:ff:0b.0: Adding to iommu group 88
[    2.267200] pci 0000:ff:0b.3: Adding to iommu group 88
[    2.267416] pci 0000:ff:0c.0: Adding to iommu group 89
[    2.267473] pci 0000:ff:0c.1: Adding to iommu group 89
[    2.267528] pci 0000:ff:0c.2: Adding to iommu group 89
[    2.267584] pci 0000:ff:0c.3: Adding to iommu group 89
[    2.267642] pci 0000:ff:0c.4: Adding to iommu group 89
[    2.267698] pci 0000:ff:0c.5: Adding to iommu group 89
[    2.267912] pci 0000:ff:0d.0: Adding to iommu group 90
[    2.267969] pci 0000:ff:0d.1: Adding to iommu group 90
[    2.268029] pci 0000:ff:0d.2: Adding to iommu group 90
[    2.268085] pci 0000:ff:0d.3: Adding to iommu group 90
[    2.268142] pci 0000:ff:0d.4: Adding to iommu group 90
[    2.268201] pci 0000:ff:0d.5: Adding to iommu group 90
[    2.268296] pci 0000:ff:0e.0: Adding to iommu group 91
[    2.268364] pci 0000:ff:0e.1: Adding to iommu group 91
[    2.268402] pci 0000:ff:0f.0: Adding to iommu group 92
[    2.268442] pci 0000:ff:0f.1: Adding to iommu group 93
[    2.268479] pci 0000:ff:0f.2: Adding to iommu group 94
[    2.268516] pci 0000:ff:0f.3: Adding to iommu group 95
[    2.268553] pci 0000:ff:0f.4: Adding to iommu group 96
[    2.268593] pci 0000:ff:0f.5: Adding to iommu group 97
[    2.268650] pci 0000:ff:10.0: Adding to iommu group 98
[    2.268711] pci 0000:ff:10.1: Adding to iommu group 99
[    2.268749] pci 0000:ff:10.2: Adding to iommu group 100
[    2.268789] pci 0000:ff:10.3: Adding to iommu group 101
[    2.268826] pci 0000:ff:10.4: Adding to iommu group 102
[    2.268863] pci 0000:ff:10.5: Adding to iommu group 103
[    2.268899] pci 0000:ff:10.6: Adding to iommu group 104
[    2.268938] pci 0000:ff:10.7: Adding to iommu group 105
[    2.269093] pci 0000:ff:13.0: Adding to iommu group 106
[    2.269153] pci 0000:ff:13.1: Adding to iommu group 106
[    2.269214] pci 0000:ff:13.4: Adding to iommu group 106
[    2.269274] pci 0000:ff:13.5: Adding to iommu group 106
[    2.269403] pci 0000:ff:16.0: Adding to iommu group 107
[    2.269465] pci 0000:ff:16.1: Adding to iommu group 107
[    2.269525] pci 0000:ff:16.2: Adding to iommu group 107
[    2.269620] pci 0000:ff:1c.0: Adding to iommu group 108
[    2.269682] pci 0000:ff:1c.1: Adding to iommu group 108
[    2.269720] pci 0000:ff:1d.0: Adding to iommu group 109
[    2.269757] pci 0000:ff:1d.1: Adding to iommu group 110
[    2.269795] pci 0000:ff:1d.2: Adding to iommu group 111
[    2.269832] pci 0000:ff:1d.3: Adding to iommu group 112
[    2.269872] pci 0000:ff:1d.4: Adding to iommu group 113
[    2.269911] pci 0000:ff:1d.5: Adding to iommu group 114
[    2.269948] pci 0000:ff:1e.0: Adding to iommu group 115
[    2.269985] pci 0000:ff:1e.1: Adding to iommu group 116
[    2.270023] pci 0000:ff:1e.2: Adding to iommu group 117
[    2.270060] pci 0000:ff:1e.3: Adding to iommu group 118
[    2.270097] pci 0000:ff:1e.4: Adding to iommu group 119
[    2.270136] pci 0000:ff:1e.5: Adding to iommu group 120
[    2.270173] pci 0000:ff:1e.6: Adding to iommu group 121
[    2.270209] pci 0000:ff:1e.7: Adding to iommu group 122
[    2.270310] DMAR: Intel(R) Virtualization Technology for Directed I/O
[    2.270313] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    2.270314] software IO TLB: mapped [mem 0x0000000078b60000-0x000000007cb60000] (64MB)
[    2.274312] Initialise system trusted keyrings
[    2.274329] Key type blacklist registered
[    2.274426] workingset: timestamp_bits=36 max_order=26 bucket_order=0
[    2.274439] zbud: loaded
[    2.274912] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    2.275033] fuse: init (API version 7.40)
[    2.275281] integrity: Platform Keyring initialized
[    2.275287] integrity: Machine keyring initialized
[    2.289728] Key type asymmetric registered
[    2.289732] Asymmetric key parser 'x509' registered
[    2.289785] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[    2.289875] io scheduler mq-deadline registered
[    2.292945] pcieport 0000:00:01.0: PME: Signaling with IRQ 25
[    2.293245] pcieport 0000:00:01.1: PME: Signaling with IRQ 26
[    2.293536] pcieport 0000:00:02.0: PME: Signaling with IRQ 28
[    2.293816] pcieport 0000:00:02.2: PME: Signaling with IRQ 29
[    2.294120] pcieport 0000:00:03.0: PME: Signaling with IRQ 31
[    2.294366] pcieport 0000:00:11.0: PME: Signaling with IRQ 32
[    2.294594] pcieport 0000:00:1c.0: PME: Signaling with IRQ 33
[    2.294799] pcieport 0000:00:1c.7: PME: Signaling with IRQ 34
[    2.295293] pcieport 0000:80:00.0: PME: Signaling with IRQ 36
[    2.295662] pcieport 0000:80:01.0: PME: Signaling with IRQ 38
[    2.296016] pcieport 0000:80:02.0: PME: Signaling with IRQ 40
[    2.296297] pcieport 0000:80:03.0: PME: Signaling with IRQ 42
[    2.296589] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    2.296819] Monitor-Mwait will be used to enter C-1 state
[    2.296825] Monitor-Mwait will be used to enter C-2 state
[    2.296830] ACPI: \_SB_.SCK0.C000: Found 2 idle states
[    2.299563] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    2.299633] ACPI: button: Power Button [PWRB]
[    2.299683] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    2.299729] ACPI: button: Power Button [PWRF]
[    2.359055] ERST: Error Record Serialization Table (ERST) support is initialized.
[    2.359163] pstore: Using crash dump compression: deflate
[    2.359165] pstore: Registered erst as persistent store backend
[    2.359410] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    2.379977] 00:06: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    2.401233] 00:07: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
[    2.404563] Linux agpgart interface v0.103
[    2.413487] loop: module loaded
[    2.413961] tun: Universal TUN/TAP device driver, 1.6
[    2.414038] PPP generic driver version 2.4.2
[    2.414142] i8042: PNP: PS/2 Controller [PNP0f03:PS2M] at 0x60,0x64 irq 12
[    2.414146] i8042: PNP: PS/2 controller doesn't have KBD irq; using default 1
[    2.417126] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.417135] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.417320] mousedev: PS/2 mouse device common for all mice
[    2.417439] rtc_cmos 00:03: RTC can wake from S4
[    2.417702] rtc_cmos 00:03: registered as rtc0
[    2.417737] rtc_cmos 00:03: setting system clock to 2024-05-31T09:22:09 UTC (1717147329)
[    2.417774] rtc_cmos 00:03: alarms up to one month, y3k, 114 bytes nvram
[    2.417786] i2c_dev: i2c /dev entries driver
[    2.419736] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    2.419750] device-mapper: uevent: version 1.0.3
[    2.419856] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
[    2.419882] platform eisa.0: Probing EISA bus 0
[    2.419885] platform eisa.0: EISA: Cannot allocate resource for mainboard
[    2.419888] platform eisa.0: Cannot allocate resource for EISA slot 1
[    2.419889] platform eisa.0: Cannot allocate resource for EISA slot 2
[    2.419891] platform eisa.0: Cannot allocate resource for EISA slot 3
[    2.419893] platform eisa.0: Cannot allocate resource for EISA slot 4
[    2.419895] platform eisa.0: Cannot allocate resource for EISA slot 5
[    2.419897] platform eisa.0: Cannot allocate resource for EISA slot 6
[    2.419899] platform eisa.0: Cannot allocate resource for EISA slot 7
[    2.419900] platform eisa.0: Cannot allocate resource for EISA slot 8
[    2.419902] platform eisa.0: EISA: Detected 0 cards
[    2.419912] intel_pstate: Intel P-state driver initializing
[    2.424543] ledtrig-cpu: registered to indicate activity on CPUs
[    2.424798] drop_monitor: Initializing network drop monitor service
[    2.424983] NET: Registered PF_INET6 protocol family
[    3.299495] tsc: Refined TSC clocksource calibration: 2699.998 MHz
[    3.299549] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x26eb3cc21a9, max_idle_ns: 440795299783 ns
[    3.299913] clocksource: Switched to clocksource tsc
[    6.180277] Freeing initrd memory: 435356K
[    6.188905] Segment Routing with IPv6
[    6.188950] In-situ OAM (IOAM) with IPv6
[    6.189028] NET: Registered PF_PACKET protocol family
[    6.189067] Bridge firewalling registered
[    6.189240] Key type dns_resolver registered
[    6.194883] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    6.197225] microcode: Current revision: 0x00000424
[    6.199620] IPI shorthand broadcast: enabled
[    6.201123] sched_clock: Marking stable (6192092421, 7465447)->(6367127576, -167569708)
[    6.201396] Timer migration: 3 hierarchy levels; 8 children per group; 2 crossnode level
[    6.203105] registered taskstats version 1
[    6.208101] Loading compiled-in X.509 certificates
[    6.208785] Loaded X.509 cert 'Build time autogenerated kernel key: f234ee727fe8bbe9eabdd7ac61f3a5d1ca9f775e'
[    6.210685] Key type .fscrypt registered
[    6.210688] Key type fscrypt-provisioning registered
[    6.228867] Key type encrypted registered
[    6.228873] AppArmor: AppArmor sha256 policy hashing enabled
[    6.228887] ima: No TPM chip found, activating TPM-bypass!
[    6.228891] Loading compiled-in module X.509 certificates
[    6.229484] Loaded X.509 cert 'Build time autogenerated kernel key: f234ee727fe8bbe9eabdd7ac61f3a5d1ca9f775e'
[    6.229487] ima: Allocated hash algorithm: sha1
[    6.229500] ima: No architecture policies found
[    6.229513] evm: Initialising EVM extended attributes:
[    6.229515] evm: security.selinux
[    6.229516] evm: security.SMACK64
[    6.229518] evm: security.SMACK64EXEC
[    6.229519] evm: security.SMACK64TRANSMUTE
[    6.229520] evm: security.SMACK64MMAP
[    6.229520] evm: security.apparmor
[    6.229522] evm: security.ima
[    6.229522] evm: security.capability
[    6.229523] evm: HMAC attrs: 0x1
[    6.230010] PM:   Magic number: 8:101:375
[    6.230020] machinecheck machinecheck27: hash matches
[    6.235036] RAS: Correctable Errors collector initialized.
[    6.247863] clk: Disabling unused clocks
[    6.247868] PM: genpd: Disabling unused power domains
[    6.249797] Freeing unused decrypted memory: 2028K
[    6.251950] Freeing unused kernel image (initmem) memory: 4768K
[    6.252052] Write protecting the kernel read-only data: 34816k
[    6.252891] Freeing unused kernel image (rodata/data gap) memory: 1160K
[    6.295140] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    6.295144] x86/mm: Checking user space page tables
[    6.335248] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    6.335255] Run /init as init process
[    6.335257]   with arguments:
[    6.335258]     /init
[    6.335259]   with environment:
[    6.335260]     HOME=/
[    6.335261]     TERM=linux
[    6.335262]     BOOT_IMAGE=/boot/vmlinuz-6.9.3-dirty
[    6.482580] dca service started, version 1.12.1
[    6.487878] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[    6.488524] i2c i2c-0: More than 8 memory slots on a single bus, contact i801 maintainer to add missing mux config
[    6.489352] ahci 0000:00:1f.2: version 3.0
[    6.489726] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    6.489735] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    6.489748] ehci-pci 0000:00:1a.0: debug port 2
[    6.493660] ehci-pci 0000:00:1a.0: irq 17, io mem 0xc6127000
[    6.494972] Adaptec aacraid driver 1.2.1[50983]-custom
[    6.495323] aacraid: Comm Interface enabled
[    6.499658] ahci 0000:00:1f.2: AHCI vers 0001.0300, 32 command slots, 6 Gbps, SATA mode
[    6.499663] ahci 0000:00:1f.2: 6/6 ports implemented (port mask 0x3f)
[    6.499666] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst 
[    6.507485] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    6.507563] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.09
[    6.507566] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.507568] usb usb1: Product: EHCI Host Controller
[    6.507570] usb usb1: Manufacturer: Linux 6.9.3-dirty ehci_hcd
[    6.507572] usb usb1: SerialNumber: 0000:00:1a.0
[    6.507731] hub 1-0:1.0: USB hub found
[    6.507753] hub 1-0:1.0: 2 ports detected
[    6.507998] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    6.508005] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    6.508017] ehci-pci 0000:00:1d.0: debug port 2
[    6.511935] ehci-pci 0000:00:1d.0: irq 23, io mem 0xc6126000
[    6.512711] igb: Intel(R) Gigabit Ethernet Network Driver
[    6.512714] igb: Copyright (c) 2007-2014 Intel Corporation.
[    6.534981] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    6.535047] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.09
[    6.535050] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    6.535051] usb usb2: Product: EHCI Host Controller
[    6.535053] usb usb2: Manufacturer: Linux 6.9.3-dirty ehci_hcd
[    6.535054] usb usb2: SerialNumber: 0000:00:1d.0
[    6.535215] hub 2-0:1.0: USB hub found
[    6.535224] hub 2-0:1.0: 2 ports detected
[    6.554583] isci: Intel(R) C600 SAS Controller Driver - version 1.2.0
[    6.554612] isci 0000:06:00.0: driver configured for rev: 6 silicon
[    6.554626] isci 0000:06:00.0: OEM parameter table found in OROM
[    6.554629] isci 0000:06:00.0: OEM SAS parameters (version: 1.1) loaded (platform)
[    6.554932] isci 0000:06:00.0: SCU controller 0: phy 3-0 cables: {short, short, short, short}
[    6.557415] scsi host1: isci
[    6.567999] scsi host2: ahci
[    6.568181] scsi host3: ahci
[    6.568354] scsi host4: ahci
[    6.568537] scsi host5: ahci
[    6.568689] scsi host6: ahci
[    6.568858] scsi host7: ahci
[    6.568913] ata1: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125100 irq 43 lpm-pol 0
[    6.568916] ata2: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125180 irq 43 lpm-pol 0
[    6.568918] ata3: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125200 irq 43 lpm-pol 0
[    6.568920] ata4: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125280 irq 43 lpm-pol 0
[    6.568922] ata5: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125300 irq 43 lpm-pol 0
[    6.568924] ata6: SATA max UDMA/133 abar m2048@0xc6125000 port 0xc6125380 irq 43 lpm-pol 0
[    6.582582] igb 0000:07:00.0: added PHC on eth0
[    6.582604] igb 0000:07:00.0: Intel(R) Gigabit Ethernet Network Connection
[    6.582606] igb 0000:07:00.0: eth0: (PCIe:5.0Gb/s:Width x4) e0:3f:49:e7:2a:31
[    6.582681] igb 0000:07:00.0: eth0: PBA No: 104900-000
[    6.582683] igb 0000:07:00.0: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s)
[    6.638623] igb 0000:07:00.1: added PHC on eth1
[    6.638646] igb 0000:07:00.1: Intel(R) Gigabit Ethernet Network Connection
[    6.638647] igb 0000:07:00.1: eth1: (PCIe:5.0Gb/s:Width x4) e0:3f:49:e7:2a:32
[    6.638722] igb 0000:07:00.1: eth1: PBA No: 104900-000
[    6.638724] igb 0000:07:00.1: Using MSI-X interrupts. 8 rx queue(s), 8 tx queue(s)
[    6.703878] AAC0: kernel 5.2-0[18948] Apr 13 2012
[    6.703883] AAC0: monitor 5.2-0[18948]
[    6.703884] AAC0: bios 5.2-0[18948]
[    6.703886] AAC0: serial 3E4313486E1
[    6.703887] AAC0: Non-DASD support enabled.
[    6.703888] AAC0: 64bit support enabled.
[    6.703890] aacraid 0000:04:00.0: 64 Bit DAC enabled
[    6.718538] scsi host0: aacraid
[    6.719040] scsi 0:0:0:0: Direct-Access     Adaptec  linus_raid1_1tb  V1.0 PQ: 0 ANSI: 2
[    6.719169] scsi 0:0:1:0: Direct-Access     Adaptec  linus_raid5_5tb  V1.0 PQ: 0 ANSI: 2
[    6.730640] scsi 0:1:0:0: Direct-Access              Samsung SSD 860  RVM0 PQ: 1 ANSI: 5
[    6.734117] scsi 0:1:1:0: Direct-Access              Samsung SSD 860  RVM0 PQ: 1 ANSI: 5
[    6.737778] scsi 0:1:2:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    6.741455] scsi 0:1:3:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    6.745186] scsi 0:1:4:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    6.748948] scsi 0:1:5:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    6.752655] scsi 0:1:6:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    6.756368] scsi 0:1:7:0: Direct-Access     Hitachi  HUA722010CLA330  JP4O PQ: 1 ANSI: 5
[    6.771491] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    6.791493] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    6.839030] scsi 0:3:0:0: Enclosure         ADAPTEC  Virtual SGPIO  0 0001 PQ: 0 ANSI: 5
[    6.882299] ata5: SATA link down (SStatus 0 SControl 300)
[    6.882342] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    6.882485] ata4: SATA link down (SStatus 0 SControl 300)
[    6.882505] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    6.882524] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    6.882542] ata6: SATA link down (SStatus 0 SControl 300)
[    6.882622] ata2.00: ATA-9: M4-CT256M4SSD2, 0309, max UDMA/100
[    6.882802] ata2.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    6.882820] ata1.00: ATA-9: M4-CT256M4SSD2, 0309, max UDMA/100
[    6.883026] ata1.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    6.883158] ata2.00: configured for UDMA/100
[    6.883476] ata1.00: configured for UDMA/100
[    6.884624] ata3.00: ATAPI: ATAPI   iHAS124   W, HL0F, max UDMA/100
[    6.886589] ata3.00: configured for UDMA/100
[    6.927831] usb 1-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[    6.927836] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    6.928134] hub 1-1:1.0: USB hub found
[    6.928200] hub 1-1:1.0: 6 ports detected
[    6.947952] usb 2-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[    6.947956] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    6.948242] hub 2-1:1.0: USB hub found
[    6.948325] hub 2-1:1.0: 8 ports detected
[    6.979506] scsi 0:3:0:0: scsi_get_vpd_size: long VPD page 0 length: 516 bytes
[    6.987624] scsi: waiting for bus probes to complete ...
[    7.215539] usb 1-1.3: new high-speed USB device number 3 using ehci-pci
[    7.235534] usb 2-1.1: new low-speed USB device number 3 using ehci-pci
[    7.349908] usb 2-1.1: New USB device found, idVendor=046d, idProduct=c31c, bcdDevice=64.02
[    7.349912] usb 2-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    7.349914] usb 2-1.1: Product: USB Keyboard
[    7.349915] usb 2-1.1: Manufacturer: Logitech
[    7.364334] hid: raw HID events driver (C) Jiri Kosina
[    7.411220] input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input4
[    7.512953] usb 1-1.3: New USB device found, idVendor=046b, idProduct=ff01, bcdDevice= 1.00
[    7.512958] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    7.512960] usb 1-1.3: Product: Virtual Hub
[    7.512961] usb 1-1.3: Manufacturer: American Megatrends Inc.
[    7.512962] usb 1-1.3: SerialNumber: serial
[    7.513466] hub 1-1.3:1.0: USB hub found
[    7.513577] hub 1-1.3:1.0: 5 ports detected
[    7.851541] usb 1-1.3.1: new low-speed USB device number 4 using ehci-pci
[    8.024703] usb 1-1.3.1: New USB device found, idVendor=046b, idProduct=ff10, bcdDevice= 1.00
[    8.024707] usb 1-1.3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    8.024709] usb 1-1.3.1: Product: Virtual Keyboard and Mouse
[    8.024711] usb 1-1.3.1: Manufacturer: American Megatrends Inc.
[    8.080318] usbcore: registered new interface driver usbhid
[    8.080322] usbhid: USB HID core driver
[    8.155536] usb 1-1.3.2: new high-speed USB device number 5 using ehci-pci
[    8.328452] usb 1-1.3.2: New USB device found, idVendor=046b, idProduct=ff20, bcdDevice= 1.00
[    8.328457] usb 1-1.3.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    8.328458] usb 1-1.3.2: Product: Virtual Cdrom Device
[    8.328460] usb 1-1.3.2: Manufacturer: American Megatrends Inc.
[    8.328461] usb 1-1.3.2: SerialNumber: AAAABBBBCCCC1
[    8.337593] usb-storage 1-1.3.2:1.0: USB Mass Storage device detected
[    8.337846] scsi host8: usb-storage 1-1.3.2:1.0
[    8.337971] usbcore: registered new interface driver usb-storage
[    8.459554] usb 1-1.3.3: new high-speed USB device number 6 using ehci-pci
[    8.632452] usb 1-1.3.3: New USB device found, idVendor=046b, idProduct=ff40, bcdDevice= 1.00
[    8.632456] usb 1-1.3.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    8.632458] usb 1-1.3.3: Product: Virtual Floppy Device
[    8.632459] usb 1-1.3.3: Manufacturer: American Megatrends Inc.
[    8.632461] usb 1-1.3.3: SerialNumber: AAAABBBBCCCC2
[    8.632843] usb-storage 1-1.3.3:1.0: USB Mass Storage device detected
[    8.633118] usb-storage 1-1.3.3:1.0: Quirks match for vid 046b pid ff40: 200
[    8.633197] scsi host9: usb-storage 1-1.3.3:1.0
[    8.637093] usbcore: registered new interface driver uas
[    8.763545] usb 1-1.3.4: new high-speed USB device number 7 using ehci-pci
[    8.936452] usb 1-1.3.4: New USB device found, idVendor=046b, idProduct=ff31, bcdDevice= 1.00
[    8.936456] usb 1-1.3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    8.936458] usb 1-1.3.4: Product: Virtual HardDisk Device
[    8.936459] usb 1-1.3.4: Manufacturer: American Megatrends Inc.
[    8.936460] usb 1-1.3.4: SerialNumber: AAAABBBBCCCC3
[    8.936848] usb-storage 1-1.3.4:1.0: USB Mass Storage device detected
[    8.937207] scsi host10: usb-storage 1-1.3.4:1.0
[    9.348376] scsi 8:0:0:0: CD-ROM            AMI      Virtual CDROM0   1.00 PQ: 0 ANSI: 0 CCS
[    9.636250] scsi 9:0:0:0: Direct-Access     AMI      Virtual Floppy0  1.00 PQ: 0 ANSI: 0 CCS
[    9.956164] scsi 10:0:0:0: Direct-Access     AMI      Virtual HDISK0   1.00 PQ: 0 ANSI: 0 CCS
[   36.248444] scsi 0:3:1:0: Enclosure         ADAPTEC  Virtual SGPIO  1 0001 PQ: 0 ANSI: 5
[   65.471903] sd 0:0:0:0: Attached scsi generic sg0 type 0
[   65.472027] scsi 0:0:1:0: Attached scsi generic sg1 type 0
[   65.472107] sd 0:0:0:0: [sda] 1998565376 512-byte logical blocks: (1.02 TB/953 GiB)
[   65.472136] sd 0:0:0:0: [sda] Write Protect is off
[   65.472142] sd 0:0:0:0: [sda] Mode Sense: 12 00 10 08
[   65.472187] scsi 0:1:0:0: Attached scsi generic sg2 type 0
[   65.472221] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, supports DPO and FUA
[   65.472290] scsi 0:1:1:0: Attached scsi generic sg3 type 0
[   65.472375] sd 0:0:1:0: [sdb] Very big device. Trying to use READ CAPACITY(16).
[   65.472401] sd 0:0:1:0: [sdb] 9762222080 512-byte logical blocks: (5.00 TB/4.54 TiB)
[   65.472414] sd 0:0:1:0: [sdb] Write Protect is off
[   65.472417] sd 0:0:1:0: [sdb] Mode Sense: 12 00 10 08
[   65.472439] sd 0:0:1:0: [sdb] Write cache: disabled, read cache: enabled, supports DPO and FUA
[   65.472455] scsi 0:1:2:0: Attached scsi generic sg4 type 0
[   65.472568] scsi 0:1:3:0: Attached scsi generic sg5 type 0
[   65.472692] scsi 0:1:4:0: Attached scsi generic sg6 type 0
[   65.472802] scsi 0:1:5:0: Attached scsi generic sg7 type 0
[   65.472896] scsi 0:1:6:0: Attached scsi generic sg8 type 0
[   65.473002] scsi 0:1:7:0: Attached scsi generic sg9 type 0
[   65.473109] sd 0:0:1:0: [sdb] Very big device. Trying to use READ CAPACITY(16).
[   65.473121] scsi 0:3:0:0: Attached scsi generic sg10 type 13
[   65.473220] scsi 0:3:1:0: Attached scsi generic sg11 type 13
[   65.473324] sd 0:0:0:0: [sda] Attached SCSI removable disk
[   65.473392] scsi 2:0:0:0: Direct-Access     ATA      M4-CT256M4SSD2   0309 PQ: 0 ANSI: 5
[   65.473436] sd 0:0:1:0: [sdb] Attached SCSI removable disk
[   65.473767] sd 2:0:0:0: Attached scsi generic sg12 type 0
[   65.473824] scsi: waiting for bus probes to complete ...
[   65.473847] sd 2:0:0:0: [sdc] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[   65.473863] sd 2:0:0:0: [sdc] Write Protect is off
[   65.473874] sd 2:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[   65.473897] sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   65.473936] sd 2:0:0:0: [sdc] Preferred minimum I/O size 512 bytes
[   65.474864]  sdc: sdc1 sdc2 < sdc5 >
[   65.475020] sd 2:0:0:0: [sdc] Attached SCSI removable disk
[   65.476283] sr 8:0:0:0: [sr0] scsi-1 drive
[   65.476287] cdrom: Uniform CD-ROM driver Revision: 3.20
[   65.477359] sr 8:0:0:0: Attached scsi CD-ROM sr0
[   65.477501] sr 8:0:0:0: Attached scsi generic sg13 type 5
[   65.477670] sd 9:0:0:0: Attached scsi generic sg14 type 0
[   65.477838] sd 10:0:0:0: Attached scsi generic sg15 type 0
[   65.477988] scsi 3:0:0:0: Direct-Access     ATA      M4-CT256M4SSD2   0309 PQ: 0 ANSI: 5
[   65.478354] sd 3:0:0:0: Attached scsi generic sg16 type 0
[   65.478516] sd 9:0:0:0: [sdd] Media removed, stopped polling
[   65.478529] sd 3:0:0:0: [sdf] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[   65.478550] sd 3:0:0:0: [sdf] Write Protect is off
[   65.478554] sd 3:0:0:0: [sdf] Mode Sense: 00 3a 00 00
[   65.478578] sd 3:0:0:0: [sdf] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   65.478617] sd 3:0:0:0: [sdf] Preferred minimum I/O size 512 bytes
[   65.478630] sd 10:0:0:0: [sde] Media removed, stopped polling
[   65.478986] sd 9:0:0:0: [sdd] Attached SCSI removable disk
[   65.479112] scsi 4:0:0:0: CD-ROM            ATAPI    iHAS124   W      HL0F PQ: 0 ANSI: 5
[   65.479155] sd 10:0:0:0: [sde] Attached SCSI removable disk
[   65.480590]  sdf: sdf1
[   65.480693] sd 3:0:0:0: [sdf] Attached SCSI removable disk
[   65.602374] sr 4:0:0:0: [sr1] scsi3-mmc drive: 188x/125x writer dvd-ram cd/rw xa/form2 cdda tray
[   65.649216] sr 4:0:0:0: Attached scsi CD-ROM sr1
[   65.649348] sr 4:0:0:0: Attached scsi generic sg17 type 5
[   65.650776] igb 0000:07:00.1 enp7s0f1: renamed from eth1
[   65.651785] igb 0000:07:00.0 enp7s0f0: renamed from eth0
[   65.652911] usbcore: registered new interface driver usbmouse
[   65.652916] usbcore: registered new interface driver usbkbd
[   65.657313] input: Logitech USB Keyboard as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.0/0003:046D:C31C.0001/input/input5
[   65.658363] ses 0:3:0:0: Attached Enclosure device
[   65.658379] ses 0:3:1:0: Attached Enclosure device
[   65.715683] hid-generic 0003:046D:C31C.0001: input,hidraw0: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-0000:00:1d.0-1.1/input0
[   65.715924] input: Logitech USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.1/0003:046D:C31C.0002/input/input6
[   65.775576] input: Logitech USB Keyboard System Control as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.1/0003:046D:C31C.0002/input/input7
[   65.775677] hid-generic 0003:046D:C31C.0002: input,hiddev0,hidraw1: USB HID v1.10 Device [Logitech USB Keyboard] on usb-0000:00:1d.0-1.1/input1
[   65.775906] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3.1/1-1.3.1:1.0/0003:046B:FF10.0003/input/input8
[   65.776009] hid-generic 0003:046B:FF10.0003: input,hidraw2: USB HID v1.10 Keyboard [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.0-1.3.1/input0
[   65.776144] input: American Megatrends Inc. Virtual Keyboard and Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3.1/1-1.3.1:1.1/0003:046B:FF10.0004/input/input9
[   65.776255] hid-generic 0003:046B:FF10.0004: input,hidraw3: USB HID v1.10 Mouse [American Megatrends Inc. Virtual Keyboard and Mouse] on usb-0000:00:1a.0-1.3.1/input1
[   76.629924] device-mapper: thin: Data device (dm-1) discard unsupported: Disabling discard passdown.
[   79.697927] device-mapper: thin: Data device (dm-3) discard unsupported: Disabling discard passdown.
[  130.519479] raid6: sse2x4   gen() 13270 MB/s
[  130.587483] raid6: sse2x2   gen()  8730 MB/s
[  130.655487] raid6: sse2x1   gen()  8722 MB/s
[  130.655489] raid6: using algorithm sse2x4 gen() 13270 MB/s
[  130.723481] raid6: .... xor() 7631 MB/s, rmw enabled
[  130.723483] raid6: using ssse3x2 recovery algorithm
[  130.725442] xor: automatically using best checksumming function   avx       
[  130.943954] Btrfs loaded, zoned=yes, fsverity=yes
[  131.415183] PM: Image not found (code -22)
[  131.452221] EXT4-fs (sdc1): mounted filesystem 3842ebdd-e37f-4e4e-afd4-d7eb79b41984 ro with ordered data mode. Quota mode: none.
[  131.724358] systemd[1]: Inserted module 'autofs4'
[  131.754492] systemd[1]: systemd 252.22-1~deb12u1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[  131.754500] systemd[1]: Detected architecture x86-64.
[  131.757184] systemd[1]: Hostname set to <linus.localdomain>.
[  131.980749] systemd[1]: Queued start job for default target graphical.target.
[  132.013376] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[  132.013891] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[  132.014405] systemd[1]: Created slice system-postfix.slice - Slice /system/postfix.
[  132.014852] systemd[1]: Created slice user.slice - User and Session Slice.
[  132.014928] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[  132.015000] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[  132.015166] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[  132.015191] systemd[1]: Expecting device dev-disk-by\x2duuid-e5873103\x2d5ea5\x2d4dc0\x2da645\x2db8c511b219a8.device - /dev/disk/by-uuid/e5873103-5ea5-4dc0-a645-b8c511b219a8...
[  132.015201] systemd[1]: Expecting device dev-disk-by\x2duuid-fcf5433d\x2d28bd\x2d4d22\x2db3ba\x2ddd7262ae33a9.device - /dev/disk/by-uuid/fcf5433d-28bd-4d22-b3ba-dd7262ae33a9...
[  132.015215] systemd[1]: Reached target ceph-fuse.target - ceph target allowing to start/stop all ceph-fuse@.service instances at once.
[  132.015229] systemd[1]: Reached target ceph.target - ceph target allowing to start/stop all ceph*@.service instances at once.
[  132.015241] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
[  132.015260] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[  132.015291] systemd[1]: Reached target paths.target - Path Units.
[  132.015320] systemd[1]: Reached target slices.target - Slice Units.
[  132.015347] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[  132.015427] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[  132.015780] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[  132.019636] systemd[1]: Listening on rpcbind.socket - RPCbind Server Activation Socket.
[  132.020324] systemd[1]: Listening on syslog.socket - Syslog Socket.
[  132.020443] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[  132.020525] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[  132.020830] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
[  132.020948] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[  132.021086] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[  132.021419] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[  132.021521] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[  132.022590] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[  132.023703] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[  132.025033] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[  132.026171] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[  132.026251] systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
[  132.027659] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[  132.028868] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[  132.030311] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[  132.031432] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[  132.032522] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[  132.033566] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[  132.035044] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[  132.036178] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[  132.037280] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
[  132.037532] systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).
[  132.039796] systemd[1]: Starting systemd-journald.service - Journal Service...
[  132.042386] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[  132.043729] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[  132.045111] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[  132.046958] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[  132.047071] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[  132.047206] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[  132.047313] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[  132.047597] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[  132.048042] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[  132.048202] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[  132.048526] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[  132.048699] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[  132.049049] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[  132.049239] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[  132.049521] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[  132.049684] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[  132.049973] systemd[1]: modprobe@loop.service: Deactivated successfully.
[  132.050140] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.
[  132.051902] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[  132.053080] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[  132.053186] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
[  132.054666] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[  132.055731] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[  132.087408] EXT4-fs (sdc1): re-mounted 3842ebdd-e37f-4e4e-afd4-d7eb79b41984 r/w. Quota mode: none.
[  132.088336] VFIO - User Level meta-driver version: 0.3
[  132.088605] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[  132.088760] systemd[1]: systemd-firstboot.service - First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
[  132.088806] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[  132.090132] systemd[1]: Starting systemd-random-seed.service - Load/Save Random Seed...
[  132.091325] systemd[1]: Starting systemd-sysusers.service - Create System Users...
[  132.113140] systemd[1]: Finished systemd-random-seed.service - Load/Save Random Seed.
[  132.113275] systemd[1]: first-boot-complete.target - First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
[  132.115004] systemd[1]: Started dm-event.service - Device-mapper event daemon.
[  132.115522] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[  132.122848] vfio-pci 0000:05:00.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=none
[  132.123041] vfio_pci: add [10de:1201[ffffffff:ffffffff]] class 0x000000/00000000
[  132.140596] systemd[1]: Finished systemd-sysusers.service - Create System Users.
[  132.141846] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[  132.152508] ACPI: bus type drm_connector registered
[  132.154775] systemd[1]: modprobe@drm.service: Deactivated successfully.
[  132.154956] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[  132.165224] systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
[  132.166685] systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
[  132.171428] vfio_pci: add [10de:0e0c[ffffffff:ffffffff]] class 0x000000/00000000
[  132.185695] systemd[1]: Started systemd-journald.service - Journal Service.
[  132.193485] systemd-journald[837]: Received client request to flush runtime journal.
[  132.329443] IPMI message handler: version 39.2
[  132.340936] ipmi device interface
[  132.345862] ioatdma: Intel(R) QuickData Technology Driver 5.00
[  132.351378] input: PC Speaker as /devices/platform/pcspkr/input/input10
[  132.368462] ipmi_si: IPMI System Interface driver
[  132.368506] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
[  132.368510] ipmi_platform: ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
[  132.368512] ipmi_si: Adding SMBIOS-specified kcs state machine
[  132.368654] ipmi_si IPI0001:00: ipmi_platform: probing via ACPI
[  132.368800] ipmi_si IPI0001:00: ipmi_platform: [io  0x0ca2] regsize 1 spacing 1 irq 0
[  132.369068] ipmi_si dmi-ipmi-si.0: Removing SMBIOS-specified kcs state machine in favor of ACPI
[  132.369071] ipmi_si: Adding ACPI-specified kcs state machine
[  132.369182] ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca2, slave address 0x20, irq 0
[  132.375563] igb 0000:07:00.0: DCA enabled
[  132.375594] igb 0000:07:00.1: DCA enabled
[  132.390172] mei_me 0000:00:16.0: Device doesn't have valid ME Interface
[  132.447529] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
[  132.447538] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[  132.447540] RAPL PMU: hw unit of domain package 2^-16 Joules
[  132.447542] RAPL PMU: hw unit of domain dram 2^-16 Joules
[  132.482088] ast 0000:0a:00.0: vgaarb: deactivate vga console
[  132.483565] Console: switching to colour dummy device 80x25
[  132.483778] ast 0000:0a:00.0: Using P2A bridge for configuration
[  132.483783] ast 0000:0a:00.0: AST 2300 detected
[  132.483868] ast 0000:0a:00.0: [drm] Using analog VGA
[  132.483878] ast 0000:0a:00.0: [drm] dram MCLK=408 Mhz type=1 bus_width=16
[  132.489482] [drm] Initialized ast 0.1.0 20120228 for 0000:0a:00.0 on minor 0
[  132.489517] cryptd: max_cpu_qlen set to 1000
[  132.506964] AVX version of gcm_enc/dec engaged.
[  132.507072] AES CTR mode by8 optimization enabled
[  132.638673] fbcon: astdrmfb (fb0) is primary device
[  132.639504] snd_hda_intel 0000:00:1b.0: no codecs found!
[  132.691821] Console: switching to colour frame buffer device 210x65
[  132.774557] ast 0000:0a:00.0: [drm] fb0: astdrmfb frame buffer device
[  132.883447] ipmi_si IPI0001:00: IPMI message handler: Found new BMC (man_id: 0x000a3f, prod_id: 0x0c63, dev_id: 0x20)
[  133.042010] Adding 31307772k swap on /dev/sdc5.  Priority:-2 extents:1 across:31307772k SS
[  133.062624] EXT4-fs (sdf1): mounted filesystem fcf5433d-28bd-4d22-b3ba-dd7262ae33a9 r/w with ordered data mode. Quota mode: none.
[  133.090827] ipmi_si IPI0001:00: IPMI kcs interface initialized
[  133.179422] ipmi_ssif: IPMI SSIF Interface driver
[  133.408770] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[  133.408808] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[  133.408838] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[  133.408852] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[  133.408861] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[  133.408870] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[  133.408873] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[  133.408880] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[  133.408889] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[  133.408893] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[  133.408901] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[  133.408909] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[  133.408913] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[  133.408921] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[  133.408930] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[  133.408934] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[  133.408941] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[  133.408950] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[  133.408954] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[  133.408962] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[  133.408970] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[  133.408974] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[  133.408982] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[  133.408990] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[  133.408994] EDAC sbridge: Seeking for: PCI ID 8086:0e68
[  133.409003] EDAC sbridge: Seeking for: PCI ID 8086:0e68
[  133.409011] EDAC sbridge: Seeking for: PCI ID 8086:0e68
[  133.409014] EDAC sbridge: Seeking for: PCI ID 8086:0e79
[  133.409023] EDAC sbridge: Seeking for: PCI ID 8086:0e79
[  133.409032] EDAC sbridge: Seeking for: PCI ID 8086:0e79
[  133.409035] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[  133.409044] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[  133.409050] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[  133.409052] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[  133.409058] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[  133.409064] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[  133.409065] EDAC sbridge: Seeking for: PCI ID 8086:0e6c
[  133.409071] EDAC sbridge: Seeking for: PCI ID 8086:0e6c
[  133.409077] EDAC sbridge: Seeking for: PCI ID 8086:0e6c
[  133.409079] EDAC sbridge: Seeking for: PCI ID 8086:0e6d
[  133.409085] EDAC sbridge: Seeking for: PCI ID 8086:0e6d
[  133.409090] EDAC sbridge: Seeking for: PCI ID 8086:0e6d
[  133.409092] EDAC sbridge: Seeking for: PCI ID 8086:0eb8
[  133.409100] EDAC sbridge: Seeking for: PCI ID 8086:0ebc
[  133.409108] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[  133.409113] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[  133.409119] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[  133.409121] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[  133.409126] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[  133.409132] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[  133.409134] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[  133.409140] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[  133.409145] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[  133.409239] EDAC MC0: Giving out device to module sb_edac controller Ivy Bridge SrcID#0_Ha#0: DEV 0000:7f:0e.0 (INTERRUPT)
[  133.409314] EDAC MC1: Giving out device to module sb_edac controller Ivy Bridge SrcID#1_Ha#0: DEV 0000:ff:0e.0 (INTERRUPT)
[  133.409394] EDAC MC2: Giving out device to module sb_edac controller Ivy Bridge SrcID#0_Ha#1: DEV 0000:7f:1c.0 (INTERRUPT)
[  133.409468] EDAC MC3: Giving out device to module sb_edac controller Ivy Bridge SrcID#1_Ha#1: DEV 0000:ff:1c.0 (INTERRUPT)
[  133.409470] EDAC sbridge:  Ver: 1.1.2 
[  133.428468] intel_rapl_common: Found RAPL domain package
[  133.428476] intel_rapl_common: Found RAPL domain core
[  133.428483] intel_rapl_common: Found RAPL domain dram
[  133.428493] intel_rapl_common: package-0:core:long_term locked by BIOS
[  133.428496] intel_rapl_common: package-0:dram:long_term locked by BIOS
[  133.437279] intel_rapl_common: Found RAPL domain package
[  133.437284] intel_rapl_common: Found RAPL domain core
[  133.437289] intel_rapl_common: Found RAPL domain dram
[  133.437298] intel_rapl_common: package-1:core:long_term locked by BIOS
[  133.437300] intel_rapl_common: package-1:dram:long_term locked by BIOS
[  133.559693] audit: type=1400 audit(1717147460.638:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/lxc-copy" pid=1517 comm="apparmor_parser"
[  133.559734] audit: type=1400 audit(1717147460.638:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/lxc-start" pid=1518 comm="apparmor_parser"
[  133.559784] audit: type=1400 audit(1717147460.638:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="pve-container-mounthotplug" pid=1515 comm="apparmor_parser"
[  133.560992] audit: type=1400 audit(1717147460.638:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="swtpm" pid=1520 comm="apparmor_parser"
[  133.562097] audit: type=1400 audit(1717147460.638:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=1512 comm="apparmor_parser"
[  133.562206] audit: type=1400 audit(1717147460.638:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=1514 comm="apparmor_parser"
[  133.562212] audit: type=1400 audit(1717147460.638:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=1514 comm="apparmor_parser"
[  133.562792] audit: type=1400 audit(1717147460.638:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=1519 comm="apparmor_parser"
[  133.562798] audit: type=1400 audit(1717147460.638:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=1519 comm="apparmor_parser"
[  133.562801] audit: type=1400 audit(1717147460.638:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=1519 comm="apparmor_parser"
[  133.666166] softdog: initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout=0)
[  133.666173] softdog:              soft_reboot_cmd=<not set> soft_active_on_boot=0
[  133.739315] RPC: Registered named UNIX socket transport module.
[  133.739319] RPC: Registered udp transport module.
[  133.739320] RPC: Registered tcp transport module.
[  133.739321] RPC: Registered tcp-with-tls transport module.
[  133.739322] RPC: Registered tcp NFSv4.1 backchannel transport module.
[  134.597756] vmbr0: port 1(enp7s0f0) entered blocking state
[  134.597764] vmbr0: port 1(enp7s0f0) entered disabled state
[  134.597783] igb 0000:07:00.0 enp7s0f0: entered allmulticast mode
[  134.597840] igb 0000:07:00.0 enp7s0f0: entered promiscuous mode
[  135.228489] Loading iSCSI transport class v2.0-870.
[  138.487930] igb 0000:07:00.0 enp7s0f0: igb: enp7s0f0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX
[  138.488173] vmbr0: port 1(enp7s0f0) entered blocking state
[  138.488178] vmbr0: port 1(enp7s0f0) entered forwarding state
[  147.696480] kvm_intel: L1TF CPU bug present and SMT on, data leak possible. See CVE-2018-3646 and https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/l1tf.html for details.
[  148.052384] netfs: FS-Cache loaded
[  148.530405] NFS: Registering the id_resolver key type
[  148.530421] Key type id_resolver registered
[  148.530422] Key type id_legacy registered

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 236 bytes --]

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: Kernel 6.9 regression: X86: Bogus messages from topology detection
  2024-05-31  9:41                       ` Peter Schneider
@ 2024-05-31 10:07                         ` Thomas Gleixner
  2024-05-31 10:22                           ` Peter Schneider
  0 siblings, 1 reply; 29+ messages in thread
From: Thomas Gleixner @ 2024-05-31 10:07 UTC (permalink / raw)
  To: Peter Schneider; +Cc: LKML, x86, stable, regressions, christian

Peter!

On Fri, May 31 2024 at 11:41, Peter Schneider wrote:
> Anyway, this last version of your patch fixes things for me, please see attached dmesg 
> output. Thanks very much for investigating and fixing this issue!
>
> Tested-by: Peter Schneider <pschneider1968@googlemail.com>
>
> If you like, I can retest with your first patch (with additional debug
> info output) additionally applied on top of that and send the output,
> if that would be useful for you.

No need. I'm properly coffeiniated and confident enough that this cures
it. :)

Thanks a lot for testing and providing all the information!

       tglx

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: Kernel 6.9 regression: X86: Bogus messages from topology detection
  2024-05-31 10:07                         ` Thomas Gleixner
@ 2024-05-31 10:22                           ` Peter Schneider
  0 siblings, 0 replies; 29+ messages in thread
From: Peter Schneider @ 2024-05-31 10:22 UTC (permalink / raw)
  To: Thomas Gleixner; +Cc: LKML, x86, stable, regressions, christian


[-- Attachment #1.1: Type: text/plain, Size: 801 bytes --]

Am 31.05.2024 um 12:07 schrieb Thomas Gleixner:
 > Thanks a lot for testing and providing all the information!

Refactoring messy legacy code is not an easy task. I'm glad I could help a tiny little bit 
so that you can get this done right!

Beste Grüße,
Peter Schneider

-- 
Climb the mountain not to plant your flag, but to embrace the challenge,
enjoy the air and behold the view. Climb it so you can see the world,
not so the world can see you.                    -- David McCullough Jr.

OpenPGP:  0xA3828BD796CCE11A8CADE8866E3A92C92C3FF244
Download: https://www.peters-netzplatz.de/download/pschneider1968_pub.asc
https://keys.mailvelope.com/pks/lookup?op=get&search=pschneider1968@googlemail.com
https://keys.mailvelope.com/pks/lookup?op=get&search=pschneider1968@gmail.com

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 236 bytes --]

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: Kernel 6.9 regression: X86: Bogus messages from topology detection
  2024-05-31  8:16                   ` Christian Heusel
  2024-05-31  8:48                     ` Thomas Gleixner
@ 2024-05-31 11:06                     ` Thomas Gleixner
  1 sibling, 0 replies; 29+ messages in thread
From: Thomas Gleixner @ 2024-05-31 11:06 UTC (permalink / raw)
  To: Christian Heusel; +Cc: Peter Schneider, LKML, x86, stable, regressions

On Fri, May 31 2024 at 10:16, Christian Heusel wrote:
> On 24/05/31 10:13AM, Christian Heusel wrote:
> [    0.046127] TSC deadline timer available
> [    0.046129] CPU topo: Max. logical packages:   1
> [    0.046129] CPU topo: Max. logical dies:       1
> [    0.046129] CPU topo: Max. dies per package:   1
> [    0.046131] CPU topo: Max. threads per core:   2
> [    0.046132] CPU topo: Num. cores per package:    10
> [    0.046132] CPU topo: Num. threads per package:  12
> [    0.046132] CPU topo: Allowing 12 present CPUs plus 0 hotplug CPUs

This looks correct.

> [    0.117308] smpboot: x86: Booting SMP configuration:
> [    0.117308] .... node  #0, CPUs:        #2  #4  #5  #6  #7  #8  #9 #10 #11
> [    0.009676] [Firmware Bug]: CPU4: Topology domain 1 shift 7 != 6

So this means that the E-Cores have a different topology information for
the CORE shift value than the P-Cores which is definitely wrong.

Let's see what cpuid -r reports.

Thanks,

        tglx



^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: Kernel 6.9 regression: X86: Bogus messages from topology detection
  2024-05-31  9:11                       ` Thomas Gleixner
@ 2024-05-31 13:08                         ` Christian Heusel
  2024-05-31 13:42                           ` Thomas Gleixner
  0 siblings, 1 reply; 29+ messages in thread
From: Christian Heusel @ 2024-05-31 13:08 UTC (permalink / raw)
  To: Thomas Gleixner; +Cc: Peter Schneider, LKML, x86, stable, regressions


[-- Attachment #1.1: Type: text/plain, Size: 6651 bytes --]

On 24/05/31 11:11AM, Thomas Gleixner wrote:
> On Fri, May 31 2024 at 10:48, Thomas Gleixner wrote:
> 
> It seems there are two different issues here. The dmesg you provided is
> from a i7-1255U, which is a hybrid CPU. The i7-7700k has 4 cores (8
> threads) and there is not necessarily the same root cause.

It seems like I was also below my needed caffeine levels :p The person
reporting (in the same thread) with the i7-7700k reports the problem
fixed[1] as well, so this is in line with Peters observerations!

The other person with the i7-1255U in the meantime got back to me with
the needed outputs:

> Can I get:
>
> - dmesg from 6.8.y kernel

See attachment (dmesg6.8.9-arch1-2.log)

> - output of cpuid -r

Basic Leafs :
================
0x00000000: EAX=0x00000020, EBX=0x756e6547, ECX=0x6c65746e, EDX=0x49656e69
0x00000001: EAX=0x000906a4, EBX=0x12400800, ECX=0x7ffafbff, EDX=0xbfebfbff
0x00000002: EAX=0x00feff01, EBX=0x00000000, ECX=0x00000000, EDX=0x00000000
0x00000004: subleafs:
  0: EAX=0x7c004121, EBX=0x01c0003f, ECX=0x0000003f, EDX=0x00000000
  1: EAX=0x7c004122, EBX=0x01c0003f, ECX=0x0000007f, EDX=0x00000000
  2: EAX=0x7c01c143, EBX=0x03c0003f, ECX=0x000007ff, EDX=0x00000000
  3: EAX=0x7c0fc163, EBX=0x02c0003f, ECX=0x00003fff, EDX=0x00000004
0x00000005: EAX=0x00000040, EBX=0x00000040, ECX=0x00000003, EDX=0x10102020
0x00000006: EAX=0x00df8ff7, EBX=0x00000002, ECX=0x00000409, EDX=0x00020003
0x00000007: subleafs:
  0: EAX=0x00000002, EBX=0x239ca7eb, ECX=0x984007bc, EDX=0xfc18c410
  1: EAX=0x00400810, EBX=0x00000000, ECX=0x00000000, EDX=0x00040000
  2: EAX=0x00000000, EBX=0x00000000, ECX=0x00000000, EDX=0x00000017
0x0000000a: EAX=0x07300605, EBX=0x00000000, ECX=0x00000007, EDX=0x00008603
0x0000000b: subleafs:
  0: EAX=0x00000001, EBX=0x00000001, ECX=0x00000100, EDX=0x00000012
  1: EAX=0x00000006, EBX=0x0000000c, ECX=0x00000201, EDX=0x00000012
0x0000000d: subleafs:
  0: EAX=0x00000207, EBX=0x00000a88, ECX=0x00000a88, EDX=0x00000000
  1: EAX=0x0000000f, EBX=0x00000680, ECX=0x00009900, EDX=0x00000000
  2: EAX=0x00000100, EBX=0x00000240, ECX=0x00000000, EDX=0x00000000
  8: EAX=0x00000080, EBX=0x00000000, ECX=0x00000001, EDX=0x00000000
  9: EAX=0x00000008, EBX=0x00000a80, ECX=0x00000000, EDX=0x00000000
 11: EAX=0x00000010, EBX=0x00000000, ECX=0x00000001, EDX=0x00000000
 12: EAX=0x00000018, EBX=0x00000000, ECX=0x00000001, EDX=0x00000000
 15: EAX=0x00000328, EBX=0x00000000, ECX=0x00000001, EDX=0x00000000
0x00000010: subleafs:
  0: EAX=0x00000000, EBX=0x00000004, ECX=0x00000000, EDX=0x00000000
  2: EAX=0x0000000f, EBX=0x00000000, ECX=0x00000004, EDX=0x0000000f
0x00000014: subleafs:
  0: EAX=0x00000001, EBX=0x0000005f, ECX=0x80000007, EDX=0x00000000
  1: EAX=0x02490002, EBX=0x003f003f, ECX=0x00000000, EDX=0x00000000
0x00000015: EAX=0x00000002, EBX=0x00000088, ECX=0x0249f000, EDX=0x00000000
0x00000016: EAX=0x00000a28, EBX=0x00000dac, ECX=0x00000064, EDX=0x00000000
0x00000018: subleafs:
  0: EAX=0x00000004, EBX=0x00000000, ECX=0x00000000, EDX=0x00000000
  1: EAX=0x00000000, EBX=0x00300001, ECX=0x00000001, EDX=0x00000121
  2: EAX=0x00000000, EBX=0x00040003, ECX=0x00000200, EDX=0x00000043
  3: EAX=0x00000000, EBX=0x00400001, ECX=0x00000001, EDX=0x00000122
  4: EAX=0x00000000, EBX=0x00080008, ECX=0x00000001, EDX=0x00000143
0x0000001a: EAX=0x20000001, EBX=0x00000000, ECX=0x00000000, EDX=0x00000000
0x0000001c: EAX=0xc000000b, EBX=0x00000007, ECX=0x00000007, EDX=0x00000000
0x0000001f: subleafs:
  0: EAX=0x00000001, EBX=0x00000001, ECX=0x00000100, EDX=0x00000012
  1: EAX=0x00000007, EBX=0x0000000c, ECX=0x00000201, EDX=0x00000012
  2: EAX=0x00000000, EBX=0x00000000, ECX=0x00000002, EDX=0x00000012
  3: EAX=0x00000000, EBX=0x00000000, ECX=0x00000003, EDX=0x00000012
  4: EAX=0x00000000, EBX=0x00000000, ECX=0x00000004, EDX=0x00000012
  5: EAX=0x00000000, EBX=0x00000000, ECX=0x00000005, EDX=0x00000012
  6: EAX=0x00000000, EBX=0x00000000, ECX=0x00000006, EDX=0x00000012
  7: EAX=0x00000000, EBX=0x00000000, ECX=0x00000007, EDX=0x00000012
  8: EAX=0x00000000, EBX=0x00000000, ECX=0x00000008, EDX=0x00000012
  9: EAX=0x00000000, EBX=0x00000000, ECX=0x00000009, EDX=0x00000012
 10: EAX=0x00000000, EBX=0x00000000, ECX=0x0000000a, EDX=0x00000012
 11: EAX=0x00000000, EBX=0x00000000, ECX=0x0000000b, EDX=0x00000012
 12: EAX=0x00000000, EBX=0x00000000, ECX=0x0000000c, EDX=0x00000012
 13: EAX=0x00000000, EBX=0x00000000, ECX=0x0000000d, EDX=0x00000012
 14: EAX=0x00000000, EBX=0x00000000, ECX=0x0000000e, EDX=0x00000012
 15: EAX=0x00000000, EBX=0x00000000, ECX=0x0000000f, EDX=0x00000012
 16: EAX=0x00000000, EBX=0x00000000, ECX=0x00000010, EDX=0x00000012
 17: EAX=0x00000000, EBX=0x00000000, ECX=0x00000011, EDX=0x00000012
 18: EAX=0x00000000, EBX=0x00000000, ECX=0x00000012, EDX=0x00000012
 19: EAX=0x00000000, EBX=0x00000000, ECX=0x00000013, EDX=0x00000012
 20: EAX=0x00000000, EBX=0x00000000, ECX=0x00000014, EDX=0x00000012
 21: EAX=0x00000000, EBX=0x00000000, ECX=0x00000015, EDX=0x00000012
 22: EAX=0x00000000, EBX=0x00000000, ECX=0x00000016, EDX=0x00000012
 23: EAX=0x00000000, EBX=0x00000000, ECX=0x00000017, EDX=0x00000012
 24: EAX=0x00000000, EBX=0x00000000, ECX=0x00000018, EDX=0x00000012
 25: EAX=0x00000000, EBX=0x00000000, ECX=0x00000019, EDX=0x00000012
 26: EAX=0x00000000, EBX=0x00000000, ECX=0x0000001a, EDX=0x00000012
 27: EAX=0x00000000, EBX=0x00000000, ECX=0x0000001b, EDX=0x00000012
 28: EAX=0x00000000, EBX=0x00000000, ECX=0x0000001c, EDX=0x00000012
 29: EAX=0x00000000, EBX=0x00000000, ECX=0x0000001d, EDX=0x00000012
 30: EAX=0x00000000, EBX=0x00000000, ECX=0x0000001e, EDX=0x00000012
 31: EAX=0x00000000, EBX=0x00000000, ECX=0x0000001f, EDX=0x00000012
0x00000020: EAX=0x00000000, EBX=0x00000001, ECX=0x00000000, EDX=0x00000000
Extended Leafs :
================
0x80000000: EAX=0x80000008, EBX=0x00000000, ECX=0x00000000, EDX=0x00000000
0x80000001: EAX=0x00000000, EBX=0x00000000, ECX=0x00000121, EDX=0x2c100800
0x80000002: EAX=0x68743231, EBX=0x6e654720, ECX=0x746e4920, EDX=0x52286c65
0x80000003: EAX=0x6f432029, EBX=0x54286572, ECX=0x6920294d, EDX=0x32312d37
0x80000004: EAX=0x00553535, EBX=0x00000000, ECX=0x00000000, EDX=0x00000000
0x80000006: EAX=0x00000000, EBX=0x00000000, ECX=0x08008040, EDX=0x00000000
0x80000007: EAX=0x00000000, EBX=0x00000000, ECX=0x00000000, EDX=0x00000100
0x80000008: EAX=0x00003027, EBX=0x00000000, ECX=0x00000000, EDX=0x00000000


> - content of /sys/kernel/debug/x86/topo/cpus/* (on 6.9.y)

See attachment (cat_debug.log)

Cheers,
chris


[1]: https://gitlab.archlinux.org/archlinux/packaging/packages/linux/-/issues/57#note_189134

[-- Attachment #1.2: dmesg6.8.9-arch1-2.log --]
[-- Type: text/plain, Size: 77531 bytes --]

[    0.000000] Linux version 6.8.9-arch1-2 (linux@archlinux) (gcc (GCC) 14.1.1 20240507, GNU ld (GNU Binutils) 2.42.0) #1 SMP PREEMPT_DYNAMIC Tue, 07 May 2024 21:35:54 +0000
[    0.000000] Command line: ro root=UUID=9bf7c08f-ded6-4cf7-864f-9eb6b26c33ae resume=UUID=9bf7c08f-ded6-4cf7-864f-9eb6b26c33ae rw add_efi_memmap resume_offset=2170880 quiet split_lock_detect=off loglevel=3 nowatchdog mitigations=off initrd=\boot\initramfs-linux.img
[    0.000000] x86/split lock detection: disabled
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009e000-0x000000000009efff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000009f000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000407cdfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000407ce000-0x00000000407cefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000407cf000-0x000000004244dfff] usable
[    0.000000] BIOS-e820: [mem 0x000000004244e000-0x000000004244efff] reserved
[    0.000000] BIOS-e820: [mem 0x000000004244f000-0x0000000071ca8fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000071ca9000-0x000000007544bfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007544c000-0x000000007553dfff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000007553e000-0x0000000075619fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007561a000-0x0000000075ffefff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000075fff000-0x0000000075ffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000076000000-0x0000000079ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007a600000-0x000000007a7fffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007ac00000-0x00000000803fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000087fbfffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.8 by American Megatrends
[    0.000000] efi: ACPI=0x755b6000 ACPI 2.0=0x755b6014 TPMFinalLog=0x75585000 SMBIOS=0x75dae000 SMBIOS 3.0=0x75dad000 MEMATTR=0x6ecf8198 ESRT=0x6ef4a398 INITRD=0x6599fd98 RNG=0x7548a018 TPMEventLog=0x66603018 
[    0.000000] random: crng init done
[    0.000000] efi: Remove mem110: MMIO range=[0xc0000000-0xcfffffff] (256MB) from e820 map
[    0.000000] e820: remove [mem 0xc0000000-0xcfffffff] reserved
[    0.000000] efi: Not removing mem111: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map
[    0.000000] efi: Not removing mem112: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
[    0.000000] efi: Not removing mem113: MMIO range=[0xfed00000-0xfed00fff] (4KB) from e820 map
[    0.000000] efi: Not removing mem115: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
[    0.000000] efi: Remove mem116: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[    0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
[    0.000000] SMBIOS 3.5.0 present.
[    0.000000] DMI: Default string Default string/Default string, BIOS GLX258-A V0.0.5 07/23/2022
[    0.000000] tsc: Detected 2600.000 MHz processor
[    0.000000] tsc: Detected 2611.200 MHz TSC
[    0.000351] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000352] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000358] last_pfn = 0x87fc00 max_arch_pfn = 0x400000000
[    0.000360] MTRR map: 5 entries (3 fixed + 2 variable; max 23), built from 10 variable MTRRs
[    0.000361] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000709] last_pfn = 0x76000 max_arch_pfn = 0x400000000
[    0.009371] esrt: Reserving ESRT space from 0x000000006ef4a398 to 0x000000006ef4a3d0.
[    0.009374] e820: update [mem 0x6ef4a000-0x6ef4afff] usable ==> reserved
[    0.009386] Using GB pages for direct mapping
[    0.009387] Incomplete global flushes, disabling PCID
[    0.009532] Secure boot enabled
[    0.009533] RAMDISK: [mem 0x61b6f000-0x62d1bfff]
[    0.009557] ACPI: Early table checksum verification disabled
[    0.009559] ACPI: RSDP 0x00000000755B6014 000024 (v02 ALASKA)
[    0.009562] ACPI: XSDT 0x00000000755B5728 000104 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.009566] ACPI: FACP 0x0000000075534000 000114 (v06 ALASKA A M I    01072009 AMI  01000013)
[    0.009569] ACPI: DSDT 0x00000000754BF000 074A9A (v02 ALASKA A M I    01072009 INTL 20200717)
[    0.009571] ACPI: FACS 0x0000000075619000 000040
[    0.009573] ACPI: SSDT 0x0000000075535000 006C41 (v02 DptfTb DptfTabl 00001000 INTL 20200717)
[    0.009575] ACPI: FIDT 0x00000000754BE000 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.009577] ACPI: SSDT 0x000000007553D000 00038C (v02 PmaxDv Pmax_Dev 00000001 INTL 20200717)
[    0.009579] ACPI: SSDT 0x00000000754B8000 005D0B (v02 CpuRef CpuSsdt  00003000 INTL 20200717)
[    0.009581] ACPI: SSDT 0x00000000754B5000 002AA1 (v02 SaSsdt SaSsdt   00003000 INTL 20200717)
[    0.009583] ACPI: SSDT 0x00000000754B1000 0033D3 (v02 INTEL  IgfxSsdt 00003000 INTL 20200717)
[    0.009584] ACPI: HPET 0x000000007553C000 000038 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.009586] ACPI: APIC 0x00000000754B0000 0001DC (v05 ALASKA A M I    01072009 AMI  01000013)
[    0.009588] ACPI: MCFG 0x00000000754AF000 00003C (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.009590] ACPI: SSDT 0x00000000754A6000 008384 (v02 ALASKA AdlP_Rvp 00001000 INTL 20200717)
[    0.009591] ACPI: SSDT 0x00000000754A4000 0019D1 (v02 ALASKA Ther_Rvp 00001000 INTL 20200717)
[    0.009593] ACPI: UEFI 0x000000007556C000 000048 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.009595] ACPI: NHLT 0x00000000754A3000 00002D (v00 ALASKA A M I    01072009 AMI  01000013)
[    0.009596] ACPI: LPIT 0x00000000754A2000 0000CC (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.009598] ACPI: SSDT 0x000000007549E000 002A83 (v02 ALASKA PtidDevc 00001000 INTL 20200717)
[    0.009600] ACPI: SSDT 0x000000007549B000 002357 (v02 ALASKA TbtTypeC 00000000 INTL 20200717)
[    0.009602] ACPI: DBGP 0x000000007549A000 000034 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.009603] ACPI: DBG2 0x0000000075499000 00005C (v00 ALASKA A M I    01072009 AMI  01000013)
[    0.009605] ACPI: SSDT 0x0000000075498000 00078E (v02 INTEL  xh_adlLP 00000000 INTL 20200717)
[    0.009607] ACPI: SSDT 0x0000000075494000 003AEA (v02 SocGpe SocGpe   00003000 INTL 20200717)
[    0.009608] ACPI: SSDT 0x0000000075490000 0039DA (v02 SocCmn SocCmn   00003000 INTL 20200717)
[    0.009610] ACPI: SSDT 0x000000007548F000 000144 (v02 Intel  ADebTabl 00001000 INTL 20200717)
[    0.009612] ACPI: BGRT 0x000000007548E000 000038 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.009614] ACPI: TPM2 0x000000007548D000 00004C (v04 ALASKA A M I    00000001 AMI  00000000)
[    0.009615] ACPI: PHAT 0x000000007548C000 0004EA (v01 ALASKA A M I    00000005 MSFT 0100000D)
[    0.009617] ACPI: WSMT 0x00000000754A1000 000028 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.009619] ACPI: FPDT 0x000000007548B000 000044 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.009620] ACPI: Reserving FACP table memory at [mem 0x75534000-0x75534113]
[    0.009621] ACPI: Reserving DSDT table memory at [mem 0x754bf000-0x75533a99]
[    0.009622] ACPI: Reserving FACS table memory at [mem 0x75619000-0x7561903f]
[    0.009622] ACPI: Reserving SSDT table memory at [mem 0x75535000-0x7553bc40]
[    0.009623] ACPI: Reserving FIDT table memory at [mem 0x754be000-0x754be09b]
[    0.009624] ACPI: Reserving SSDT table memory at [mem 0x7553d000-0x7553d38b]
[    0.009624] ACPI: Reserving SSDT table memory at [mem 0x754b8000-0x754bdd0a]
[    0.009625] ACPI: Reserving SSDT table memory at [mem 0x754b5000-0x754b7aa0]
[    0.009625] ACPI: Reserving SSDT table memory at [mem 0x754b1000-0x754b43d2]
[    0.009626] ACPI: Reserving HPET table memory at [mem 0x7553c000-0x7553c037]
[    0.009626] ACPI: Reserving APIC table memory at [mem 0x754b0000-0x754b01db]
[    0.009627] ACPI: Reserving MCFG table memory at [mem 0x754af000-0x754af03b]
[    0.009627] ACPI: Reserving SSDT table memory at [mem 0x754a6000-0x754ae383]
[    0.009628] ACPI: Reserving SSDT table memory at [mem 0x754a4000-0x754a59d0]
[    0.009628] ACPI: Reserving UEFI table memory at [mem 0x7556c000-0x7556c047]
[    0.009629] ACPI: Reserving NHLT table memory at [mem 0x754a3000-0x754a302c]
[    0.009629] ACPI: Reserving LPIT table memory at [mem 0x754a2000-0x754a20cb]
[    0.009630] ACPI: Reserving SSDT table memory at [mem 0x7549e000-0x754a0a82]
[    0.009630] ACPI: Reserving SSDT table memory at [mem 0x7549b000-0x7549d356]
[    0.009631] ACPI: Reserving DBGP table memory at [mem 0x7549a000-0x7549a033]
[    0.009631] ACPI: Reserving DBG2 table memory at [mem 0x75499000-0x7549905b]
[    0.009632] ACPI: Reserving SSDT table memory at [mem 0x75498000-0x7549878d]
[    0.009632] ACPI: Reserving SSDT table memory at [mem 0x75494000-0x75497ae9]
[    0.009633] ACPI: Reserving SSDT table memory at [mem 0x75490000-0x754939d9]
[    0.009633] ACPI: Reserving SSDT table memory at [mem 0x7548f000-0x7548f143]
[    0.009633] ACPI: Reserving BGRT table memory at [mem 0x7548e000-0x7548e037]
[    0.009634] ACPI: Reserving TPM2 table memory at [mem 0x7548d000-0x7548d04b]
[    0.009635] ACPI: Reserving PHAT table memory at [mem 0x7548c000-0x7548c4e9]
[    0.009635] ACPI: Reserving WSMT table memory at [mem 0x754a1000-0x754a1027]
[    0.009636] ACPI: Reserving FPDT table memory at [mem 0x7548b000-0x7548b043]
[    0.009759] No NUMA configuration found
[    0.009760] Faking a node at [mem 0x0000000000000000-0x000000087fbfffff]
[    0.009761] NODE_DATA(0) allocated [mem 0x87fbfb000-0x87fbfffff]
[    0.009783] Zone ranges:
[    0.009784]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.009785]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.009786]   Normal   [mem 0x0000000100000000-0x000000087fbfffff]
[    0.009786]   Device   empty
[    0.009787] Movable zone start for each node
[    0.009787] Early memory node ranges
[    0.009788]   node   0: [mem 0x0000000000001000-0x000000000009dfff]
[    0.009789]   node   0: [mem 0x000000000009f000-0x000000000009ffff]
[    0.009789]   node   0: [mem 0x0000000000100000-0x00000000407cdfff]
[    0.009790]   node   0: [mem 0x00000000407cf000-0x000000004244dfff]
[    0.009790]   node   0: [mem 0x000000004244f000-0x0000000071ca8fff]
[    0.009791]   node   0: [mem 0x0000000075fff000-0x0000000075ffffff]
[    0.009791]   node   0: [mem 0x0000000100000000-0x000000087fbfffff]
[    0.009793] Initmem setup node 0 [mem 0x0000000000001000-0x000000087fbfffff]
[    0.009795] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.009796] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.009807] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.010818] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.011584] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.011674] On node 0, zone DMA32: 17238 pages in unavailable ranges
[    0.041099] On node 0, zone Normal: 8192 pages in unavailable ranges
[    0.041105] On node 0, zone Normal: 1024 pages in unavailable ranges
[    0.041125] Reserving Intel graphics memory at [mem 0x7c800000-0x803fffff]
[    0.041551] ACPI: PM-Timer IO Port: 0x1808
[    0.041556] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.041557] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.041557] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.041558] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.041558] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.041559] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.041559] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.041559] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.041560] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.041560] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.041560] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.041561] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.041561] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.041562] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.041562] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.041562] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.041563] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.041563] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.041564] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.041564] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.041564] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    0.041565] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    0.041565] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    0.041566] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.041600] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    0.041602] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.041603] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.041606] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.041606] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.041611] e820: update [mem 0x6e4b1000-0x6e503fff] usable ==> reserved
[    0.041618] TSC deadline timer available
[    0.041619] smpboot: Allowing 12 CPUs, 0 hotplug CPUs
[    0.041631] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.041632] PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009efff]
[    0.041633] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.041633] PM: hibernation: Registered nosave memory: [mem 0x407ce000-0x407cefff]
[    0.041634] PM: hibernation: Registered nosave memory: [mem 0x4244e000-0x4244efff]
[    0.041635] PM: hibernation: Registered nosave memory: [mem 0x6e4b1000-0x6e503fff]
[    0.041636] PM: hibernation: Registered nosave memory: [mem 0x6ef4a000-0x6ef4afff]
[    0.041637] PM: hibernation: Registered nosave memory: [mem 0x71ca9000-0x7544bfff]
[    0.041637] PM: hibernation: Registered nosave memory: [mem 0x7544c000-0x7553dfff]
[    0.041637] PM: hibernation: Registered nosave memory: [mem 0x7553e000-0x75619fff]
[    0.041638] PM: hibernation: Registered nosave memory: [mem 0x7561a000-0x75ffefff]
[    0.041638] PM: hibernation: Registered nosave memory: [mem 0x76000000-0x79ffffff]
[    0.041639] PM: hibernation: Registered nosave memory: [mem 0x7a000000-0x7a5fffff]
[    0.041639] PM: hibernation: Registered nosave memory: [mem 0x7a600000-0x7a7fffff]
[    0.041640] PM: hibernation: Registered nosave memory: [mem 0x7a800000-0x7abfffff]
[    0.041640] PM: hibernation: Registered nosave memory: [mem 0x7ac00000-0x803fffff]
[    0.041640] PM: hibernation: Registered nosave memory: [mem 0x80400000-0xfdffffff]
[    0.041641] PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[    0.041641] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[    0.041641] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.041642] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
[    0.041642] PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
[    0.041642] PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed1ffff]
[    0.041643] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
[    0.041643] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfedfffff]
[    0.041644] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.041644] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
[    0.041645] [mem 0x80400000-0xfdffffff] available for PCI devices
[    0.041646] Booting paravirtualized kernel on bare hardware
[    0.041647] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[    0.044978] setup_percpu: NR_CPUS:320 nr_cpumask_bits:12 nr_cpu_ids:12 nr_node_ids:1
[    0.045331] percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u262144
[    0.045335] pcpu-alloc: s225280 r8192 d28672 u262144 alloc=1*2097152
[    0.045336] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 -- -- -- -- 
[    0.045348] Kernel command line: ro root=UUID=9bf7c08f-ded6-4cf7-864f-9eb6b26c33ae resume=UUID=9bf7c08f-ded6-4cf7-864f-9eb6b26c33ae rw add_efi_memmap resume_offset=2170880 quiet split_lock_detect=off loglevel=3 nowatchdog mitigations=off initrd=\boot\initramfs-linux.img
[    0.045415] Unknown kernel command line parameters "split_lock_detect=off", will be passed to user space.
[    0.047367] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.048343] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.048422] Fallback order for Node 0: 0 
[    0.048424] Built 1 zonelists, mobility grouping on.  Total pages: 8198981
[    0.048425] Policy zone: Normal
[    0.048564] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[    0.048568] software IO TLB: area num 16.
[    0.095022] Memory: 32448620K/33317144K available (16384K kernel code, 2121K rwdata, 12976K rodata, 3456K init, 3732K bss, 868264K reserved, 0K cma-reserved)
[    0.095157] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=12, Nodes=1
[    0.095173] ftrace: allocating 49113 entries in 192 pages
[    0.099437] ftrace: allocated 192 pages with 2 groups
[    0.099486] Dynamic Preempt: full
[    0.099518] rcu: Preemptible hierarchical RCU implementation.
[    0.099518] rcu: 	RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=12.
[    0.099519] rcu: 	RCU priority boosting: priority 1 delay 500 ms.
[    0.099520] 	Trampoline variant of Tasks RCU enabled.
[    0.099520] 	Rude variant of Tasks RCU enabled.
[    0.099520] 	Tracing variant of Tasks RCU enabled.
[    0.099521] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[    0.099522] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=12
[    0.100816] NR_IRQS: 20736, nr_irqs: 2152, preallocated irqs: 16
[    0.101096] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.101337] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[    0.101357] Console: colour dummy device 80x25
[    0.101359] printk: legacy console [tty0] enabled
[    0.101384] ACPI: Core revision 20230628
[    0.101575] hpet: HPET dysfunctional in PC10. Force disabled.
[    0.101576] APIC: Switch to symmetric I/O mode setup
[    0.102880] x2apic: IRQ remapping doesn't support X2APIC mode
[    0.103219] APIC: Switched APIC routing to: physical flat
[    0.107638] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x25a39079a08, max_idle_ns: 440795310461 ns
[    0.107643] Calibrating delay loop (skipped), value calculated using timer frequency.. 5224.00 BogoMIPS (lpj=8704000)
[    0.107709] CPU0: Thermal monitoring enabled (TM1)
[    0.107710] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.107804] process: using mwait in idle threads
[    0.107805] CET detected: Indirect Branch Tracking enabled
[    0.107807] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.107808] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.107810] Spectre V2 : User space: Vulnerable
[    0.107811] Speculative Store Bypass: Vulnerable
[    0.107821] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.107821] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.107822] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.107822] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.107823] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[    0.107823] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.107824] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    0.107825] x86/fpu: xstate_offset[11]:  840, xstate_sizes[11]:   16
[    0.107825] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[    0.110975] Freeing SMP alternatives memory: 40K
[    0.110975] pid_max: default: 32768 minimum: 301
[    0.110975] LSM: initializing lsm=capability,landlock,lockdown,yama,bpf,integrity
[    0.110975] landlock: Up and running.
[    0.110975] Yama: becoming mindful.
[    0.110975] LSM support for eBPF active
[    0.110975] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.110975] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.110975] smpboot: CPU0: 12th Gen Intel(R) Core(TM) i7-1255U (family: 0x6, model: 0x9a, stepping: 0x4)
[    0.110975] RCU Tasks: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[    0.110975] RCU Tasks Rude: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[    0.110975] RCU Tasks Trace: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[    0.110975] Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline,  AnyThread deprecated, Alderlake Hybrid events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.110975] core: cpu_core PMU driver: 
[    0.110975] ... version:                5
[    0.110975] ... bit width:              48
[    0.110975] ... generic registers:      8
[    0.110975] ... value mask:             0000ffffffffffff
[    0.110975] ... max period:             00007fffffffffff
[    0.110975] ... fixed-purpose events:   4
[    0.110975] ... event mask:             0001000f000000ff
[    0.110975] signal: max sigframe size: 3632
[    0.110975] Estimated ratio of average max frequency by base frequency (times 1024): 1614
[    0.110975] rcu: Hierarchical SRCU implementation.
[    0.110975] rcu: 	Max phase no-delay instances is 1000.
[    0.110975] smp: Bringing up secondary CPUs ...
[    0.110975] smpboot: x86: Booting SMP configuration:
[    0.110975] .... node  #0, CPUs:        #2  #4  #5  #6  #7  #8  #9 #10 #11
[    0.009700] core: cpu_atom PMU driver: PEBS-via-PT 
[    0.009700] ... version:                5
[    0.009700] ... bit width:              48
[    0.009700] ... generic registers:      6
[    0.009700] ... value mask:             0000ffffffffffff
[    0.009700] ... max period:             00007fffffffffff
[    0.009700] ... fixed-purpose events:   3
[    0.009700] ... event mask:             000000070000003f
[    0.114375]   #1  #3
[    0.115523] smp: Brought up 1 node, 12 CPUs
[    0.115523] smpboot: Max logical packages: 1
[    0.115523] smpboot: Total of 12 processors activated (62693.00 BogoMIPS)
[    0.118296] devtmpfs: initialized
[    0.118296] x86/mm: Memory block size: 128MB
[    0.118797] ACPI: PM: Registering ACPI NVS region [mem 0x7553e000-0x75619fff] (901120 bytes)
[    0.118797] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    0.118797] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    0.118797] pinctrl core: initialized pinctrl subsystem
[    0.118797] PM: RTC time: 09:17:56, date: 2024-05-31
[    0.118797] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.118797] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[    0.118806] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.121086] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.121091] audit: initializing netlink subsys (disabled)
[    0.121094] audit: type=2000 audit(1717147076.013:1): state=initialized audit_enabled=0 res=1
[    0.121094] thermal_sys: Registered thermal governor 'fair_share'
[    0.121094] thermal_sys: Registered thermal governor 'bang_bang'
[    0.121094] thermal_sys: Registered thermal governor 'step_wise'
[    0.121094] thermal_sys: Registered thermal governor 'user_space'
[    0.121094] thermal_sys: Registered thermal governor 'power_allocator'
[    0.121094] cpuidle: using governor ladder
[    0.121094] cpuidle: using governor menu
[    0.121094] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.121094] PCI: ECAM [mem 0xc0000000-0xcfffffff] (base 0xc0000000) for domain 0000 [bus 00-ff]
[    0.121094] PCI: not using ECAM ([mem 0xc0000000-0xcfffffff] not reserved)
[    0.121094] PCI: Using configuration type 1 for base access
[    0.121136] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.121139] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.121139] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    0.121139] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.121139] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    0.121206] ACPI: Added _OSI(Module Device)
[    0.121206] ACPI: Added _OSI(Processor Device)
[    0.121206] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.121206] ACPI: Added _OSI(Processor Aggregator Device)
[    0.192887] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.TXHC.RHUB.SS01], AE_NOT_FOUND (20230628/dswload2-162)
[    0.192893] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20230628/psobject-220)
[    0.192895] ACPI: Skipping parse of AML opcode: Scope (0x0010)
[    0.192898] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.TXHC.RHUB.SS02], AE_NOT_FOUND (20230628/dswload2-162)
[    0.192900] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20230628/psobject-220)
[    0.192901] ACPI: Skipping parse of AML opcode: Scope (0x0010)
[    0.192904] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.TXHC.RHUB.SS03], AE_NOT_FOUND (20230628/dswload2-162)
[    0.192906] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20230628/psobject-220)
[    0.192907] ACPI: Skipping parse of AML opcode: Scope (0x0010)
[    0.192909] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.TXHC.RHUB.SS04], AE_NOT_FOUND (20230628/dswload2-162)
[    0.192911] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20230628/psobject-220)
[    0.192912] ACPI: Skipping parse of AML opcode: Scope (0x0010)
[    0.194606] ACPI: 14 ACPI AML tables successfully acquired and loaded
[    0.210268] ACPI: Dynamic OEM Table Load:
[    0.210268] ACPI: SSDT 0xFFFF9DE80133D400 000394 (v02 PmRef  Cpu0Cst  00003001 INTL 20200717)
[    0.210268] ACPI: Dynamic OEM Table Load:
[    0.210268] ACPI: SSDT 0xFFFF9DE80136F800 000605 (v02 PmRef  Cpu0Ist  00003000 INTL 20200717)
[    0.210814] ACPI: Dynamic OEM Table Load:
[    0.210818] ACPI: SSDT 0xFFFF9DE8012A0200 0001AB (v02 PmRef  Cpu0Psd  00003000 INTL 20200717)
[    0.211690] ACPI: Dynamic OEM Table Load:
[    0.211695] ACPI: SSDT 0xFFFF9DE801368800 0004BA (v02 PmRef  Cpu0Hwp  00003000 INTL 20200717)
[    0.212919] ACPI: Dynamic OEM Table Load:
[    0.212928] ACPI: SSDT 0xFFFF9DE801376000 001BAF (v02 PmRef  ApIst    00003000 INTL 20200717)
[    0.214496] ACPI: Dynamic OEM Table Load:
[    0.214502] ACPI: SSDT 0xFFFF9DE801372000 001038 (v02 PmRef  ApHwp    00003000 INTL 20200717)
[    0.215841] ACPI: Dynamic OEM Table Load:
[    0.215847] ACPI: SSDT 0xFFFF9DE801370000 001349 (v02 PmRef  ApPsd    00003000 INTL 20200717)
[    0.217238] ACPI: Dynamic OEM Table Load:
[    0.217244] ACPI: SSDT 0xFFFF9DE801342000 000FBB (v02 PmRef  ApCst    00003000 INTL 20200717)
[    0.221921] ACPI: _OSC evaluated successfully for all CPUs
[    0.221957] ACPI: EC: EC started
[    0.221958] ACPI: EC: interrupt blocked
[    0.227545] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.227547] ACPI: \_SB_.PC00.LPCB.H_EC: Boot DSDT EC used to handle transactions
[    0.227548] ACPI: Interpreter enabled
[    0.227590] ACPI: PM: (supports S0 S3 S4 S5)
[    0.227591] ACPI: Using IOAPIC for interrupt routing
[    0.228749] PCI: ECAM [mem 0xc0000000-0xcfffffff] (base 0xc0000000) for domain 0000 [bus 00-ff]
[    0.230583] PCI: ECAM [mem 0xc0000000-0xcfffffff] reserved as ACPI motherboard resource
[    0.230591] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.230592] PCI: Using E820 reservations for host bridge windows
[    0.232041] ACPI: Enabled 7 GPEs in block 00 to 7F
[    0.232830] ACPI: \_SB_.PC00.PEG1.PXP_: New power resource
[    0.233385] ACPI: \_SB_.PC00.PEG2.PXP_: New power resource
[    0.234576] ACPI: \_SB_.PC00.PEG0.PXP_: New power resource
[    0.366359] ACPI: \_SB_.PC00.RP05.PXP_: New power resource
[    0.374987] ACPI: \_SB_.PC00.PAUD: New power resource
[    0.384144] ACPI: \_SB_.PC00.CNVW.WRST: New power resource
[    0.396016] ACPI: \PIN_: New power resource
[    0.396274] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-fe])
[    0.396279] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.397968] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[    0.399388] PCI host bridge to bus 0000:00
[    0.399389] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.399391] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.399392] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.399394] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
[    0.399395] pci_bus 0000:00: root bus resource [mem 0x80400000-0xbfffffff window]
[    0.399396] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
[    0.399397] pci_bus 0000:00: root bus resource [bus 00-fe]
[    0.399560] pci 0000:00:00.0: [8086:4601] type 00 class 0x060000 conventional PCI endpoint
[    0.399684] pci 0000:00:02.0: [8086:46a8] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
[    0.399692] pci 0000:00:02.0: BAR 0 [mem 0x6001000000-0x6001ffffff 64bit]
[    0.399697] pci 0000:00:02.0: BAR 2 [mem 0x4000000000-0x400fffffff 64bit pref]
[    0.399700] pci 0000:00:02.0: BAR 4 [io  0x4000-0x403f]
[    0.399713] pci 0000:00:02.0: BAR 2: assigned to efifb
[    0.399714] pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
[    0.399717] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.399740] pci 0000:00:02.0: VF BAR 0 [mem 0x00000000-0x00ffffff 64bit]
[    0.399741] pci 0000:00:02.0: VF BAR 0 [mem 0x00000000-0x06ffffff 64bit]: contains BAR 0 for 7 VFs
[    0.399746] pci 0000:00:02.0: VF BAR 2 [mem 0x00000000-0x1fffffff 64bit pref]
[    0.399747] pci 0000:00:02.0: VF BAR 2 [mem 0x00000000-0xdfffffff 64bit pref]: contains BAR 2 for 7 VFs
[    0.399874] pci 0000:00:04.0: [8086:461d] type 00 class 0x118000 conventional PCI endpoint
[    0.399886] pci 0000:00:04.0: BAR 0 [mem 0x6002100000-0x600211ffff 64bit]
[    0.400233] pci 0000:00:06.0: [8086:464d] type 01 class 0x060400 PCIe Root Port
[    0.400263] pci 0000:00:06.0: PCI bridge to [bus 01]
[    0.400270] pci 0000:00:06.0:   bridge window [mem 0x80500000-0x805fffff]
[    0.400342] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
[    0.400380] pci 0000:00:06.0: PTM enabled (root), 4ns granularity
[    0.400992] pci 0000:00:14.0: [8086:51ed] type 00 class 0x0c0330 conventional PCI endpoint
[    0.401013] pci 0000:00:14.0: BAR 0 [mem 0x6002120000-0x600212ffff 64bit]
[    0.401099] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.402860] pci 0000:00:14.2: [8086:51ef] type 00 class 0x050000 conventional PCI endpoint
[    0.402881] pci 0000:00:14.2: BAR 0 [mem 0x6002134000-0x6002137fff 64bit]
[    0.402894] pci 0000:00:14.2: BAR 2 [mem 0x600213b000-0x600213bfff 64bit]
[    0.403010] pci 0000:00:15.0: [8086:51e8] type 00 class 0x0c8000 conventional PCI endpoint
[    0.403032] pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
[    0.403407] pci 0000:00:16.0: [8086:51e0] type 00 class 0x078000 conventional PCI endpoint
[    0.403430] pci 0000:00:16.0: BAR 0 [mem 0x6002139000-0x6002139fff 64bit]
[    0.403517] pci 0000:00:16.0: PME# supported from D3hot
[    0.403817] pci 0000:00:17.0: [8086:51d3] type 00 class 0x010601 conventional PCI endpoint
[    0.403833] pci 0000:00:17.0: BAR 0 [mem 0x80600000-0x80601fff]
[    0.403842] pci 0000:00:17.0: BAR 1 [mem 0x80603000-0x806030ff]
[    0.403851] pci 0000:00:17.0: BAR 2 [io  0x4090-0x4097]
[    0.403860] pci 0000:00:17.0: BAR 3 [io  0x4080-0x4083]
[    0.403868] pci 0000:00:17.0: BAR 4 [io  0x4060-0x407f]
[    0.403877] pci 0000:00:17.0: BAR 5 [mem 0x80602000-0x806027ff]
[    0.403925] pci 0000:00:17.0: PME# supported from D3hot
[    0.404222] pci 0000:00:1d.0: [8086:51b0] type 01 class 0x060400 PCIe Root Port
[    0.404249] pci 0000:00:1d.0: PCI bridge to [bus 02]
[    0.404254] pci 0000:00:1d.0:   bridge window [mem 0x80400000-0x804fffff]
[    0.404331] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.404362] pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
[    0.404908] pci 0000:00:1d.1: [8086:51b1] type 01 class 0x060400 PCIe Root Port
[    0.404935] pci 0000:00:1d.1: PCI bridge to [bus 03]
[    0.404939] pci 0000:00:1d.1:   bridge window [io  0x3000-0x3fff]
[    0.404950] pci 0000:00:1d.1:   bridge window [mem 0x6000000000-0x60000fffff 64bit pref]
[    0.405018] pci 0000:00:1d.1: PME# supported from D0 D3hot D3cold
[    0.405048] pci 0000:00:1d.1: PTM enabled (root), 4ns granularity
[    0.405612] pci 0000:00:1f.0: [8086:5182] type 00 class 0x060100 conventional PCI endpoint
[    0.406003] pci 0000:00:1f.3: [8086:51c8] type 00 class 0x040100 conventional PCI endpoint
[    0.406044] pci 0000:00:1f.3: BAR 0 [mem 0x6002130000-0x6002133fff 64bit]
[    0.406098] pci 0000:00:1f.3: BAR 4 [mem 0x6002000000-0x60020fffff 64bit]
[    0.406203] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    0.406500] pci 0000:00:1f.4: [8086:51a3] type 00 class 0x0c0500 conventional PCI endpoint
[    0.406521] pci 0000:00:1f.4: BAR 0 [mem 0x6002138000-0x60021380ff 64bit]
[    0.406543] pci 0000:00:1f.4: BAR 4 [io  0xefa0-0xefbf]
[    0.406826] pci 0000:00:1f.5: [8086:51a4] type 00 class 0x0c8000 conventional PCI endpoint
[    0.406845] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
[    0.407665] pci 0000:01:00.0: [1987:5013] type 00 class 0x010802 PCIe Endpoint
[    0.407681] pci 0000:01:00.0: BAR 0 [mem 0x80500000-0x80503fff 64bit]
[    0.408606] pci 0000:00:06.0: PCI bridge to [bus 01]
[    0.408856] pci 0000:02:00.0: [8086:095a] type 00 class 0x028000 PCIe Endpoint
[    0.408943] pci 0000:02:00.0: BAR 0 [mem 0x80400000-0x80401fff 64bit]
[    0.409280] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[    0.410264] pci 0000:00:1d.0: PCI bridge to [bus 02]
[    0.410334] pci 0000:03:00.0: [10ec:8168] type 00 class 0x020000 PCIe Endpoint
[    0.410353] pci 0000:03:00.0: BAR 0 [io  0x3000-0x30ff]
[    0.410377] pci 0000:03:00.0: BAR 2 [mem 0x6000004000-0x6000004fff 64bit pref]
[    0.410393] pci 0000:03:00.0: BAR 4 [mem 0x6000000000-0x6000003fff 64bit pref]
[    0.410505] pci 0000:03:00.0: supports D1 D2
[    0.410506] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.410672] pci 0000:00:1d.1: PCI bridge to [bus 03]
[    0.414701] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    0.414789] ACPI: PCI: Interrupt link LNKB configured for IRQ 1
[    0.414874] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    0.414959] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    0.415045] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.415130] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.415215] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.415300] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.422696] ACPI: EC: interrupt unblocked
[    0.422697] ACPI: EC: event unblocked
[    0.422719] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.422720] ACPI: EC: GPE=0x6e
[    0.422721] ACPI: \_SB_.PC00.LPCB.H_EC: Boot DSDT EC initialization complete
[    0.422723] ACPI: \_SB_.PC00.LPCB.H_EC: EC: Used to handle transactions and events
[    0.424353] iommu: Default domain type: Translated
[    0.424353] iommu: DMA domain TLB invalidation policy: lazy mode
[    0.424415] SCSI subsystem initialized
[    0.424419] libata version 3.00 loaded.
[    0.424419] ACPI: bus type USB registered
[    0.424419] usbcore: registered new interface driver usbfs
[    0.424419] usbcore: registered new interface driver hub
[    0.424419] usbcore: registered new device driver usb
[    0.424419] EDAC MC: Ver: 3.0.0
[    0.425321] efivars: Registered efivars operations
[    0.425321] NetLabel: Initializing
[    0.425321] NetLabel:  domain hash size = 128
[    0.425321] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.425321] NetLabel:  unlabeled traffic allowed by default
[    0.425321] mctp: management component transport protocol core
[    0.425321] NET: Registered PF_MCTP protocol family
[    0.425321] PCI: Using ACPI for IRQ routing
[    0.447194] PCI: pci_cache_line_size set to 64 bytes
[    0.451173] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]: can't claim; no compatible bridge window
[    0.452108] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
[    0.452109] e820: reserve RAM buffer [mem 0x407ce000-0x43ffffff]
[    0.452110] e820: reserve RAM buffer [mem 0x4244e000-0x43ffffff]
[    0.452111] e820: reserve RAM buffer [mem 0x6e4b1000-0x6fffffff]
[    0.452112] e820: reserve RAM buffer [mem 0x6ef4a000-0x6fffffff]
[    0.452112] e820: reserve RAM buffer [mem 0x71ca9000-0x73ffffff]
[    0.452113] e820: reserve RAM buffer [mem 0x76000000-0x77ffffff]
[    0.452114] e820: reserve RAM buffer [mem 0x87fc00000-0x87fffffff]
[    0.452138] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.452138] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.452138] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.452138] vgaarb: loaded
[    0.452138] clocksource: Switched to clocksource tsc-early
[    0.452138] VFS: Disk quotas dquot_6.6.0
[    0.452138] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.452138] pnp: PnP ACPI init
[    0.452953] system 00:00: [io  0x0680-0x069f] has been reserved
[    0.452955] system 00:00: [io  0x164e-0x164f] has been reserved
[    0.453068] system 00:01: [io  0x1854-0x1857] has been reserved
[    0.454816] pnp 00:02: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
[    0.454836] system 00:02: [mem 0xfedc0000-0xfedc7fff] has been reserved
[    0.454838] system 00:02: [mem 0xfeda0000-0xfeda0fff] has been reserved
[    0.454839] system 00:02: [mem 0xfeda1000-0xfeda1fff] has been reserved
[    0.454841] system 00:02: [mem 0xfed20000-0xfed7ffff] could not be reserved
[    0.454842] system 00:02: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.454843] system 00:02: [mem 0xfed45000-0xfed8ffff] could not be reserved
[    0.454844] system 00:02: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.455533] system 00:04: [io  0x2000-0x20fe] has been reserved
[    0.455921] system 00:05: [mem 0xfe03e008-0xfe03efff] has been reserved
[    0.455923] system 00:05: [mem 0xfe03f000-0xfe03ffff] has been reserved
[    0.456290] pnp: PnP ACPI: found 6 devices
[    0.461569] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.461637] NET: Registered PF_INET protocol family
[    0.461843] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.472515] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    0.472544] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.472693] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.473005] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    0.473118] TCP: Hash tables configured (established 262144 bind 65536)
[    0.473214] MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
[    0.473277] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.473352] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.473410] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.473416] NET: Registered PF_XDP protocol family
[    0.473428] pci 0000:00:02.0: VF BAR 2 [mem 0x4020000000-0x40ffffffff 64bit pref]: assigned
[    0.473433] pci 0000:00:02.0: VF BAR 0 [mem 0x4010000000-0x4016ffffff 64bit]: assigned
[    0.473436] pci 0000:00:15.0: BAR 0 [mem 0x4017000000-0x4017000fff 64bit]: assigned
[    0.473451] resource: avoiding allocation from e820 entry [mem 0x000a0000-0x000fffff]
[    0.473453] resource: avoiding allocation from e820 entry [mem 0x000a0000-0x000fffff]
[    0.473454] pci 0000:00:1f.5: BAR 0 [mem 0x80604000-0x80604fff]: assigned
[    0.473466] pci 0000:00:06.0: PCI bridge to [bus 01]
[    0.473481] pci 0000:00:06.0:   bridge window [mem 0x80500000-0x805fffff]
[    0.473500] pci 0000:00:1d.0: PCI bridge to [bus 02]
[    0.473505] pci 0000:00:1d.0:   bridge window [mem 0x80400000-0x804fffff]
[    0.473511] pci 0000:00:1d.1: PCI bridge to [bus 03]
[    0.473513] pci 0000:00:1d.1:   bridge window [io  0x3000-0x3fff]
[    0.473519] pci 0000:00:1d.1:   bridge window [mem 0x6000000000-0x60000fffff 64bit pref]
[    0.473524] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.473525] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.473526] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.473528] pci_bus 0000:00: resource 7 [mem 0x000e0000-0x000fffff window]
[    0.473529] pci_bus 0000:00: resource 8 [mem 0x80400000-0xbfffffff window]
[    0.473529] pci_bus 0000:00: resource 9 [mem 0x4000000000-0x7fffffffff window]
[    0.473531] pci_bus 0000:01: resource 1 [mem 0x80500000-0x805fffff]
[    0.473532] pci_bus 0000:02: resource 1 [mem 0x80400000-0x804fffff]
[    0.473533] pci_bus 0000:03: resource 0 [io  0x3000-0x3fff]
[    0.473533] pci_bus 0000:03: resource 2 [mem 0x6000000000-0x60000fffff 64bit pref]
[    0.474875] PCI: CLS 64 bytes, default 64
[    0.474881] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.474882] software IO TLB: mapped [mem 0x000000005db6f000-0x0000000061b6f000] (64MB)
[    0.474940] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x25a39079a08, max_idle_ns: 440795310461 ns
[    0.474978] Trying to unpack rootfs image as initramfs...
[    0.475036] clocksource: Switched to clocksource tsc
[    0.475061] platform rtc_cmos: registered platform RTC device (no PNP device found)
[    0.480683] Initialise system trusted keyrings
[    0.480692] Key type blacklist registered
[    0.480749] workingset: timestamp_bits=41 max_order=23 bucket_order=0
[    0.480755] zbud: loaded
[    0.480829] fuse: init (API version 7.39)
[    0.480885] integrity: Platform Keyring initialized
[    0.480886] integrity: Machine keyring initialized
[    0.488412] Key type asymmetric registered
[    0.488414] Asymmetric key parser 'x509' registered
[    0.488426] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    0.488492] io scheduler mq-deadline registered
[    0.488493] io scheduler kyber registered
[    0.488499] io scheduler bfq registered
[    0.488853] pcieport 0000:00:06.0: PME: Signaling with IRQ 120
[    0.489058] pcieport 0000:00:1d.0: PME: Signaling with IRQ 121
[    0.489243] pcieport 0000:00:1d.1: PME: Signaling with IRQ 122
[    0.489312] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.490386] ACPI: AC: AC Adapter [ADP1] (on-line)
[    0.490421] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0b/PNP0C09:00/PNP0C0D:00/input/input0
[    0.490432] ACPI: button: Lid Switch [LID0]
[    0.490456] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    0.490467] ACPI: button: Power Button [PWRB]
[    0.490483] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
[    0.490492] ACPI: button: Sleep Button [SLPB]
[    0.490511] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    0.490544] ACPI: button: Power Button [PWRF]
[    0.493115] thermal LNXTHERM:00: registered as thermal_zone0
[    0.493116] ACPI: thermal: Thermal Zone [TZ00] (28 C)
[    0.493293] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.497819] hpet_acpi_add: no address or irqs in _CRS
[    0.497853] Non-volatile memory driver v1.3
[    0.497854] Linux agpgart interface v0.103
[    0.505082] ACPI: bus type drm_connector registered
[    0.505990] ahci 0000:00:17.0: version 3.0
[    0.506008] Freeing initrd memory: 18100K
[    0.506191] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x2 impl SATA mode
[    0.506194] ahci 0000:00:17.0: flags: 64bit ncq sntf pm led clo only pio slum part deso sadm sds 
[    0.506639] scsi host0: ahci
[    0.506867] scsi host1: ahci
[    0.506894] ata1: DUMMY
[    0.506899] ata2: SATA max UDMA/133 abar m2048@0x80602000 port 0x80602180 irq 123 lpm-pol 0
[    0.506951] usbcore: registered new interface driver usbserial_generic
[    0.506954] usbserial: USB Serial support registered for generic
[    0.507218] rtc_cmos rtc_cmos: RTC can wake from S4
[    0.508093] rtc_cmos rtc_cmos: registered as rtc0
[    0.508273] rtc_cmos rtc_cmos: setting system clock to 2024-05-31T09:17:57 UTC (1717147077)
[    0.508297] rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
[    0.508874] intel_pstate: Intel P-state driver initializing
[    0.509854] intel_pstate: HWP enabled
[    0.509905] ledtrig-cpu: registered to indicate activity on CPUs
[    0.510026] [drm] Initialized simpledrm 1.0.0 20200625 for simple-framebuffer.0 on minor 0
[    0.510127] fbcon: Deferring console take-over
[    0.510128] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[    0.510147] hid: raw HID events driver (C) Jiri Kosina
[    0.510194] drop_monitor: Initializing network drop monitor service
[    0.510254] NET: Registered PF_INET6 protocol family
[    0.514689] Segment Routing with IPv6
[    0.514689] RPL Segment Routing with IPv6
[    0.514692] In-situ OAM (IOAM) with IPv6
[    0.514704] NET: Registered PF_PACKET protocol family
[    0.515316] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.515578] microcode: Current revision: 0x00000433
[    0.515579] microcode: Updated early from: 0x0000041b
[    0.515955] resctrl: L2 allocation detected
[    0.515964] IPI shorthand broadcast: enabled
[    0.516848] sched_clock: Marking stable (510001376, 6367216)->(537944750, -21576158)
[    0.516977] registered taskstats version 1
[    0.517442] Loading compiled-in X.509 certificates
[    0.520235] Loaded X.509 cert 'Build time autogenerated kernel key: 4183282d70f116b65f2696270db916493ab86dc2'
[    0.522909] zswap: loaded using pool zstd/zsmalloc
[    0.523053] Key type .fscrypt registered
[    0.523053] Key type fscrypt-provisioning registered
[    0.523379] integrity: Loading X.509 certificate: UEFI:db
[    0.523392] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[    0.523393] integrity: Loading X.509 certificate: UEFI:db
[    0.523401] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[    0.523401] integrity: Loading X.509 certificate: UEFI:db
[    0.523686] integrity: Loaded X.509 cert 'my Signature Database key: f55742b17ee4c75ecb4f66293e2fbceddefed102'
[    0.524522] PM:   Magic number: 8:995:273
[    0.524546] tty tty10: hash matches
[    0.524549] net lo: hash matches
[    0.524568] acpi device:7b: hash matches
[    0.526100] RAS: Correctable Errors collector initialized.
[    0.529420] ACPI: battery: Slot [BAT0] (battery present)
[    0.818515] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    0.821585] ata2.00: ATA-10: Hanstor M.2 1TB, U0510A0, max UDMA/133
[    0.823267] ata2.00: 1953525168 sectors, multi 1: LBA48 NCQ (depth 32), AA
[    0.829960] ata2.00: configured for UDMA/133
[    0.830986] scsi 1:0:0:0: Direct-Access     ATA      Hanstor M.2 1TB  0A0  PQ: 0 ANSI: 5
[    0.835140] sd 1:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[    0.835191] sd 1:0:0:0: [sda] Write Protect is off
[    0.835203] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    0.835257] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    0.835330] sd 1:0:0:0: [sda] Preferred minimum I/O size 512 bytes
[    0.838962]  sda: sda1
[    0.839290] sd 1:0:0:0: [sda] Attached SCSI disk
[    0.839578] clk: Disabling unused clocks
[    0.852147] Freeing unused decrypted memory: 2028K
[    0.852577] Freeing unused kernel image (initmem) memory: 3456K
[    0.852578] Write protecting the kernel read-only data: 30720k
[    0.853216] Freeing unused kernel image (rodata/data gap) memory: 1360K
[    0.859562] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    0.859566] rodata_test: all tests were successful
[    0.859569] Run /init as init process
[    0.859570]   with arguments:
[    0.859571]     /init
[    0.859571]   with environment:
[    0.859572]     HOME=/
[    0.859572]     TERM=linux
[    0.859573]     split_lock_detect=off
[    0.878552] systemd[1]: systemd 255.7-1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
[    0.878557] systemd[1]: Detected architecture x86-64.
[    0.878558] systemd[1]: Running in initrd.
[    0.878652] systemd[1]: Initializing machine ID from random generator.
[    0.909854] systemd[1]: Queued start job for default target Initrd Default Target.
[    0.912361] systemd[1]: Expecting device /dev/disk/by-uuid/9bf7c08f-ded6-4cf7-864f-9eb6b26c33ae...
[    0.912392] systemd[1]: Reached target Path Units.
[    0.912398] systemd[1]: Reached target Slice Units.
[    0.912405] systemd[1]: Reached target Swaps.
[    0.912411] systemd[1]: Reached target Timer Units.
[    0.912455] systemd[1]: Listening on Journal Socket (/dev/log).
[    0.912483] systemd[1]: Listening on Journal Socket.
[    0.912521] systemd[1]: Listening on udev Control Socket.
[    0.912545] systemd[1]: Listening on udev Kernel Socket.
[    0.912551] systemd[1]: Reached target Socket Units.
[    0.912565] systemd[1]: Create List of Static Device Nodes was skipped because of an unmet condition check (ConditionFileNotEmpty=/lib/modules/6.8.9-arch1-2/modules.devname).
[    0.913047] systemd[1]: Starting Check battery level during early boot...
[    0.913898] systemd[1]: Starting Journal Service...
[    0.914402] systemd[1]: Starting Load Kernel Modules...
[    0.914425] systemd[1]: TPM2 PCR Barrier (initrd) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    0.914825] systemd[1]: Starting Create Static Device Nodes in /dev...
[    0.915217] systemd[1]: Starting Coldplug All udev Devices...
[    0.918863] systemd[1]: Finished Load Kernel Modules.
[    0.919057] systemd[1]: Finished Check battery level during early boot.
[    0.919597] systemd[1]: Started Displays emergency message in full screen..
[    0.920385] systemd[1]: Finished Create Static Device Nodes in /dev.
[    0.920998] systemd[1]: Starting Rule-based Manager for Device Events and Files...
[    0.923687] systemd-journald[155]: Collecting audit messages is disabled.
[    0.931647] systemd[1]: Started Rule-based Manager for Device Events and Files.
[    0.936499] systemd[1]: Started Journal Service.
[    0.985706] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.985714] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    0.986828] xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000100200009810
[    0.987110] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.987113] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    0.987117] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[    0.987303] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.08
[    0.987306] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.987307] usb usb1: Product: xHCI Host Controller
[    0.987308] usb usb1: Manufacturer: Linux 6.8.9-arch1-2 xhci-hcd
[    0.987310] usb usb1: SerialNumber: 0000:00:14.0
[    0.987818] hub 1-0:1.0: USB hub found
[    0.987845] hub 1-0:1.0: 12 ports detected
[    0.991127] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.08
[    0.991132] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.991134] usb usb2: Product: xHCI Host Controller
[    0.991135] usb usb2: Manufacturer: Linux 6.8.9-arch1-2 xhci-hcd
[    0.991136] usb usb2: SerialNumber: 0000:00:14.0
[    0.991245] hub 2-0:1.0: USB hub found
[    0.991263] hub 2-0:1.0: 4 ports detected
[    0.991899] usb: port power management may be unreliable
[    0.992334] nvme 0000:01:00.0: platform quirk: setting simple suspend
[    0.992407] nvme nvme0: pci function 0000:01:00.0
[    1.015971] nvme nvme0: missing or invalid SUBNQN field.
[    1.064010] nvme nvme0: allocated 128 MiB host memory buffer.
[    1.065226] nvme nvme0: 8/0/0 default/read/poll queues
[    1.067973]  nvme0n1: p1 p2 p3 p4 p5 p6 p7 p8 p9
[    1.114235] PM: Image not found (code -22)
[    1.243046] usb 1-4: new full-speed USB device number 2 using xhci_hcd
[    1.293091] EXT4-fs (nvme0n1p8): mounted filesystem 9bf7c08f-ded6-4cf7-864f-9eb6b26c33ae r/w with ordered data mode. Quota mode: none.
[    1.306721] i915 0000:00:02.0: vgaarb: deactivate vga console
[    1.306772] i915 0000:00:02.0: [drm] Using Transparent Hugepages
[    1.307178] i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    1.309025] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/adlp_dmc.bin (v2.20)
[    1.323457] i915 0000:00:02.0: [drm] GT0: GuC firmware i915/adlp_guc_70.bin version 70.20.0
[    1.323461] i915 0000:00:02.0: [drm] GT0: HuC firmware i915/tgl_huc.bin version 7.9.3
[    1.340029] i915 0000:00:02.0: [drm] GT0: HuC: authenticated for all workloads
[    1.340800] i915 0000:00:02.0: [drm] GT0: GUC: submission enabled
[    1.340801] i915 0000:00:02.0: [drm] GT0: GUC: SLPC enabled
[    1.341346] i915 0000:00:02.0: [drm] GT0: GUC: RC enabled
[    1.342092] i915 0000:00:02.0: [drm] Protected Xe Path (PXP) protected content support initialized
[    1.389159] usb 1-4: New USB device found, idVendor=8087, idProduct=0a2a, bcdDevice= 0.01
[    1.389172] usb 1-4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.513248] usb 1-5: new high-speed USB device number 3 using xhci_hcd
[    1.679168] usb 1-5: New USB device found, idVendor=0c45, idProduct=6711, bcdDevice=40.24
[    1.679184] usb 1-5: New USB device strings: Mfr=2, Product=1, SerialNumber=0
[    1.679189] usb 1-5: Product: USB 2.0 Camera
[    1.679193] usb 1-5: Manufacturer: Sonix Technology Co., Ltd.
[    2.537886] [drm] Initialized i915 1.6.0 20230929 for 0000:00:02.0 on minor 1
[    2.541140] ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    2.542192] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input4
[    2.542781] i915 display info: display version: 13
[    2.542791] i915 display info: cursor_needs_physical: no
[    2.542794] i915 display info: has_cdclk_crawl: yes
[    2.542797] i915 display info: has_cdclk_squash: no
[    2.542799] i915 display info: has_ddi: yes
[    2.542801] i915 display info: has_dp_mst: yes
[    2.542803] i915 display info: has_dsb: yes
[    2.542805] i915 display info: has_fpga_dbg: yes
[    2.542807] i915 display info: has_gmch: no
[    2.542809] i915 display info: has_hotplug: yes
[    2.542811] i915 display info: has_hti: no
[    2.542813] i915 display info: has_ipc: yes
[    2.542815] i915 display info: has_overlay: no
[    2.542817] i915 display info: has_psr: yes
[    2.542819] i915 display info: has_psr_hw_tracking: no
[    2.542821] i915 display info: overlay_needs_physical: no
[    2.542823] i915 display info: supports_tv: no
[    2.542825] i915 display info: has_hdcp: yes
[    2.542827] i915 display info: has_dmc: yes
[    2.542829] i915 display info: has_dsc: yes
[    2.549159] fbcon: i915drmfb (fb0) is primary device
[    2.549167] fbcon: Deferring console take-over
[    2.549173] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[    2.766618] systemd-journald[155]: Received SIGTERM from PID 1 (systemd).
[    2.848294] systemd[1]: systemd 255.7-1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
[    2.848298] systemd[1]: Detected architecture x86-64.
[    2.849074] systemd[1]: Hostname set to <FIRE>.
[    3.233388] systemd[1]: bpf-lsm: LSM BPF program attached
[    3.371268] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[    3.371324] systemd[1]: Stopped Switch Root.
[    3.371735] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[    3.371974] systemd[1]: Created slice Slice /system/dirmngr.
[    3.372102] systemd[1]: Created slice Slice /system/getty.
[    3.372218] systemd[1]: Created slice Slice /system/gpg-agent.
[    3.372333] systemd[1]: Created slice Slice /system/gpg-agent-browser.
[    3.372449] systemd[1]: Created slice Slice /system/gpg-agent-extra.
[    3.372560] systemd[1]: Created slice Slice /system/gpg-agent-ssh.
[    3.372673] systemd[1]: Created slice Slice /system/keyboxd.
[    3.372794] systemd[1]: Created slice Slice /system/modprobe.
[    3.372914] systemd[1]: Created slice Slice /system/systemd-fsck.
[    3.372994] systemd[1]: Created slice User and Session Slice.
[    3.373027] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    3.373047] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    3.373134] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    3.373141] systemd[1]: Expecting device /dev/disk/by-uuid/d3fa04da-cb55-4ff4-a93b-92256084412c...
[    3.373147] systemd[1]: Reached target Local Encrypted Volumes.
[    3.373158] systemd[1]: Stopped target Switch Root.
[    3.373164] systemd[1]: Stopped target Initrd File Systems.
[    3.373169] systemd[1]: Stopped target Initrd Root File System.
[    3.373174] systemd[1]: Reached target Local Integrity Protected Volumes.
[    3.373187] systemd[1]: Reached target Remote File Systems.
[    3.373193] systemd[1]: Reached target Slice Units.
[    3.373205] systemd[1]: Reached target Local Verity Protected Volumes.
[    3.373232] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    3.374937] systemd[1]: Listening on Process Core Dump Socket.
[    3.374955] systemd[1]: TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    3.375063] systemd[1]: Listening on udev Control Socket.
[    3.375091] systemd[1]: Listening on udev Kernel Socket.
[    3.396738] systemd[1]: Mounting Huge Pages File System...
[    3.397847] systemd[1]: Mounting POSIX Message Queue File System...
[    3.398904] systemd[1]: Mounting Kernel Debug File System...
[    3.399718] systemd[1]: Mounting Kernel Trace File System...
[    3.400667] systemd[1]: Starting Create List of Static Device Nodes...
[    3.401541] systemd[1]: Starting Load Kernel Module configfs...
[    3.402567] systemd[1]: Starting Load Kernel Module dm_mod...
[    3.403884] systemd[1]: Starting Load Kernel Module drm...
[    3.405154] systemd[1]: Starting Load Kernel Module fuse...
[    3.405696] systemd[1]: Starting Load Kernel Module loop...
[    3.406921] systemd[1]: Starting Journal Service...
[    3.407848] systemd[1]: Starting Load Kernel Modules...
[    3.407869] systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    3.408394] systemd[1]: Starting Remount Root and Kernel File Systems...
[    3.408433] systemd[1]: TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[    3.408961] systemd[1]: Starting Coldplug All udev Devices...
[    3.409849] systemd[1]: Mounted Huge Pages File System.
[    3.409945] systemd[1]: Mounted POSIX Message Queue File System.
[    3.410018] systemd[1]: Mounted Kernel Debug File System.
[    3.410085] systemd[1]: Mounted Kernel Trace File System.
[    3.410239] systemd[1]: Finished Create List of Static Device Nodes.
[    3.410428] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[    3.410523] systemd[1]: Finished Load Kernel Module configfs.
[    3.410704] systemd[1]: modprobe@drm.service: Deactivated successfully.
[    3.410788] systemd[1]: Finished Load Kernel Module drm.
[    3.410956] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[    3.411041] systemd[1]: Finished Load Kernel Module fuse.
[    3.411692] systemd[1]: Mounting FUSE Control File System...
[    3.411826] loop: module loaded
[    3.412206] systemd[1]: Mounting Kernel Configuration File System...
[    3.412741] systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
[    3.412966] systemd[1]: modprobe@loop.service: Deactivated successfully.
[    3.413072] systemd[1]: Finished Load Kernel Module loop.
[    3.416524] systemd[1]: Mounted FUSE Control File System.
[    3.417461] systemd[1]: Mounted Kernel Configuration File System.
[    3.418830] systemd-journald[281]: Collecting audit messages is disabled.
[    3.420246] device-mapper: uevent: version 1.0.3
[    3.420396] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
[    3.421313] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[    3.421418] systemd[1]: Finished Load Kernel Module dm_mod.
[    3.421523] systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
[    3.422482] systemd[1]: Started Journal Service.
[    3.426214] i2c_dev: i2c /dev entries driver
[    3.439980] EXT4-fs (nvme0n1p8): re-mounted 9bf7c08f-ded6-4cf7-864f-9eb6b26c33ae r/w. Quota mode: none.
[    3.446724] systemd-journald[281]: Received client request to flush runtime journal.
[    3.550443] systemd-journald[281]: /var/log/journal/bd024c881a1f4958a55e8145fab6de4c/system.journal: Journal file uses a different sequence number ID, rotating.
[    3.550459] systemd-journald[281]: Rotating system journal.
[    4.166128] Adding 4194300k swap on /swapfile.  Priority:-2 extents:192 across:59072512k SSDsc
[    4.220584] Consider using thermal netlink events interface
[    4.225598] input: Intel HID events as /devices/platform/INTC1070:00/input/input5
[    4.225786] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.LPCB.H_EC.CHRG.PPSS.FCHG], AE_NOT_FOUND (20230628/psargs-330)
[    4.225796] ACPI Error: Aborting method \_SB.PC00.LPCB.H_EC.CHRG.PPSS due to previous error (AE_NOT_FOUND) (20230628/psparse-529)
[    4.226891] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[    4.226894] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    4.227693] intel-hid INTC1070:00: platform supports 5 button array
[    4.229692] serio: i8042 KBD port at 0x60,0x64 irq 1
[    4.230698] input: Intel HID 5 button array as /devices/platform/INTC1070:00/input/input6
[    4.233780] intel_pmc_core INT33A1:00:  initialized
[    4.249354] resource: resource sanity check: requesting [mem 0x00000000fedc0000-0x00000000fedcffff], which spans more than pnp 00:02 [mem 0xfedc0000-0xfedc7fff]
[    4.249360] caller igen6_probe+0x15e/0x890 [igen6_edac] mapping multiple BARs
[    4.253677] EDAC MC0: Giving out device to module igen6_edac controller Intel_client_SoC MC#0: DEV 0000:00:00.0 (INTERRUPT)
[    4.254167] i801_smbus 0000:00:1f.4: enabling device (0000 -> 0003)
[    4.254327] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[    4.254364] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[    4.258801] i2c i2c-10: 2/2 memory slots populated (from DMI)
[    4.259502] EDAC MC1: Giving out device to module igen6_edac controller Intel_client_SoC MC#1: DEV 0000:00:00.0 (INTERRUPT)
[    4.259517] EDAC igen6 MC0: HANDLING IBECC MEMORY ERROR
[    4.259518] EDAC igen6 MC0: ADDR 0x7fffffffe0 
[    4.259524] EDAC igen6 MC1: HANDLING IBECC MEMORY ERROR
[    4.259525] EDAC igen6 MC1: ADDR 0x7fffffffe0 
[    4.259789] i2c i2c-10: Successfully instantiated SPD at 0x50
[    4.259796] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[    4.260088] EDAC igen6: v2.5.1
[    4.272855] intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
[    4.273197] idma64 idma64.0: Found Intel integrated DMA 64-bit
[    4.278843] mei_me 0000:00:16.0: hbm: dma setup response: failure = 3 REJECTED
[    4.319872] mc: Linux media interface: v0.10
[    4.321628] mei_pxp 0000:00:16.0-fbf6fcf1-96cf-4e2e-a6a6-1bab8cbe36b1: bound 0000:00:02.0 (ops i915_pxp_tee_component_ops [i915])
[    4.321967] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
[    4.322973] ee1004 10-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
[    4.327036] Creating 1 MTD partitions on "0000:00:1f.5":
[    4.327044] 0x000000000000-0x000002000000 : "BIOS"
[    4.332281] EXT4-fs (nvme0n1p9): mounted filesystem d3fa04da-cb55-4ff4-a93b-92256084412c r/w with ordered data mode. Quota mode: none.
[    4.337376] Bluetooth: Core ver 2.22
[    4.337389] NET: Registered PF_BLUETOOTH protocol family
[    4.337390] Bluetooth: HCI device and connection manager initialized
[    4.337393] Bluetooth: HCI socket layer initialized
[    4.337395] Bluetooth: L2CAP socket layer initialized
[    4.337398] Bluetooth: SCO socket layer initialized
[    4.353718] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    4.353823] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    4.353905] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[    4.365267] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/261)
[    4.366283] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/33030)
[    4.367267] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/1157)
[    4.368261] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/2309)
[    4.369268] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/405)
[    4.370266] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/661)
[    4.371248] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/4213)
[    4.372265] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/9474)
[    4.373249] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/897)
[    4.374265] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/49154)
[    4.375247] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/33105)
[    4.376248] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/9731)
[    4.377255] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/38160)
[    4.378250] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/1941)
[    4.379233] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/38145)
[    4.380252] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/49154)
[    4.381237] i2c_hid_acpi i2c-XXXX0000:01: i2c_hid_get_input: incomplete report (27/3593)
[    4.568024] intel_rapl_msr: PL4 support detected.
[    4.571307] input: XXXX0000:01 0911:5288 Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-11/i2c-XXXX0000:01/0018:0911:5288.0001/input/input7
[    4.571378] input: XXXX0000:01 0911:5288 Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-11/i2c-XXXX0000:01/0018:0911:5288.0001/input/input8
[    4.571421] hid-generic 0018:0911:5288.0001: input,hidraw0: I2C HID v1.00 Mouse [XXXX0000:01 0911:5288] on i2c-XXXX0000:01
[    4.575739] Intel(R) Wireless WiFi driver for Linux
[    4.575759] r8169 0000:03:00.0: enabling device (0000 -> 0003)
[    4.577928] intel_rapl_common: Found RAPL domain package
[    4.577930] intel_rapl_common: Found RAPL domain core
[    4.577931] intel_rapl_common: Found RAPL domain uncore
[    4.577932] intel_rapl_common: Found RAPL domain psys
[    4.578817] r8169 0000:03:00.0 eth0: RTL8168evl/8111evl, 00:00:00:00:00:03, XID 2c9, IRQ 136
[    4.578822] r8169 0000:03:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[    4.580118] videodev: Linux video capture interface: v2.00
[    4.580536] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[    4.580538] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[    4.580539] RAPL PMU: hw unit of domain package 2^-14 Joules
[    4.580540] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[    4.580540] RAPL PMU: hw unit of domain psys 2^-14 Joules
[    4.581102] r8169 0000:03:00.0 enp3s0: renamed from eth0
[    4.582565] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input9
[    4.583087] cryptd: max_cpu_qlen set to 1000
[    4.587041] iwlwifi 0000:02:00.0: enabling device (0000 -> 0002)
[    4.589224] iwlwifi 0000:02:00.0: Detected crf-id 0x0, cnv-id 0x0 wfpm id 0x0
[    4.589282] iwlwifi 0000:02:00.0: PCI dev 095a/5410, rev=0x210, rfid=0xd55555d5
[    4.593772] proc_thermal_pci 0000:00:04.0: enabling device (0000 -> 0002)
[    4.593943] intel_rapl_common: Found RAPL domain package
[    4.594731] iwlwifi 0000:02:00.0: Found debug destination: EXTERNAL_DRAM
[    4.594732] iwlwifi 0000:02:00.0: Found debug configuration: 0
[    4.594826] iwlwifi 0000:02:00.0: loaded firmware version 29.4063824552.0 7265D-29.ucode op_mode iwlmvm
[    4.595713] AVX2 version of gcm_enc/dec engaged.
[    4.595748] AES CTR mode by8 optimization enabled
[    4.600149] pps_core: LinuxPPS API ver. 1 registered
[    4.600151] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    4.605464] PTP clock support registered
[    4.605696] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
[    4.605780] usb 1-5: Found UVC 1.00 device USB 2.0 Camera (0c45:6711)
[    4.605790] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[    4.605962] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[    4.633756] usbcore: registered new interface driver uvcvideo
[    4.639919] input: XXXX0000:01 0911:5288 Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-11/i2c-XXXX0000:01/0018:0911:5288.0001/input/input10
[    4.639959] input: XXXX0000:01 0911:5288 Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-11/i2c-XXXX0000:01/0018:0911:5288.0001/input/input11
[    4.639991] hid-multitouch 0018:0911:5288.0001: input,hidraw0: I2C HID v1.00 Mouse [XXXX0000:01 0911:5288] on i2c-XXXX0000:01
[    4.689998] mousedev: PS/2 mouse device common for all mice
[    4.690495] iwlwifi 0000:02:00.0: Detected Intel(R) Dual Band Wireless AC 7265, REV=0x210
[    4.690549] thermal thermal_zone4: failed to read out thermal zone (-61)
[    4.692199] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC269VB: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    4.692202] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    4.692204] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[    4.692206] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[    4.692207] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[    4.692208] snd_hda_codec_realtek hdaudioC0D0:      Mic=0x18
[    4.692209] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x19
[    4.692210] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
[    4.706677] iwlwifi 0000:02:00.0: Applying debug destination EXTERNAL_DRAM
[    4.706701] usbcore: registered new interface driver btusb
[    4.707233] iwlwifi 0000:02:00.0: Allocated 0x00400000 bytes for firmware monitor.
[    4.713841] iwlwifi 0000:02:00.0: base HW address: 18:5e:0f:5e:3b:66, OTP minor version: 0x0
[    4.717226] intel_tcc_cooling: TCC Offset locked
[    4.722175] Bluetooth: hci0: Legacy ROM 2.5 revision 1.0 build 3 week 17 2014
[    4.722186] Bluetooth: hci0: Intel device is already patched. patch num: 39
[    4.727329] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input12
[    4.727360] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input13
[    4.727384] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input14
[    4.727407] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input15
[    4.727429] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input16
[    4.727451] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
[    4.739329] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    4.739332] Bluetooth: BNEP filters: protocol multicast
[    4.739335] Bluetooth: BNEP socket layer initialized
[    4.773439] Bluetooth: MGMT ver 1.22
[    4.773638] Bluetooth: ISO socket layer initialized
[    4.775408] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[    4.779019] iwlwifi 0000:02:00.0 wlp2s0: renamed from wlan0
[    4.780639] NET: Registered PF_ALG protocol family
[    4.887647] RTL8211E Gigabit Ethernet r8169-0-300:00: attached PHY driver (mii_bus:phy_addr=r8169-0-300:00, irq=MAC)
[    5.135632] r8169 0000:03:00.0 enp3s0: Link is Down
[    5.166640] iwlwifi 0000:02:00.0: Applying debug destination EXTERNAL_DRAM
[    5.248543] iwlwifi 0000:02:00.0: Applying debug destination EXTERNAL_DRAM
[    5.250902] iwlwifi 0000:02:00.0: FW already configured (0) - re-configuring
[    5.260894] iwlwifi 0000:02:00.0: Registered PHC clock: iwlwifi-PTP, with index: 0
[    5.312466] iwlwifi 0000:02:00.0: Applying debug destination EXTERNAL_DRAM
[    5.392490] iwlwifi 0000:02:00.0: Applying debug destination EXTERNAL_DRAM
[    5.394666] iwlwifi 0000:02:00.0: FW already configured (0) - re-configuring
[    5.661045] fbcon: Taking over console
[    5.673796] Console: switching to colour frame buffer device 240x67
[    8.189111] r8169 0000:03:00.0 enp3s0: Link is Up - 1Gbps/Full - flow control rx/tx
[   11.402189] systemd-journald[281]: /var/log/journal/bd024c881a1f4958a55e8145fab6de4c/user-1000.journal: Journal file uses a different sequence number ID, rotating.
[   16.270271] ntfs3: Max link count 4000
[   16.270283] ntfs3: Enabled Linux POSIX ACLs support
[   16.270286] ntfs3: Read-only LZX/Xpress compression included
[   16.345144] Bluetooth: RFCOMM TTY layer initialized
[   16.345151] Bluetooth: RFCOMM socket layer initialized
[   16.345153] Bluetooth: RFCOMM ver 1.11
[   16.544923] warning: `crow' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
[   18.946818] input: Baseus F02 Mouse  Keyboard as /devices/virtual/misc/uhid/0005:045E:0040.0002/input/input18
[   18.947038] input: Baseus F02 Mouse  Mouse as /devices/virtual/misc/uhid/0005:045E:0040.0002/input/input19
[   18.947286] hid-generic 0005:045E:0040.0002: input,hidraw1: BLUETOOTH HID v3.00 Keyboard [Baseus F02 Mouse ] on 18:5e:0f:5e:3b:6a
[   34.911496] systemd-journald[281]: Time jumped backwards, rotating.

[-- Attachment #1.3: cat_debug.log --]
[-- Type: text/plain, Size: 4770 bytes --]

online:              1
initial_apicid:      0
apicid:              0
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              0
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         12
num_cores:           10
max_dies_per_pkg:    1
max_threads_per_core:2
online:              1
initial_apicid:      1
apicid:              1
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             0
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              0
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         12
num_cores:           10
max_dies_per_pkg:    1
max_threads_per_core:2
online:              1
initial_apicid:      1c
apicid:              1c
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             14
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              24
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         12
num_cores:           10
max_dies_per_pkg:    1
max_threads_per_core:2
online:              1
initial_apicid:      1e
apicid:              1e
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             15
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              24
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         12
num_cores:           10
max_dies_per_pkg:    1
max_threads_per_core:2
online:              1
initial_apicid:      8
apicid:              8
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             4
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              8
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         12
num_cores:           10
max_dies_per_pkg:    1
max_threads_per_core:2
online:              1
initial_apicid:      9
apicid:              9
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             4
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              8
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         12
num_cores:           10
max_dies_per_pkg:    1
max_threads_per_core:2
online:              1
initial_apicid:      10
apicid:              10
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             8
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              16
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         12
num_cores:           10
max_dies_per_pkg:    1
max_threads_per_core:2
online:              1
initial_apicid:      12
apicid:              12
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             9
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              16
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         12
num_cores:           10
max_dies_per_pkg:    1
max_threads_per_core:2
online:              1
initial_apicid:      14
apicid:              14
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             10
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              16
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         12
num_cores:           10
max_dies_per_pkg:    1
max_threads_per_core:2
online:              1
initial_apicid:      16
apicid:              16
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             11
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              16
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         12
num_cores:           10
max_dies_per_pkg:    1
max_threads_per_core:2
online:              1
initial_apicid:      18
apicid:              18
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             12
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              24
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         12
num_cores:           10
max_dies_per_pkg:    1
max_threads_per_core:2
online:              1
initial_apicid:      1a
apicid:              1a
pkg_id:              0
die_id:              0
cu_id:               255
core_id:             13
logical_pkg_id:      0
logical_die_id:      0
llc_id:              0
l2c_id:              24
amd_node_id:         0
amd_nodes_per_pkg:   0
num_threads:         12
num_cores:           10
max_dies_per_pkg:    1
max_threads_per_core:2

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: Kernel 6.9 regression: X86: Bogus messages from topology detection
  2024-05-31 13:08                         ` Christian Heusel
@ 2024-05-31 13:42                           ` Thomas Gleixner
  2024-05-31 14:29                             ` Christian Heusel
  0 siblings, 1 reply; 29+ messages in thread
From: Thomas Gleixner @ 2024-05-31 13:42 UTC (permalink / raw)
  To: Christian Heusel; +Cc: Peter Schneider, LKML, x86, stable, regressions

On Fri, May 31 2024 at 15:08, Christian Heusel wrote:
> On 24/05/31 11:11AM, Thomas Gleixner wrote:
>> On Fri, May 31 2024 at 10:48, Thomas Gleixner wrote:
>> 
>> It seems there are two different issues here. The dmesg you provided is
>> from a i7-1255U, which is a hybrid CPU. The i7-7700k has 4 cores (8
>> threads) and there is not necessarily the same root cause.
>
> It seems like I was also below my needed caffeine levels :p The person
> reporting (in the same thread) with the i7-7700k reports the problem
> fixed[1] as well, so this is in line with Peters observerations!

Cool!

> The other person with the i7-1255U in the meantime got back to me with
> the needed outputs:
>> - output of cpuid -r

> 0x0000000b: subleafs:
>   0: EAX=0x00000001, EBX=0x00000001, ECX=0x00000100, EDX=0x00000012
>   1: EAX=0x00000006, EBX=0x0000000c, ECX=0x00000201, EDX=0x00000012

> 0x0000001f: subleafs:
>   0: EAX=0x00000001, EBX=0x00000001, ECX=0x00000100, EDX=0x00000012
>   1: EAX=0x00000007, EBX=0x0000000c, ECX=0x00000201, EDX=0x00000012

So this is inconsistent already. Both leafs should describe the same
topology. See the differing EAX values (6/7) in subleaf 1, which are
exactly the values the kernel complains about :)

But that should not be an issue because the kernel preferres 0x1f over
0xb and will never evaluate both, but this is just from one randomly
picked CPU.

I wonder which variant of the cpuid tool that is. cpuid -r gives you
usually just the plain values and collects them for all CPUs.

I really need to have the values for all CPUs to see whether there are
differences at the relevant places. The above is probably from one of
the E-Cores.

Thanks,

        tglx

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: Kernel 6.9 regression: X86: Bogus messages from topology detection
  2024-05-31 13:42                           ` Thomas Gleixner
@ 2024-05-31 14:29                             ` Christian Heusel
  2024-05-31 15:25                               ` Thomas Gleixner
  0 siblings, 1 reply; 29+ messages in thread
From: Christian Heusel @ 2024-05-31 14:29 UTC (permalink / raw)
  To: Thomas Gleixner; +Cc: Peter Schneider, LKML, x86, stable, regressions


[-- Attachment #1.1: Type: text/plain, Size: 1378 bytes --]

On 24/05/31 03:42PM, Thomas Gleixner wrote:
> On Fri, May 31 2024 at 15:08, Christian Heusel wrote:

> > The other person with the i7-1255U in the meantime got back to me with
> > the needed outputs:
> >> - output of cpuid -r
> 
> > 0x0000000b: subleafs:
> >   0: EAX=0x00000001, EBX=0x00000001, ECX=0x00000100, EDX=0x00000012
> >   1: EAX=0x00000006, EBX=0x0000000c, ECX=0x00000201, EDX=0x00000012
> 
> > 0x0000001f: subleafs:
> >   0: EAX=0x00000001, EBX=0x00000001, ECX=0x00000100, EDX=0x00000012
> >   1: EAX=0x00000007, EBX=0x0000000c, ECX=0x00000201, EDX=0x00000012
> 
> So this is inconsistent already. Both leafs should describe the same
> topology. See the differing EAX values (6/7) in subleaf 1, which are
> exactly the values the kernel complains about :)
> 
> But that should not be an issue because the kernel preferres 0x1f over
> 0xb and will never evaluate both, but this is just from one randomly
> picked CPU.
> 
> I wonder which variant of the cpuid tool that is. cpuid -r gives you
> usually just the plain values and collects them for all CPUs.

The previously attached one is output from the version located here:
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/tools/arch/x86/kcpuid

The one I have now attached is the one being built from this:
https://www.etallen.com/cpuid.html

Cheers,
Chris

[-- Attachment #1.2: new_cpuid-r.log --]
[-- Type: text/plain, Size: 69526 bytes --]

CPU 0:
   0x00000000 0x00: eax=0x00000020 ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000906a4 ebx=0x00400800 ecx=0x7ffafbff edx=0xbfebfbff
   0x00000002 0x00: eax=0x00feff01 ebx=0x000000f0 ecx=0x00000000 edx=0x00000000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x7c004121 ebx=0x02c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x7c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x7c01c143 ebx=0x0240003f ecx=0x000007ff edx=0x00000000
   0x00000004 0x03: eax=0x7c0fc163 ebx=0x02c0003f ecx=0x00003fff edx=0x00000004
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x10102020
   0x00000006 0x00: eax=0x00df8ff7 ebx=0x00000002 ecx=0x00000409 edx=0x00000003
   0x00000007 0x00: eax=0x00000002 ebx=0x239ca7eb ecx=0x984007bc edx=0xfc18c410
   0x00000007 0x01: eax=0x00400810 ebx=0x00000000 ecx=0x00000000 edx=0x00040000
   0x00000007 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000017
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300605 ebx=0x00000000 ecx=0x00000007 edx=0x00008603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000000
   0x0000000b 0x01: eax=0x00000006 ebx=0x0000000c ecx=0x00000201 edx=0x00000000
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000000
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000207 ebx=0x00000a88 ecx=0x00000a88 edx=0x00000000
   0x0000000d 0x01: eax=0x0000000f ebx=0x00000680 ecx=0x00009900 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x08: eax=0x00000080 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x09: eax=0x00000008 ebx=0x00000a80 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x0b: eax=0x00000010 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x0c: eax=0x00000018 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x0f: eax=0x00000328 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000e 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000f 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000010 0x00: eax=0x00000000 ebx=0x00000004 ecx=0x00000000 edx=0x00000000
   0x00000010 0x02: eax=0x00000009 ebx=0x00000000 ecx=0x00000004 edx=0x00000007
   0x00000011 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x01: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000013 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000014 0x00: eax=0x00000001 ebx=0x0000005f ecx=0x00000007 edx=0x00000000
   0x00000014 0x01: eax=0x02490002 ebx=0x003f003f ecx=0x00000000 edx=0x00000000
   0x00000015 0x00: eax=0x00000002 ebx=0x00000088 ecx=0x0249f000 edx=0x00000000
   0x00000016 0x00: eax=0x00000a28 ebx=0x0000125c ecx=0x00000064 edx=0x00000000
   0x00000017 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000018 0x00: eax=0x00000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000018 0x01: eax=0x00000000 ebx=0x00080001 ecx=0x00000020 edx=0x00004022
   0x00000018 0x02: eax=0x00000000 ebx=0x00080006 ecx=0x00000004 edx=0x00004022
   0x00000018 0x03: eax=0x00000000 ebx=0x0010000f ecx=0x00000001 edx=0x00004125
   0x00000018 0x04: eax=0x00000000 ebx=0x00040001 ecx=0x00000010 edx=0x00004024
   0x00000018 0x05: eax=0x00000000 ebx=0x00040006 ecx=0x00000008 edx=0x00004024
   0x00000018 0x06: eax=0x00000000 ebx=0x00080008 ecx=0x00000001 edx=0x00004124
   0x00000018 0x07: eax=0x00000000 ebx=0x00080007 ecx=0x00000080 edx=0x00004043
   0x00000018 0x08: eax=0x00000000 ebx=0x00080009 ecx=0x00000080 edx=0x00004043
   0x00000019 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001a 0x00: eax=0x40000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001b 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001b 0x01: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001c 0x00: eax=0x4000000b ebx=0x00000007 ecx=0x00000007 edx=0x00000000
   0x0000001d 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001e 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001f 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000000
   0x0000001f 0x01: eax=0x00000006 ebx=0x0000000c ecx=0x00000201 edx=0x00000000
   0x0000001f 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000000
   0x00000020 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000121 edx=0x2c100800
   0x80000002 0x00: eax=0x68743231 ebx=0x6e654720 ecx=0x746e4920 edx=0x52286c65
   0x80000003 0x00: eax=0x6f432029 ebx=0x54286572 ecx=0x6920294d edx=0x32312d37
   0x80000004 0x00: eax=0x00553535 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x05007040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x00003027 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0xc0000000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
CPU 1:
   0x00000000 0x00: eax=0x00000020 ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000906a4 ebx=0x01400800 ecx=0x7ffafbff edx=0xbfebfbff
   0x00000002 0x00: eax=0x00feff01 ebx=0x000000f0 ecx=0x00000000 edx=0x00000000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x7c004121 ebx=0x02c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x7c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x7c01c143 ebx=0x0240003f ecx=0x000007ff edx=0x00000000
   0x00000004 0x03: eax=0x7c0fc163 ebx=0x02c0003f ecx=0x00003fff edx=0x00000004
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x10102020
   0x00000006 0x00: eax=0x00df8ff7 ebx=0x00000002 ecx=0x00000409 edx=0x00000003
   0x00000007 0x00: eax=0x00000002 ebx=0x239ca7eb ecx=0x984007bc edx=0xfc18c410
   0x00000007 0x01: eax=0x00400810 ebx=0x00000000 ecx=0x00000000 edx=0x00040000
   0x00000007 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000017
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300605 ebx=0x00000000 ecx=0x00000007 edx=0x00008603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000001
   0x0000000b 0x01: eax=0x00000006 ebx=0x0000000c ecx=0x00000201 edx=0x00000001
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000001
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000207 ebx=0x00000a88 ecx=0x00000a88 edx=0x00000000
   0x0000000d 0x01: eax=0x0000000f ebx=0x00000680 ecx=0x00009900 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x08: eax=0x00000080 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x09: eax=0x00000008 ebx=0x00000a80 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x0b: eax=0x00000010 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x0c: eax=0x00000018 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x0f: eax=0x00000328 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000e 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000f 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000010 0x00: eax=0x00000000 ebx=0x00000004 ecx=0x00000000 edx=0x00000000
   0x00000010 0x02: eax=0x00000009 ebx=0x00000000 ecx=0x00000004 edx=0x00000007
   0x00000011 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x01: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000013 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000014 0x00: eax=0x00000001 ebx=0x0000005f ecx=0x00000007 edx=0x00000000
   0x00000014 0x01: eax=0x02490002 ebx=0x003f003f ecx=0x00000000 edx=0x00000000
   0x00000015 0x00: eax=0x00000002 ebx=0x00000088 ecx=0x0249f000 edx=0x00000000
   0x00000016 0x00: eax=0x00000a28 ebx=0x0000125c ecx=0x00000064 edx=0x00000000
   0x00000017 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000018 0x00: eax=0x00000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000018 0x01: eax=0x00000000 ebx=0x00080001 ecx=0x00000020 edx=0x00004022
   0x00000018 0x02: eax=0x00000000 ebx=0x00080006 ecx=0x00000004 edx=0x00004022
   0x00000018 0x03: eax=0x00000000 ebx=0x0010000f ecx=0x00000001 edx=0x00004125
   0x00000018 0x04: eax=0x00000000 ebx=0x00040001 ecx=0x00000010 edx=0x00004024
   0x00000018 0x05: eax=0x00000000 ebx=0x00040006 ecx=0x00000008 edx=0x00004024
   0x00000018 0x06: eax=0x00000000 ebx=0x00080008 ecx=0x00000001 edx=0x00004124
   0x00000018 0x07: eax=0x00000000 ebx=0x00080007 ecx=0x00000080 edx=0x00004043
   0x00000018 0x08: eax=0x00000000 ebx=0x00080009 ecx=0x00000080 edx=0x00004043
   0x00000019 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001a 0x00: eax=0x40000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001b 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001b 0x01: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001c 0x00: eax=0x4000000b ebx=0x00000007 ecx=0x00000007 edx=0x00000000
   0x0000001d 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001e 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001f 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000001
   0x0000001f 0x01: eax=0x00000006 ebx=0x0000000c ecx=0x00000201 edx=0x00000001
   0x0000001f 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000001
   0x00000020 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000121 edx=0x2c100800
   0x80000002 0x00: eax=0x68743231 ebx=0x6e654720 ecx=0x746e4920 edx=0x52286c65
   0x80000003 0x00: eax=0x6f432029 ebx=0x54286572 ecx=0x6920294d edx=0x32312d37
   0x80000004 0x00: eax=0x00553535 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x05007040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x00003027 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0xc0000000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
CPU 2:
   0x00000000 0x00: eax=0x00000020 ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000906a4 ebx=0x08400800 ecx=0x7ffafbff edx=0xbfebfbff
   0x00000002 0x00: eax=0x00feff01 ebx=0x000000f0 ecx=0x00000000 edx=0x00000000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x7c004121 ebx=0x02c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x7c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x7c01c143 ebx=0x0240003f ecx=0x000007ff edx=0x00000000
   0x00000004 0x03: eax=0x7c0fc163 ebx=0x02c0003f ecx=0x00003fff edx=0x00000004
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x10102020
   0x00000006 0x00: eax=0x00df8ff7 ebx=0x00000002 ecx=0x00000409 edx=0x00010003
   0x00000007 0x00: eax=0x00000002 ebx=0x239ca7eb ecx=0x984007bc edx=0xfc18c410
   0x00000007 0x01: eax=0x00400810 ebx=0x00000000 ecx=0x00000000 edx=0x00040000
   0x00000007 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000017
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300605 ebx=0x00000000 ecx=0x00000007 edx=0x00008603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000008
   0x0000000b 0x01: eax=0x00000006 ebx=0x0000000c ecx=0x00000201 edx=0x00000008
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000008
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000207 ebx=0x00000a88 ecx=0x00000a88 edx=0x00000000
   0x0000000d 0x01: eax=0x0000000f ebx=0x00000680 ecx=0x00009900 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x08: eax=0x00000080 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x09: eax=0x00000008 ebx=0x00000a80 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x0b: eax=0x00000010 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x0c: eax=0x00000018 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x0f: eax=0x00000328 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000e 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000f 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000010 0x00: eax=0x00000000 ebx=0x00000004 ecx=0x00000000 edx=0x00000000
   0x00000010 0x02: eax=0x00000009 ebx=0x00000000 ecx=0x00000004 edx=0x00000007
   0x00000011 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x01: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000013 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000014 0x00: eax=0x00000001 ebx=0x0000005f ecx=0x00000007 edx=0x00000000
   0x00000014 0x01: eax=0x02490002 ebx=0x003f003f ecx=0x00000000 edx=0x00000000
   0x00000015 0x00: eax=0x00000002 ebx=0x00000088 ecx=0x0249f000 edx=0x00000000
   0x00000016 0x00: eax=0x00000a28 ebx=0x0000125c ecx=0x00000064 edx=0x00000000
   0x00000017 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000018 0x00: eax=0x00000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000018 0x01: eax=0x00000000 ebx=0x00080001 ecx=0x00000020 edx=0x00004022
   0x00000018 0x02: eax=0x00000000 ebx=0x00080006 ecx=0x00000004 edx=0x00004022
   0x00000018 0x03: eax=0x00000000 ebx=0x0010000f ecx=0x00000001 edx=0x00004125
   0x00000018 0x04: eax=0x00000000 ebx=0x00040001 ecx=0x00000010 edx=0x00004024
   0x00000018 0x05: eax=0x00000000 ebx=0x00040006 ecx=0x00000008 edx=0x00004024
   0x00000018 0x06: eax=0x00000000 ebx=0x00080008 ecx=0x00000001 edx=0x00004124
   0x00000018 0x07: eax=0x00000000 ebx=0x00080007 ecx=0x00000080 edx=0x00004043
   0x00000018 0x08: eax=0x00000000 ebx=0x00080009 ecx=0x00000080 edx=0x00004043
   0x00000019 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001a 0x00: eax=0x40000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001b 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001b 0x01: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001c 0x00: eax=0x4000000b ebx=0x00000007 ecx=0x00000007 edx=0x00000000
   0x0000001d 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001e 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001f 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000008
   0x0000001f 0x01: eax=0x00000006 ebx=0x0000000c ecx=0x00000201 edx=0x00000008
   0x0000001f 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000008
   0x00000020 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000121 edx=0x2c100800
   0x80000002 0x00: eax=0x68743231 ebx=0x6e654720 ecx=0x746e4920 edx=0x52286c65
   0x80000003 0x00: eax=0x6f432029 ebx=0x54286572 ecx=0x6920294d edx=0x32312d37
   0x80000004 0x00: eax=0x00553535 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x05007040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x00003027 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0xc0000000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
CPU 3:
   0x00000000 0x00: eax=0x00000020 ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000906a4 ebx=0x09400800 ecx=0x7ffafbff edx=0xbfebfbff
   0x00000002 0x00: eax=0x00feff01 ebx=0x000000f0 ecx=0x00000000 edx=0x00000000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x7c004121 ebx=0x02c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x7c004122 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x02: eax=0x7c01c143 ebx=0x0240003f ecx=0x000007ff edx=0x00000000
   0x00000004 0x03: eax=0x7c0fc163 ebx=0x02c0003f ecx=0x00003fff edx=0x00000004
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x10102020
   0x00000006 0x00: eax=0x00df8ff7 ebx=0x00000002 ecx=0x00000409 edx=0x00010003
   0x00000007 0x00: eax=0x00000002 ebx=0x239ca7eb ecx=0x984007bc edx=0xfc18c410
   0x00000007 0x01: eax=0x00400810 ebx=0x00000000 ecx=0x00000000 edx=0x00040000
   0x00000007 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000017
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300605 ebx=0x00000000 ecx=0x00000007 edx=0x00008603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000009
   0x0000000b 0x01: eax=0x00000006 ebx=0x0000000c ecx=0x00000201 edx=0x00000009
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000009
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000207 ebx=0x00000a88 ecx=0x00000a88 edx=0x00000000
   0x0000000d 0x01: eax=0x0000000f ebx=0x00000680 ecx=0x00009900 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x08: eax=0x00000080 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x09: eax=0x00000008 ebx=0x00000a80 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x0b: eax=0x00000010 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x0c: eax=0x00000018 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x0f: eax=0x00000328 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000e 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000f 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000010 0x00: eax=0x00000000 ebx=0x00000004 ecx=0x00000000 edx=0x00000000
   0x00000010 0x02: eax=0x00000009 ebx=0x00000000 ecx=0x00000004 edx=0x00000007
   0x00000011 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x01: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000013 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000014 0x00: eax=0x00000001 ebx=0x0000005f ecx=0x00000007 edx=0x00000000
   0x00000014 0x01: eax=0x02490002 ebx=0x003f003f ecx=0x00000000 edx=0x00000000
   0x00000015 0x00: eax=0x00000002 ebx=0x00000088 ecx=0x0249f000 edx=0x00000000
   0x00000016 0x00: eax=0x00000a28 ebx=0x0000125c ecx=0x00000064 edx=0x00000000
   0x00000017 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000018 0x00: eax=0x00000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000018 0x01: eax=0x00000000 ebx=0x00080001 ecx=0x00000020 edx=0x00004022
   0x00000018 0x02: eax=0x00000000 ebx=0x00080006 ecx=0x00000004 edx=0x00004022
   0x00000018 0x03: eax=0x00000000 ebx=0x0010000f ecx=0x00000001 edx=0x00004125
   0x00000018 0x04: eax=0x00000000 ebx=0x00040001 ecx=0x00000010 edx=0x00004024
   0x00000018 0x05: eax=0x00000000 ebx=0x00040006 ecx=0x00000008 edx=0x00004024
   0x00000018 0x06: eax=0x00000000 ebx=0x00080008 ecx=0x00000001 edx=0x00004124
   0x00000018 0x07: eax=0x00000000 ebx=0x00080007 ecx=0x00000080 edx=0x00004043
   0x00000018 0x08: eax=0x00000000 ebx=0x00080009 ecx=0x00000080 edx=0x00004043
   0x00000019 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001a 0x00: eax=0x40000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001b 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001b 0x01: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001c 0x00: eax=0x4000000b ebx=0x00000007 ecx=0x00000007 edx=0x00000000
   0x0000001d 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001e 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001f 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000009
   0x0000001f 0x01: eax=0x00000006 ebx=0x0000000c ecx=0x00000201 edx=0x00000009
   0x0000001f 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000009
   0x00000020 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000121 edx=0x2c100800
   0x80000002 0x00: eax=0x68743231 ebx=0x6e654720 ecx=0x746e4920 edx=0x52286c65
   0x80000003 0x00: eax=0x6f432029 ebx=0x54286572 ecx=0x6920294d edx=0x32312d37
   0x80000004 0x00: eax=0x00553535 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x05007040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x00003027 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0xc0000000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
CPU 4:
   0x00000000 0x00: eax=0x00000020 ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000906a4 ebx=0x10400800 ecx=0x7ffafbff edx=0xbfebfbff
   0x00000002 0x00: eax=0x00feff01 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x7c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x7c004122 ebx=0x01c0003f ecx=0x0000007f edx=0x00000000
   0x00000004 0x02: eax=0x7c01c143 ebx=0x03c0003f ecx=0x000007ff edx=0x00000000
   0x00000004 0x03: eax=0x7c0fc163 ebx=0x02c0003f ecx=0x00003fff edx=0x00000004
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x10102020
   0x00000006 0x00: eax=0x00df8ff7 ebx=0x00000002 ecx=0x00000409 edx=0x00020003
   0x00000007 0x00: eax=0x00000002 ebx=0x239ca7eb ecx=0x984007bc edx=0xfc18c410
   0x00000007 0x01: eax=0x00400810 ebx=0x00000000 ecx=0x00000000 edx=0x00040000
   0x00000007 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000017
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300605 ebx=0x00000000 ecx=0x00000007 edx=0x00008603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000001 ecx=0x00000100 edx=0x00000010
   0x0000000b 0x01: eax=0x00000006 ebx=0x0000000c ecx=0x00000201 edx=0x00000010
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000010
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000207 ebx=0x00000a88 ecx=0x00000a88 edx=0x00000000
   0x0000000d 0x01: eax=0x0000000f ebx=0x00000680 ecx=0x00009900 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x08: eax=0x00000080 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x09: eax=0x00000008 ebx=0x00000a80 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x0b: eax=0x00000010 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x0c: eax=0x00000018 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x0f: eax=0x00000328 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000e 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000f 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000010 0x00: eax=0x00000000 ebx=0x00000004 ecx=0x00000000 edx=0x00000000
   0x00000010 0x02: eax=0x0000000f ebx=0x00000000 ecx=0x00000004 edx=0x0000000f
   0x00000011 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x01: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000013 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000014 0x00: eax=0x00000001 ebx=0x0000005f ecx=0x80000007 edx=0x00000000
   0x00000014 0x01: eax=0x02490002 ebx=0x003f003f ecx=0x00000000 edx=0x00000000
   0x00000015 0x00: eax=0x00000002 ebx=0x00000088 ecx=0x0249f000 edx=0x00000000
   0x00000016 0x00: eax=0x00000a28 ebx=0x00000dac ecx=0x00000064 edx=0x00000000
   0x00000017 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000018 0x00: eax=0x00000004 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000018 0x01: eax=0x00000000 ebx=0x00300001 ecx=0x00000001 edx=0x00000121
   0x00000018 0x02: eax=0x00000000 ebx=0x00040003 ecx=0x00000200 edx=0x00000043
   0x00000018 0x03: eax=0x00000000 ebx=0x00400001 ecx=0x00000001 edx=0x00000122
   0x00000018 0x04: eax=0x00000000 ebx=0x00080008 ecx=0x00000001 edx=0x00000143
   0x00000019 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001a 0x00: eax=0x20000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001b 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001b 0x01: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001c 0x00: eax=0xc000000b ebx=0x00000007 ecx=0x00000007 edx=0x00000000
   0x0000001d 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001e 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001f 0x00: eax=0x00000001 ebx=0x00000001 ecx=0x00000100 edx=0x00000010
   0x0000001f 0x01: eax=0x00000007 ebx=0x0000000c ecx=0x00000201 edx=0x00000010
   0x0000001f 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000010
   0x00000020 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000121 edx=0x2c100800
   0x80000002 0x00: eax=0x68743231 ebx=0x6e654720 ecx=0x746e4920 edx=0x52286c65
   0x80000003 0x00: eax=0x6f432029 ebx=0x54286572 ecx=0x6920294d edx=0x32312d37
   0x80000004 0x00: eax=0x00553535 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x08008040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x00003027 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0xc0000000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
CPU 5:
   0x00000000 0x00: eax=0x00000020 ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000906a4 ebx=0x12400800 ecx=0x7ffafbff edx=0xbfebfbff
   0x00000002 0x00: eax=0x00feff01 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x7c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x7c004122 ebx=0x01c0003f ecx=0x0000007f edx=0x00000000
   0x00000004 0x02: eax=0x7c01c143 ebx=0x03c0003f ecx=0x000007ff edx=0x00000000
   0x00000004 0x03: eax=0x7c0fc163 ebx=0x02c0003f ecx=0x00003fff edx=0x00000004
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x10102020
   0x00000006 0x00: eax=0x00df8ff7 ebx=0x00000002 ecx=0x00000409 edx=0x00020003
   0x00000007 0x00: eax=0x00000002 ebx=0x239ca7eb ecx=0x984007bc edx=0xfc18c410
   0x00000007 0x01: eax=0x00400810 ebx=0x00000000 ecx=0x00000000 edx=0x00040000
   0x00000007 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000017
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300605 ebx=0x00000000 ecx=0x00000007 edx=0x00008603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000001 ecx=0x00000100 edx=0x00000012
   0x0000000b 0x01: eax=0x00000006 ebx=0x0000000c ecx=0x00000201 edx=0x00000012
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000012
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000207 ebx=0x00000a88 ecx=0x00000a88 edx=0x00000000
   0x0000000d 0x01: eax=0x0000000f ebx=0x00000680 ecx=0x00009900 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x08: eax=0x00000080 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x09: eax=0x00000008 ebx=0x00000a80 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x0b: eax=0x00000010 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x0c: eax=0x00000018 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x0f: eax=0x00000328 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000e 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000f 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000010 0x00: eax=0x00000000 ebx=0x00000004 ecx=0x00000000 edx=0x00000000
   0x00000010 0x02: eax=0x0000000f ebx=0x00000000 ecx=0x00000004 edx=0x0000000f
   0x00000011 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x01: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000013 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000014 0x00: eax=0x00000001 ebx=0x0000005f ecx=0x80000007 edx=0x00000000
   0x00000014 0x01: eax=0x02490002 ebx=0x003f003f ecx=0x00000000 edx=0x00000000
   0x00000015 0x00: eax=0x00000002 ebx=0x00000088 ecx=0x0249f000 edx=0x00000000
   0x00000016 0x00: eax=0x00000a28 ebx=0x00000dac ecx=0x00000064 edx=0x00000000
   0x00000017 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000018 0x00: eax=0x00000004 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000018 0x01: eax=0x00000000 ebx=0x00300001 ecx=0x00000001 edx=0x00000121
   0x00000018 0x02: eax=0x00000000 ebx=0x00040003 ecx=0x00000200 edx=0x00000043
   0x00000018 0x03: eax=0x00000000 ebx=0x00400001 ecx=0x00000001 edx=0x00000122
   0x00000018 0x04: eax=0x00000000 ebx=0x00080008 ecx=0x00000001 edx=0x00000143
   0x00000019 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001a 0x00: eax=0x20000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001b 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001b 0x01: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001c 0x00: eax=0xc000000b ebx=0x00000007 ecx=0x00000007 edx=0x00000000
   0x0000001d 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001e 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001f 0x00: eax=0x00000001 ebx=0x00000001 ecx=0x00000100 edx=0x00000012
   0x0000001f 0x01: eax=0x00000007 ebx=0x0000000c ecx=0x00000201 edx=0x00000012
   0x0000001f 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000012
   0x00000020 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000121 edx=0x2c100800
   0x80000002 0x00: eax=0x68743231 ebx=0x6e654720 ecx=0x746e4920 edx=0x52286c65
   0x80000003 0x00: eax=0x6f432029 ebx=0x54286572 ecx=0x6920294d edx=0x32312d37
   0x80000004 0x00: eax=0x00553535 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x08008040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x00003027 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0xc0000000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
CPU 6:
   0x00000000 0x00: eax=0x00000020 ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000906a4 ebx=0x14400800 ecx=0x7ffafbff edx=0xbfebfbff
   0x00000002 0x00: eax=0x00feff01 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x7c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x7c004122 ebx=0x01c0003f ecx=0x0000007f edx=0x00000000
   0x00000004 0x02: eax=0x7c01c143 ebx=0x03c0003f ecx=0x000007ff edx=0x00000000
   0x00000004 0x03: eax=0x7c0fc163 ebx=0x02c0003f ecx=0x00003fff edx=0x00000004
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x10102020
   0x00000006 0x00: eax=0x00df8ff7 ebx=0x00000002 ecx=0x00000409 edx=0x00020003
   0x00000007 0x00: eax=0x00000002 ebx=0x239ca7eb ecx=0x984007bc edx=0xfc18c410
   0x00000007 0x01: eax=0x00400810 ebx=0x00000000 ecx=0x00000000 edx=0x00040000
   0x00000007 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000017
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300605 ebx=0x00000000 ecx=0x00000007 edx=0x00008603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000001 ecx=0x00000100 edx=0x00000014
   0x0000000b 0x01: eax=0x00000006 ebx=0x0000000c ecx=0x00000201 edx=0x00000014
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000014
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000207 ebx=0x00000a88 ecx=0x00000a88 edx=0x00000000
   0x0000000d 0x01: eax=0x0000000f ebx=0x00000680 ecx=0x00009900 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x08: eax=0x00000080 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x09: eax=0x00000008 ebx=0x00000a80 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x0b: eax=0x00000010 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x0c: eax=0x00000018 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x0f: eax=0x00000328 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000e 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000f 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000010 0x00: eax=0x00000000 ebx=0x00000004 ecx=0x00000000 edx=0x00000000
   0x00000010 0x02: eax=0x0000000f ebx=0x00000000 ecx=0x00000004 edx=0x0000000f
   0x00000011 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x01: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000013 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000014 0x00: eax=0x00000001 ebx=0x0000005f ecx=0x80000007 edx=0x00000000
   0x00000014 0x01: eax=0x02490002 ebx=0x003f003f ecx=0x00000000 edx=0x00000000
   0x00000015 0x00: eax=0x00000002 ebx=0x00000088 ecx=0x0249f000 edx=0x00000000
   0x00000016 0x00: eax=0x00000a28 ebx=0x00000dac ecx=0x00000064 edx=0x00000000
   0x00000017 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000018 0x00: eax=0x00000004 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000018 0x01: eax=0x00000000 ebx=0x00300001 ecx=0x00000001 edx=0x00000121
   0x00000018 0x02: eax=0x00000000 ebx=0x00040003 ecx=0x00000200 edx=0x00000043
   0x00000018 0x03: eax=0x00000000 ebx=0x00400001 ecx=0x00000001 edx=0x00000122
   0x00000018 0x04: eax=0x00000000 ebx=0x00080008 ecx=0x00000001 edx=0x00000143
   0x00000019 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001a 0x00: eax=0x20000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001b 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001b 0x01: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001c 0x00: eax=0xc000000b ebx=0x00000007 ecx=0x00000007 edx=0x00000000
   0x0000001d 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001e 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001f 0x00: eax=0x00000001 ebx=0x00000001 ecx=0x00000100 edx=0x00000014
   0x0000001f 0x01: eax=0x00000007 ebx=0x0000000c ecx=0x00000201 edx=0x00000014
   0x0000001f 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000014
   0x00000020 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000121 edx=0x2c100800
   0x80000002 0x00: eax=0x68743231 ebx=0x6e654720 ecx=0x746e4920 edx=0x52286c65
   0x80000003 0x00: eax=0x6f432029 ebx=0x54286572 ecx=0x6920294d edx=0x32312d37
   0x80000004 0x00: eax=0x00553535 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x08008040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x00003027 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0xc0000000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
CPU 7:
   0x00000000 0x00: eax=0x00000020 ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000906a4 ebx=0x16400800 ecx=0x7ffafbff edx=0xbfebfbff
   0x00000002 0x00: eax=0x00feff01 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x7c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x7c004122 ebx=0x01c0003f ecx=0x0000007f edx=0x00000000
   0x00000004 0x02: eax=0x7c01c143 ebx=0x03c0003f ecx=0x000007ff edx=0x00000000
   0x00000004 0x03: eax=0x7c0fc163 ebx=0x02c0003f ecx=0x00003fff edx=0x00000004
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x10102020
   0x00000006 0x00: eax=0x00df8ff7 ebx=0x00000002 ecx=0x00000409 edx=0x00020003
   0x00000007 0x00: eax=0x00000002 ebx=0x239ca7eb ecx=0x984007bc edx=0xfc18c410
   0x00000007 0x01: eax=0x00400810 ebx=0x00000000 ecx=0x00000000 edx=0x00040000
   0x00000007 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000017
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300605 ebx=0x00000000 ecx=0x00000007 edx=0x00008603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000001 ecx=0x00000100 edx=0x00000016
   0x0000000b 0x01: eax=0x00000006 ebx=0x0000000c ecx=0x00000201 edx=0x00000016
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000016
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000207 ebx=0x00000a88 ecx=0x00000a88 edx=0x00000000
   0x0000000d 0x01: eax=0x0000000f ebx=0x00000680 ecx=0x00009900 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x08: eax=0x00000080 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x09: eax=0x00000008 ebx=0x00000a80 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x0b: eax=0x00000010 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x0c: eax=0x00000018 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x0f: eax=0x00000328 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000e 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000f 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000010 0x00: eax=0x00000000 ebx=0x00000004 ecx=0x00000000 edx=0x00000000
   0x00000010 0x02: eax=0x0000000f ebx=0x00000000 ecx=0x00000004 edx=0x0000000f
   0x00000011 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x01: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000013 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000014 0x00: eax=0x00000001 ebx=0x0000005f ecx=0x80000007 edx=0x00000000
   0x00000014 0x01: eax=0x02490002 ebx=0x003f003f ecx=0x00000000 edx=0x00000000
   0x00000015 0x00: eax=0x00000002 ebx=0x00000088 ecx=0x0249f000 edx=0x00000000
   0x00000016 0x00: eax=0x00000a28 ebx=0x00000dac ecx=0x00000064 edx=0x00000000
   0x00000017 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000018 0x00: eax=0x00000004 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000018 0x01: eax=0x00000000 ebx=0x00300001 ecx=0x00000001 edx=0x00000121
   0x00000018 0x02: eax=0x00000000 ebx=0x00040003 ecx=0x00000200 edx=0x00000043
   0x00000018 0x03: eax=0x00000000 ebx=0x00400001 ecx=0x00000001 edx=0x00000122
   0x00000018 0x04: eax=0x00000000 ebx=0x00080008 ecx=0x00000001 edx=0x00000143
   0x00000019 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001a 0x00: eax=0x20000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001b 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001b 0x01: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001c 0x00: eax=0xc000000b ebx=0x00000007 ecx=0x00000007 edx=0x00000000
   0x0000001d 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001e 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001f 0x00: eax=0x00000001 ebx=0x00000001 ecx=0x00000100 edx=0x00000016
   0x0000001f 0x01: eax=0x00000007 ebx=0x0000000c ecx=0x00000201 edx=0x00000016
   0x0000001f 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000016
   0x00000020 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000121 edx=0x2c100800
   0x80000002 0x00: eax=0x68743231 ebx=0x6e654720 ecx=0x746e4920 edx=0x52286c65
   0x80000003 0x00: eax=0x6f432029 ebx=0x54286572 ecx=0x6920294d edx=0x32312d37
   0x80000004 0x00: eax=0x00553535 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x08008040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x00003027 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0xc0000000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
CPU 8:
   0x00000000 0x00: eax=0x00000020 ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000906a4 ebx=0x18400800 ecx=0x7ffafbff edx=0xbfebfbff
   0x00000002 0x00: eax=0x00feff01 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x7c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x7c004122 ebx=0x01c0003f ecx=0x0000007f edx=0x00000000
   0x00000004 0x02: eax=0x7c01c143 ebx=0x03c0003f ecx=0x000007ff edx=0x00000000
   0x00000004 0x03: eax=0x7c0fc163 ebx=0x02c0003f ecx=0x00003fff edx=0x00000004
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x10102020
   0x00000006 0x00: eax=0x00df8ff7 ebx=0x00000002 ecx=0x00000409 edx=0x00030003
   0x00000007 0x00: eax=0x00000002 ebx=0x239ca7eb ecx=0x984007bc edx=0xfc18c410
   0x00000007 0x01: eax=0x00400810 ebx=0x00000000 ecx=0x00000000 edx=0x00040000
   0x00000007 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000017
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300605 ebx=0x00000000 ecx=0x00000007 edx=0x00008603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000001 ecx=0x00000100 edx=0x00000018
   0x0000000b 0x01: eax=0x00000006 ebx=0x0000000c ecx=0x00000201 edx=0x00000018
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000018
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000207 ebx=0x00000a88 ecx=0x00000a88 edx=0x00000000
   0x0000000d 0x01: eax=0x0000000f ebx=0x00000680 ecx=0x00009900 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x08: eax=0x00000080 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x09: eax=0x00000008 ebx=0x00000a80 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x0b: eax=0x00000010 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x0c: eax=0x00000018 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x0f: eax=0x00000328 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000e 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000f 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000010 0x00: eax=0x00000000 ebx=0x00000004 ecx=0x00000000 edx=0x00000000
   0x00000010 0x02: eax=0x0000000f ebx=0x00000000 ecx=0x00000004 edx=0x0000000f
   0x00000011 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x01: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000013 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000014 0x00: eax=0x00000001 ebx=0x0000005f ecx=0x80000007 edx=0x00000000
   0x00000014 0x01: eax=0x02490002 ebx=0x003f003f ecx=0x00000000 edx=0x00000000
   0x00000015 0x00: eax=0x00000002 ebx=0x00000088 ecx=0x0249f000 edx=0x00000000
   0x00000016 0x00: eax=0x00000a28 ebx=0x00000dac ecx=0x00000064 edx=0x00000000
   0x00000017 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000018 0x00: eax=0x00000004 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000018 0x01: eax=0x00000000 ebx=0x00300001 ecx=0x00000001 edx=0x00000121
   0x00000018 0x02: eax=0x00000000 ebx=0x00040003 ecx=0x00000200 edx=0x00000043
   0x00000018 0x03: eax=0x00000000 ebx=0x00400001 ecx=0x00000001 edx=0x00000122
   0x00000018 0x04: eax=0x00000000 ebx=0x00080008 ecx=0x00000001 edx=0x00000143
   0x00000019 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001a 0x00: eax=0x20000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001b 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001b 0x01: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001c 0x00: eax=0xc000000b ebx=0x00000007 ecx=0x00000007 edx=0x00000000
   0x0000001d 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001e 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001f 0x00: eax=0x00000001 ebx=0x00000001 ecx=0x00000100 edx=0x00000018
   0x0000001f 0x01: eax=0x00000007 ebx=0x0000000c ecx=0x00000201 edx=0x00000018
   0x0000001f 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x00000018
   0x00000020 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000121 edx=0x2c100800
   0x80000002 0x00: eax=0x68743231 ebx=0x6e654720 ecx=0x746e4920 edx=0x52286c65
   0x80000003 0x00: eax=0x6f432029 ebx=0x54286572 ecx=0x6920294d edx=0x32312d37
   0x80000004 0x00: eax=0x00553535 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x08008040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x00003027 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0xc0000000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
CPU 9:
   0x00000000 0x00: eax=0x00000020 ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000906a4 ebx=0x1a400800 ecx=0x7ffafbff edx=0xbfebfbff
   0x00000002 0x00: eax=0x00feff01 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x7c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x7c004122 ebx=0x01c0003f ecx=0x0000007f edx=0x00000000
   0x00000004 0x02: eax=0x7c01c143 ebx=0x03c0003f ecx=0x000007ff edx=0x00000000
   0x00000004 0x03: eax=0x7c0fc163 ebx=0x02c0003f ecx=0x00003fff edx=0x00000004
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x10102020
   0x00000006 0x00: eax=0x00df8ff7 ebx=0x00000002 ecx=0x00000409 edx=0x00030003
   0x00000007 0x00: eax=0x00000002 ebx=0x239ca7eb ecx=0x984007bc edx=0xfc18c410
   0x00000007 0x01: eax=0x00400810 ebx=0x00000000 ecx=0x00000000 edx=0x00040000
   0x00000007 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000017
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300605 ebx=0x00000000 ecx=0x00000007 edx=0x00008603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000001 ecx=0x00000100 edx=0x0000001a
   0x0000000b 0x01: eax=0x00000006 ebx=0x0000000c ecx=0x00000201 edx=0x0000001a
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x0000001a
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000207 ebx=0x00000a88 ecx=0x00000a88 edx=0x00000000
   0x0000000d 0x01: eax=0x0000000f ebx=0x00000680 ecx=0x00009900 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x08: eax=0x00000080 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x09: eax=0x00000008 ebx=0x00000a80 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x0b: eax=0x00000010 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x0c: eax=0x00000018 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x0f: eax=0x00000328 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000e 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000f 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000010 0x00: eax=0x00000000 ebx=0x00000004 ecx=0x00000000 edx=0x00000000
   0x00000010 0x02: eax=0x0000000f ebx=0x00000000 ecx=0x00000004 edx=0x0000000f
   0x00000011 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x01: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000013 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000014 0x00: eax=0x00000001 ebx=0x0000005f ecx=0x80000007 edx=0x00000000
   0x00000014 0x01: eax=0x02490002 ebx=0x003f003f ecx=0x00000000 edx=0x00000000
   0x00000015 0x00: eax=0x00000002 ebx=0x00000088 ecx=0x0249f000 edx=0x00000000
   0x00000016 0x00: eax=0x00000a28 ebx=0x00000dac ecx=0x00000064 edx=0x00000000
   0x00000017 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000018 0x00: eax=0x00000004 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000018 0x01: eax=0x00000000 ebx=0x00300001 ecx=0x00000001 edx=0x00000121
   0x00000018 0x02: eax=0x00000000 ebx=0x00040003 ecx=0x00000200 edx=0x00000043
   0x00000018 0x03: eax=0x00000000 ebx=0x00400001 ecx=0x00000001 edx=0x00000122
   0x00000018 0x04: eax=0x00000000 ebx=0x00080008 ecx=0x00000001 edx=0x00000143
   0x00000019 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001a 0x00: eax=0x20000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001b 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001b 0x01: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001c 0x00: eax=0xc000000b ebx=0x00000007 ecx=0x00000007 edx=0x00000000
   0x0000001d 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001e 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001f 0x00: eax=0x00000001 ebx=0x00000001 ecx=0x00000100 edx=0x0000001a
   0x0000001f 0x01: eax=0x00000007 ebx=0x0000000c ecx=0x00000201 edx=0x0000001a
   0x0000001f 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x0000001a
   0x00000020 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000121 edx=0x2c100800
   0x80000002 0x00: eax=0x68743231 ebx=0x6e654720 ecx=0x746e4920 edx=0x52286c65
   0x80000003 0x00: eax=0x6f432029 ebx=0x54286572 ecx=0x6920294d edx=0x32312d37
   0x80000004 0x00: eax=0x00553535 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x08008040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x00003027 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0xc0000000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
CPU 10:
   0x00000000 0x00: eax=0x00000020 ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000906a4 ebx=0x1c400800 ecx=0x7ffafbff edx=0xbfebfbff
   0x00000002 0x00: eax=0x00feff01 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x7c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x7c004122 ebx=0x01c0003f ecx=0x0000007f edx=0x00000000
   0x00000004 0x02: eax=0x7c01c143 ebx=0x03c0003f ecx=0x000007ff edx=0x00000000
   0x00000004 0x03: eax=0x7c0fc163 ebx=0x02c0003f ecx=0x00003fff edx=0x00000004
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x10102020
   0x00000006 0x00: eax=0x00df8ff7 ebx=0x00000002 ecx=0x00000409 edx=0x00030003
   0x00000007 0x00: eax=0x00000002 ebx=0x239ca7eb ecx=0x984007bc edx=0xfc18c410
   0x00000007 0x01: eax=0x00400810 ebx=0x00000000 ecx=0x00000000 edx=0x00040000
   0x00000007 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000017
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300605 ebx=0x00000000 ecx=0x00000007 edx=0x00008603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000001 ecx=0x00000100 edx=0x0000001c
   0x0000000b 0x01: eax=0x00000006 ebx=0x0000000c ecx=0x00000201 edx=0x0000001c
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x0000001c
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000207 ebx=0x00000a88 ecx=0x00000a88 edx=0x00000000
   0x0000000d 0x01: eax=0x0000000f ebx=0x00000680 ecx=0x00009900 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x08: eax=0x00000080 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x09: eax=0x00000008 ebx=0x00000a80 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x0b: eax=0x00000010 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x0c: eax=0x00000018 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x0f: eax=0x00000328 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000e 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000f 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000010 0x00: eax=0x00000000 ebx=0x00000004 ecx=0x00000000 edx=0x00000000
   0x00000010 0x02: eax=0x0000000f ebx=0x00000000 ecx=0x00000004 edx=0x0000000f
   0x00000011 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x01: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000013 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000014 0x00: eax=0x00000001 ebx=0x0000005f ecx=0x80000007 edx=0x00000000
   0x00000014 0x01: eax=0x02490002 ebx=0x003f003f ecx=0x00000000 edx=0x00000000
   0x00000015 0x00: eax=0x00000002 ebx=0x00000088 ecx=0x0249f000 edx=0x00000000
   0x00000016 0x00: eax=0x00000a28 ebx=0x00000dac ecx=0x00000064 edx=0x00000000
   0x00000017 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000018 0x00: eax=0x00000004 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000018 0x01: eax=0x00000000 ebx=0x00300001 ecx=0x00000001 edx=0x00000121
   0x00000018 0x02: eax=0x00000000 ebx=0x00040003 ecx=0x00000200 edx=0x00000043
   0x00000018 0x03: eax=0x00000000 ebx=0x00400001 ecx=0x00000001 edx=0x00000122
   0x00000018 0x04: eax=0x00000000 ebx=0x00080008 ecx=0x00000001 edx=0x00000143
   0x00000019 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001a 0x00: eax=0x20000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001b 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001b 0x01: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001c 0x00: eax=0xc000000b ebx=0x00000007 ecx=0x00000007 edx=0x00000000
   0x0000001d 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001e 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001f 0x00: eax=0x00000001 ebx=0x00000001 ecx=0x00000100 edx=0x0000001c
   0x0000001f 0x01: eax=0x00000007 ebx=0x0000000c ecx=0x00000201 edx=0x0000001c
   0x0000001f 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x0000001c
   0x00000020 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000121 edx=0x2c100800
   0x80000002 0x00: eax=0x68743231 ebx=0x6e654720 ecx=0x746e4920 edx=0x52286c65
   0x80000003 0x00: eax=0x6f432029 ebx=0x54286572 ecx=0x6920294d edx=0x32312d37
   0x80000004 0x00: eax=0x00553535 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x08008040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x00003027 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0xc0000000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
CPU 11:
   0x00000000 0x00: eax=0x00000020 ebx=0x756e6547 ecx=0x6c65746e edx=0x49656e69
   0x00000001 0x00: eax=0x000906a4 ebx=0x1e400800 ecx=0x7ffafbff edx=0xbfebfbff
   0x00000002 0x00: eax=0x00feff01 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000003 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000004 0x00: eax=0x7c004121 ebx=0x01c0003f ecx=0x0000003f edx=0x00000000
   0x00000004 0x01: eax=0x7c004122 ebx=0x01c0003f ecx=0x0000007f edx=0x00000000
   0x00000004 0x02: eax=0x7c01c143 ebx=0x03c0003f ecx=0x000007ff edx=0x00000000
   0x00000004 0x03: eax=0x7c0fc163 ebx=0x02c0003f ecx=0x00003fff edx=0x00000004
   0x00000004 0x04: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000005 0x00: eax=0x00000040 ebx=0x00000040 ecx=0x00000003 edx=0x10102020
   0x00000006 0x00: eax=0x00df8ff7 ebx=0x00000002 ecx=0x00000409 edx=0x00030003
   0x00000007 0x00: eax=0x00000002 ebx=0x239ca7eb ecx=0x984007bc edx=0xfc18c410
   0x00000007 0x01: eax=0x00400810 ebx=0x00000000 ecx=0x00000000 edx=0x00040000
   0x00000007 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000017
   0x00000008 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000009 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000a 0x00: eax=0x07300605 ebx=0x00000000 ecx=0x00000007 edx=0x00008603
   0x0000000b 0x00: eax=0x00000001 ebx=0x00000001 ecx=0x00000100 edx=0x0000001e
   0x0000000b 0x01: eax=0x00000006 ebx=0x0000000c ecx=0x00000201 edx=0x0000001e
   0x0000000b 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x0000001e
   0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x00: eax=0x00000207 ebx=0x00000a88 ecx=0x00000a88 edx=0x00000000
   0x0000000d 0x01: eax=0x0000000f ebx=0x00000680 ecx=0x00009900 edx=0x00000000
   0x0000000d 0x02: eax=0x00000100 ebx=0x00000240 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x08: eax=0x00000080 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x09: eax=0x00000008 ebx=0x00000a80 ecx=0x00000000 edx=0x00000000
   0x0000000d 0x0b: eax=0x00000010 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x0c: eax=0x00000018 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000d 0x0f: eax=0x00000328 ebx=0x00000000 ecx=0x00000001 edx=0x00000000
   0x0000000e 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000000f 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000010 0x00: eax=0x00000000 ebx=0x00000004 ecx=0x00000000 edx=0x00000000
   0x00000010 0x02: eax=0x0000000f ebx=0x00000000 ecx=0x00000004 edx=0x0000000f
   0x00000011 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x01: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000012 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000013 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000014 0x00: eax=0x00000001 ebx=0x0000005f ecx=0x80000007 edx=0x00000000
   0x00000014 0x01: eax=0x02490002 ebx=0x003f003f ecx=0x00000000 edx=0x00000000
   0x00000015 0x00: eax=0x00000002 ebx=0x00000088 ecx=0x0249f000 edx=0x00000000
   0x00000016 0x00: eax=0x00000a28 ebx=0x00000dac ecx=0x00000064 edx=0x00000000
   0x00000017 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000018 0x00: eax=0x00000004 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x00000018 0x01: eax=0x00000000 ebx=0x00300001 ecx=0x00000001 edx=0x00000121
   0x00000018 0x02: eax=0x00000000 ebx=0x00040003 ecx=0x00000200 edx=0x00000043
   0x00000018 0x03: eax=0x00000000 ebx=0x00400001 ecx=0x00000001 edx=0x00000122
   0x00000018 0x04: eax=0x00000000 ebx=0x00080008 ecx=0x00000001 edx=0x00000143
   0x00000019 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001a 0x00: eax=0x20000001 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001b 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001b 0x01: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001c 0x00: eax=0xc000000b ebx=0x00000007 ecx=0x00000007 edx=0x00000000
   0x0000001d 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001e 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x0000001f 0x00: eax=0x00000001 ebx=0x00000001 ecx=0x00000100 edx=0x0000001e
   0x0000001f 0x01: eax=0x00000007 ebx=0x0000000c ecx=0x00000201 edx=0x0000001e
   0x0000001f 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000002 edx=0x0000001e
   0x00000020 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0x20000000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0x80000000 0x00: eax=0x80000008 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000001 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000121 edx=0x2c100800
   0x80000002 0x00: eax=0x68743231 ebx=0x6e654720 ecx=0x746e4920 edx=0x52286c65
   0x80000003 0x00: eax=0x6f432029 ebx=0x54286572 ecx=0x6920294d edx=0x32312d37
   0x80000004 0x00: eax=0x00553535 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000005 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80000006 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x08008040 edx=0x00000000
   0x80000007 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 edx=0x00000100
   0x80000008 0x00: eax=0x00003027 ebx=0x00000000 ecx=0x00000000 edx=0x00000000
   0x80860000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000
   0xc0000000 0x00: eax=0x00000000 ebx=0x00000001 ecx=0x00000000 edx=0x00000000

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: Kernel 6.9 regression: X86: Bogus messages from topology detection
  2024-05-31 14:29                             ` Christian Heusel
@ 2024-05-31 15:25                               ` Thomas Gleixner
  0 siblings, 0 replies; 29+ messages in thread
From: Thomas Gleixner @ 2024-05-31 15:25 UTC (permalink / raw)
  To: Christian Heusel; +Cc: Peter Schneider, LKML, x86, stable, regressions

On Fri, May 31 2024 at 16:29, Christian Heusel wrote:

P-Cores are consistent:

> CPU 0:
>    0x0000000b 0x01: eax=0x00000006 ebx=0x0000000c ecx=0x00000201 edx=0x00000000

>    0x0000001f 0x00: eax=0x00000001 ebx=0x00000002 ecx=0x00000100 edx=0x00000000

E-Cores are not:

> CPU 4:
>    0x0000000b 0x01: eax=0x00000006 ebx=0x0000000c ecx=0x00000201 edx=0x00000010

>    0x0000001f 0x01: eax=0x00000007 ebx=0x0000000c ecx=0x00000201 edx=0x00000010

As the topology is evaluated from CPU0 CPUID leaf 0x1f it's obvious that
CPU4...11 will trigger the sanity checks because their CPUID leaf 0x1f
subleaf 1 entries are bogus.

IOW it's a firmware bug and there is nothing the kernel will and can do
about it except what it does already: complaining about the inconsistency.

Thanks for providing all the information!

       tglx


^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: Kernel 6.9 regression: X86: Bogus messages from topology detection
  2024-05-31  8:42                     ` Thomas Gleixner
  2024-05-31  9:41                       ` Peter Schneider
@ 2024-06-01  7:06                       ` Linux regression tracking (Thorsten Leemhuis)
  2024-06-01  7:20                         ` Thomas Gleixner
  1 sibling, 1 reply; 29+ messages in thread
From: Linux regression tracking (Thorsten Leemhuis) @ 2024-06-01  7:06 UTC (permalink / raw)
  To: Thomas Gleixner, Peter Schneider; +Cc: LKML, x86, stable, regressions

On 31.05.24 10:42, Thomas Gleixner wrote:
> On Fri, May 31 2024 at 10:33, Thomas Gleixner wrote:

> ---
> Subject: x86/topology/intel: Unlock CPUID before evaluating anything
> From: Thomas Gleixner <tglx@linutronix.de>
> Date: Thu, 30 May 2024 17:29:18 +0200
> 
> Intel CPUs have a MSR bit to limit CPUID enumeration to leaf two. If this
> bit is set by the BIOS then CPUID evaluation including topology enumeration
> does not work correctly as the evaluation code does not try to analyze any
> leaf greater than two.
> [...]

TWIMC, I noticed a bug report with a "12 × 12th Gen Intel® Core™
i7-1255U" where the reporter also noticed a lot of messages like these:

archlinux kernel: [Firmware Bug]: CPU4: Topology domain 1 shift 7 != 6
archlinux kernel: [Firmware Bug]: CPU4: Topology domain 2 shift 7 != 6
archlinux kernel: [Firmware Bug]: CPU4: Topology domain 3 shift 7 != 6

Asked the reporter to test this patch. For details see:
https://bugzilla.kernel.org/show_bug.cgi?id=218879

Ciao, Thorsten

#regzbot fix: x86/topology/intel: Unlock CPUID before evaluating anything

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: Kernel 6.9 regression: X86: Bogus messages from topology detection
  2024-06-01  7:06                       ` Linux regression tracking (Thorsten Leemhuis)
@ 2024-06-01  7:20                         ` Thomas Gleixner
  2024-06-01  7:25                           ` Linux regression tracking (Thorsten Leemhuis)
  0 siblings, 1 reply; 29+ messages in thread
From: Thomas Gleixner @ 2024-06-01  7:20 UTC (permalink / raw)
  To: Linux regression tracking (Thorsten Leemhuis), Peter Schneider
  Cc: LKML, x86, stable, regressions

On Sat, Jun 01 2024 at 09:06, Linux regression tracking (Thorsten Leemhuis) wrote:
> On 31.05.24 10:42, Thomas Gleixner wrote:
>> On Fri, May 31 2024 at 10:33, Thomas Gleixner wrote:
>
>> ---
>> Subject: x86/topology/intel: Unlock CPUID before evaluating anything
>> From: Thomas Gleixner <tglx@linutronix.de>
>> Date: Thu, 30 May 2024 17:29:18 +0200
>> 
>> Intel CPUs have a MSR bit to limit CPUID enumeration to leaf two. If this
>> bit is set by the BIOS then CPUID evaluation including topology enumeration
>> does not work correctly as the evaluation code does not try to analyze any
>> leaf greater than two.
>> [...]
>
> TWIMC, I noticed a bug report with a "12 × 12th Gen Intel® Core™
> i7-1255U" where the reporter also noticed a lot of messages like these:
>
> archlinux kernel: [Firmware Bug]: CPU4: Topology domain 1 shift 7 != 6
> archlinux kernel: [Firmware Bug]: CPU4: Topology domain 2 shift 7 != 6
> archlinux kernel: [Firmware Bug]: CPU4: Topology domain 3 shift 7 != 6
>
> Asked the reporter to test this patch. For details see:
> https://bugzilla.kernel.org/show_bug.cgi?id=218879

Won't help. See: https://lore.kernel.org/all/87plt26m2b.ffs@tglx/

Thanks,

        tglx


^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: Kernel 6.9 regression: X86: Bogus messages from topology detection
  2024-06-01  7:20                         ` Thomas Gleixner
@ 2024-06-01  7:25                           ` Linux regression tracking (Thorsten Leemhuis)
  0 siblings, 0 replies; 29+ messages in thread
From: Linux regression tracking (Thorsten Leemhuis) @ 2024-06-01  7:25 UTC (permalink / raw)
  To: Thomas Gleixner, Peter Schneider; +Cc: LKML, x86, stable, regressions

On 01.06.24 09:20, Thomas Gleixner wrote:
> On Sat, Jun 01 2024 at 09:06, Linux regression tracking (Thorsten Leemhuis) wrote:
>> On 31.05.24 10:42, Thomas Gleixner wrote:
>>> On Fri, May 31 2024 at 10:33, Thomas Gleixner wrote:
>>
>>> ---
>>> Subject: x86/topology/intel: Unlock CPUID before evaluating anything
>>> From: Thomas Gleixner <tglx@linutronix.de>
>>> Date: Thu, 30 May 2024 17:29:18 +0200
>>>
>>> Intel CPUs have a MSR bit to limit CPUID enumeration to leaf two. If this
>>> bit is set by the BIOS then CPUID evaluation including topology enumeration
>>> does not work correctly as the evaluation code does not try to analyze any
>>> leaf greater than two.
>>> [...]
>>
>> TWIMC, I noticed a bug report with a "12 × 12th Gen Intel® Core™
>> i7-1255U" where the reporter also noticed a lot of messages like these:
>>
>> archlinux kernel: [Firmware Bug]: CPU4: Topology domain 1 shift 7 != 6
>> archlinux kernel: [Firmware Bug]: CPU4: Topology domain 2 shift 7 != 6
>> archlinux kernel: [Firmware Bug]: CPU4: Topology domain 3 shift 7 != 6
>>
>> Asked the reporter to test this patch. For details see:
>> https://bugzilla.kernel.org/show_bug.cgi?id=218879
> 
> Won't help. See: https://lore.kernel.org/all/87plt26m2b.ffs@tglx/

Ahh, it was the other problem in this thread. Sorry for not noticing
that, had not followed things that closely. Forwarded that info to the
ticket. Many thx! Ciao, Thorsten

^ permalink raw reply	[flat|nested] 29+ messages in thread

end of thread, other threads:[~2024-06-01  7:25 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-27  7:29 Kernel 6.9 regression: X86: Bogus messages from topology detection Peter Schneider
2024-05-27 13:14 ` Thomas Gleixner
2024-05-27 20:49   ` Thomas Gleixner
2024-05-27 21:06   ` Peter Schneider
2024-05-27 21:15     ` Peter Schneider
2024-05-27 21:34       ` Christian Heusel
2024-05-30  8:30       ` Thomas Gleixner
2024-05-30 10:06         ` Peter Schneider
2024-05-30 13:35           ` Thomas Gleixner
2024-05-30 15:53             ` Thomas Gleixner
2024-05-30 16:24               ` Thomas Gleixner
2024-05-31  6:52                 ` Peter Schneider
2024-05-31  8:33                   ` Thomas Gleixner
2024-05-31  8:42                     ` Thomas Gleixner
2024-05-31  9:41                       ` Peter Schneider
2024-05-31 10:07                         ` Thomas Gleixner
2024-05-31 10:22                           ` Peter Schneider
2024-06-01  7:06                       ` Linux regression tracking (Thorsten Leemhuis)
2024-06-01  7:20                         ` Thomas Gleixner
2024-06-01  7:25                           ` Linux regression tracking (Thorsten Leemhuis)
2024-05-31  8:13                 ` Christian Heusel
2024-05-31  8:16                   ` Christian Heusel
2024-05-31  8:48                     ` Thomas Gleixner
2024-05-31  9:11                       ` Thomas Gleixner
2024-05-31 13:08                         ` Christian Heusel
2024-05-31 13:42                           ` Thomas Gleixner
2024-05-31 14:29                             ` Christian Heusel
2024-05-31 15:25                               ` Thomas Gleixner
2024-05-31 11:06                     ` Thomas Gleixner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).